[jp-sync] fix(jp/react): update query builder React snippets to functional components#425
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
…onents Sync Japanese documentation with English changes from PR #403. Updated React code examples from class-based to functional component patterns using useRef, useEffect, and modern event handler conventions. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
norikois
approved these changes
Jul 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Original author: Hristo Hristov 57346540+Hristo313@users.noreply.github.com
Syncs the Japanese documentation with the English changes from PR #403 (
hhristov/fix-query-builder-react-snippets).Changes
docs/xplat/src/content/en/components/inputs/query-builder.mdxdocs/xplat/src/content/jp/components/inputs/query-builder.mdxSummary
Updated React code examples in the JP query-builder documentation to match the updated EN source. The changes convert class-based component patterns to modern functional component patterns:
useRefandconstdeclarationscomponentDidMount/componentWillUnmountwithuseEffectand cleanup teardown functionprivate buildXxx = ...class methods toconst buildXxx = ...function declarationsthis.xxxreferences with plain variable/ref referenceschange=→onChange=,input=→onInput=sender.valuetosender.detail/sender.detail.valuefor React event patternsclick=handler fromIgrDatePicker```tsto```tsxandthis.ordersFields =toconst ordersFields =ExpressionTreeto reflectuseEffect-based registration instead ofcomponentDidMount/componentWillUnmount