-
Notifications
You must be signed in to change notification settings - Fork 2.9k
refactor(react-overflow,priority-overflow): subscribe model removes intermediate state from <Overflow> #36263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bsunderhus
merged 5 commits into
microsoft:master
from
bsunderhus:react-overflow/pr2-subscribe-model
Jun 2, 2026
+343
−160
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e8fe764
refactor(react-overflow,priority-overflow): subscribe model removes i…
bsunderhus dd41cbc
chore(react-overflow): unify noop callbacks via a shared noop constant
bsunderhus de5968f
chore: shorten PR2 change file comments
bsunderhus 233a92f
perf(react-overflow): subscribe consumers to selected snapshot slices
bsunderhus 7270726
refactor(priority-overflow): give getSnapshot a purpose-built Overflo…
bsunderhus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "type": "minor", | ||
| "comment": "feat: expose getSnapshot and subscribe on OverflowManager", | ||
| "packageName": "@fluentui/priority-overflow", | ||
| "email": "bsunderhus@microsoft.com", | ||
| "dependentChangeType": "patch" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "type": "patch", | ||
| "comment": "fix: subscribe overflow hooks directly to the manager snapshot", | ||
| "packageName": "@fluentui/react-overflow", | ||
| "email": "bsunderhus@microsoft.com", | ||
| "dependentChangeType": "patch" | ||
| } |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,14 @@ | ||
| import type { OverflowSnapshot } from './types'; | ||
|
|
||
| export const DATA_OVERFLOWING = 'data-overflowing'; | ||
| export const DATA_OVERFLOW_GROUP = 'data-overflow-group'; | ||
|
|
||
| /** | ||
| * An empty, frozen overflow snapshot used as the default before anything has been measured. | ||
| * @internal | ||
| */ | ||
| export const EMPTY_SNAPSHOT: OverflowSnapshot = Object.freeze({ | ||
| itemVisibility: {}, | ||
| groupVisibility: {}, | ||
| invisibleItemCount: 0, | ||
| }); |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.