-
Notifications
You must be signed in to change notification settings - Fork 886
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
Refactor/remove breadcrumb styling #4341
Refactor/remove breadcrumb styling #4341
Conversation
Now that the breacrumb styling is coming from OUI Signed-off-by: Josh Romero <rmerqg@amazon.com>
Essentially reverting: - opensearch-project#1954 - opensearch-project#2085 Signed-off-by: Josh Romero <rmerqg@amazon.com>
Signed-off-by: Josh Romero <rmerqg@amazon.com>
@@ -114,7 +114,7 @@ export function Header({ | |||
const toggleCollapsibleNavRef = createRef<HTMLButtonElement & { euiAnimate: () => void }>(); | |||
const navId = htmlIdGenerator()(); | |||
const className = classnames('hide-for-sharing', 'headerGlobalNav'); | |||
const { useExpandedHeader = true, darkMode } = branding; | |||
const { useExpandedHeader = true } = branding; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it mean now breadcrumbs cannot be customized theme specific and is inherited as it is from oui?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, breadcrumbs in OpenSearch Dashboards were never intended to be customized/customizable, we just had to do things that way because OUI was not yet available. But OUI should be responsible for the styling and theming of the breadcrumb components.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks.
Codecov Report
@@ Coverage Diff @@
## feature/oui-re-theme #4341 +/- ##
=====================================================
Coverage 66.41% 66.41%
=====================================================
Files 3246 3246
Lines 62466 62465 -1
Branches 9674 9673 -1
=====================================================
Hits 41485 41485
- Misses 18606 18633 +27
+ Partials 2375 2347 -28
Flags with carried forward coverage won't be shown. Click here to find out more.
|
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch-Dashboards/backport-main main
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch-Dashboards/backport-main
# Create a new branch
git switch --create backport/backport-4341-to-main
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1de54d72f229bee57f7dcb82d38ad16cf1f2987f
# Push it to GitHub
git push --set-upstream origin backport/backport-4341-to-main
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch-Dashboards/backport-main Then, create a pull request where the |
backport didn't work - I'll just manually cherry-pick |
Description
This removes much of the breadcrumb customization required prior to the establishment of OUI, now that breadcrumb styles have been updated over there.
Issues Resolved
Screenshot
Testing the changes
Check List
yarn test:jest
yarn test:jest_integration
yarn test:ftr