-
Notifications
You must be signed in to change notification settings - Fork 54
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
New navigation structure #2211
Draft
maiwald
wants to merge
61
commits into
main
Choose a base branch
from
new-navigation-structure
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
New navigation structure #2211
Conversation
This file contains 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
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
from
October 14, 2024 15:47
c79d219
to
24d5006
Compare
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
2 times, most recently
from
October 15, 2024 15:16
c7987e5
to
7aef24f
Compare
LCOV of commit
|
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
from
October 16, 2024 12:37
7aef24f
to
873dd7d
Compare
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
from
October 16, 2024 13:13
873dd7d
to
3ff6333
Compare
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
5 times, most recently
from
October 17, 2024 14:11
7791446
to
e7dd4d4
Compare
maiwald
force-pushed
the
new-navigation-structure
branch
from
October 18, 2024 10:08
e7dd4d4
to
2b81966
Compare
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
3 times, most recently
from
October 28, 2024 13:41
af52890
to
7d91b52
Compare
LCOV of commit
|
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
from
October 28, 2024 15:34
7d91b52
to
9c65396
Compare
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
2 times, most recently
from
October 29, 2024 10:37
6ed7199
to
26741fb
Compare
LCOV of commit
|
maiwald
force-pushed
the
new-navigation-structure
branch
from
October 29, 2024 13:43
26741fb
to
88027da
Compare
The first <Popover.Header> is not the first DOM node in the <Popover>. React bootstrap prepends another element for the arrow, so :first-child does not work here. I attempted to use `.popover > *:nth-child(n + 2 of .popover-header)` but I suppose our css preprocessor does not support the relatively new nth-of selector, because the selector is mangled in the compiled output. https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child#the_of_selector_syntax
This patch introduces the TabLayoutEditor component with a drag-and-drop interface for reordering and hiding/showing tabs. The component accepts an ItemComponent via the `getItemComponent` prop for rendering individual items. With this patch we no longer need to manage the synthetic 'hidden' Tab when no tabs are currently hidden. This is now the editor component's responsibility and using code does not have to manage that. This also removes the `DragDropItemTypes.LAYOUT` constant in favor of a unique scope for each instance of the editor, because drag-and-drop is only supposed to work within a specific visible/hidden list combination and not globally across editors. State changes are now propagated via the `onLayoutChange` callback and not by reaching into the state of the component.
The Panel components would not be sized properly before. Now they receive `width: 0` so flex can calculate the size and scrolling is handled by a separate wrapper.
Also fix warning about invalid layout when detail view is not showing.
maiwald
force-pushed
the
new-navigation-structure
branch
from
November 15, 2024 07:53
234fed6
to
6b3d57c
Compare
LCOV of commit
|
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.
This PR adds the app layout proposed by Shapefield's redesign.