Fix database row order refresh#345
Merged
Merged
Conversation
Reviewer's GuideRefines the Sequence diagram for updated row_orders change handling in useRowOrdersSelectorsequenceDiagram
participant YjsRowOrders as rowOrders
participant Hook as useRowOrdersSelector
participant Sync as syncUnconditionedRowOrders
participant Debounce as debouncedChange
participant Conditions as onConditionsChange
YjsRowOrders->>Hook: observeDeep(handleRowOrdersChange)
YjsRowOrders-->>Hook: handleRowOrdersChange()
Hook->>Sync: syncUnconditionedRowOrders()
alt [syncUnconditionedRowOrders returns true]
Sync->>Hook: setRowOrdersState({ rows, conditionSignature })
else [syncUnconditionedRowOrders returns false]
Hook->>Debounce: debouncedChange()
Debounce-->>Conditions: onConditionsChange()
Conditions->>Hook: setRowOrdersState({ rows, conditionSignature })
end
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- In
syncUnconditionedRowOrders, consider guarding thesetRowOrdersStatecall with a shallow equality check against the current state to avoid unnecessary re-renders on every raw row_orders change when the order content hasn't actually changed. syncUnconditionedRowOrdersandonConditionsChangeboth compute and manageconditionSignature/conditionSignatureRefin similar ways; factoring the shared logic into a small helper would reduce duplication and make future changes to condition handling less error-prone.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- In `syncUnconditionedRowOrders`, consider guarding the `setRowOrdersState` call with a shallow equality check against the current state to avoid unnecessary re-renders on every raw row_orders change when the order content hasn't actually changed.
- `syncUnconditionedRowOrders` and `onConditionsChange` both compute and manage `conditionSignature` / `conditionSignatureRef` in similar ways; factoring the shared logic into a small helper would reduce duplication and make future changes to condition handling less error-prone.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
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.
Summary
Tests
Summary by Sourcery
Ensure row order selectors immediately reflect unfiltered Yjs row order changes while keeping conditioned views on the debounced recomputation path.
Bug Fixes:
Tests: