Skip to content
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

Sidebar Navigation #19296

Merged
merged 44 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
7c46dba
Add Helios Design System Components (#19278)
zofskeez Feb 22, 2023
332a92a
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez Feb 24, 2023
72be2a4
Remove node-sass (#19376)
zofskeez Feb 28, 2023
79f1ce4
Sidebar Navigation Components (#19446)
zofskeez Mar 16, 2023
45aff37
Replace and remove old nav components with new ones (#19447)
zofskeez Mar 20, 2023
3db9359
removes unused HcAppFrame footer block and reduces page header top ma…
zofskeez Mar 20, 2023
4a68896
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez Mar 20, 2023
aaabeba
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez Mar 20, 2023
6e1a974
Nav component cleanup (#19681)
zofskeez Mar 22, 2023
409cb40
Console Panel Updates (#19741)
zofskeez Mar 24, 2023
dac19e4
updates hc nav components to new API
zofskeez Mar 29, 2023
fbd517f
Namespace Picker Updates (#19753)
zofskeez Mar 30, 2023
354cbdb
removes home link component (#20027)
zofskeez Apr 6, 2023
8048c5a
Auth and Error View Updates (#19749)
zofskeez Apr 6, 2023
8990b10
updates loading substate handling and moves policies link from access…
zofskeez Apr 6, 2023
3d10ef2
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez Apr 13, 2023
f7923aa
moves console panel to bottom of viewport (#20183)
zofskeez Apr 17, 2023
7d450e7
HDS Sidebar Nav Components (#20197)
zofskeez Apr 17, 2023
a22202b
Sidebar navigation acceptance tests (#20270)
zofskeez Apr 21, 2023
6e0ccfb
bumps addon version
zofskeez Apr 25, 2023
77b5b51
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez Apr 27, 2023
769bf3d
remove and ignore yarn install-state file
zofskeez Apr 27, 2023
91ff7ac
fixes auth service and console tests
zofskeez Apr 27, 2023
46c229f
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez Apr 28, 2023
bd143c7
moves classes from deleted files after bulma merge
zofskeez Apr 28, 2023
f0043fd
fixes sass syntax errors blocking build
zofskeez Apr 28, 2023
07812fe
cleans up dart sass deprecation warnings
zofskeez Apr 28, 2023
f4cdb5f
adds changelog entry
zofskeez Apr 28, 2023
ed6c336
hides namespace picker when sidebar nav panel is minimized
zofskeez Apr 28, 2023
7fee3be
style tweaks
zofskeez Apr 28, 2023
a226589
fixes sidebar nav tests
zofskeez Apr 28, 2023
2ef4641
bumps hds addon to latest version and removes style override
zofskeez May 1, 2023
29bd688
updates modify-passthrough-response helper
zofskeez May 1, 2023
b1bf664
Merge branch 'main' into ui/VAULT-12799/sidebar-navigation
zofskeez May 1, 2023
4314cde
updates sidebar nav tests
zofskeez May 1, 2023
997b9ac
mfa-setup test fix attempt
zofskeez May 1, 2023
1e8f352
fixes cluster mfa setup test
zofskeez May 1, 2023
d20a0ce
remove deprecated yarn ignore-optional flag from makefile
zofskeez May 1, 2023
8a179ca
removes another instance of yarn ignore-optional and updates ui readme
zofskeez May 1, 2023
3effe5a
removes unsupported yarn verbose flag from ci-helper
zofskeez May 1, 2023
6f3d46c
hides nav headings when user does not have access to any sub links
zofskeez May 2, 2023
d97d97f
removes unused optional deps and moves lint-staged to dev deps
zofskeez May 2, 2023
cd7fc3a
updates has-permission helper and permissions service tests
zofskeez May 2, 2023
c46c3ad
fixes issue with console panel not filling container width
zofskeez May 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static-assets-dir:

install-ui-dependencies:
@echo "--> Installing JavaScript assets"
@cd ui && yarn --ignore-optional
@cd ui && yarn
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ignore-optional is no longer supported in yarn 3


test-ember: install-ui-dependencies
@echo "--> Running ember tests"
Expand Down
3 changes: 3 additions & 0 deletions changelog/19296.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:feature
**Sidebar Navigation in UI**: A new sidebar navigation panel has been added in the UI to replace the top navigation bar.
```
4 changes: 2 additions & 2 deletions scripts/ci-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ function build_ui() {
mkdir -p http/web_ui
popd
pushd "$repo_root/ui"
yarn install --ignore-optional
yarn install
npm rebuild node-sass
yarn --verbose run build
yarn run build
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

verbose is also no longer supported

popd
}

Expand Down
9 changes: 9 additions & 0 deletions ui/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,12 @@ package-lock.json

# broccoli-debug
/DEBUG/

# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
Loading