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

Upgrade front end to Vue/Vuetify 3 #206

Merged
merged 50 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
9b50c92
chore: initial dependency upgrade
trev-dev Feb 7, 2024
f9b8c20
fix: initial refactor from vuex -> pinia stores
trev-dev Feb 8, 2024
41435ec
fix: eslint, vuex imports to pinia & paths
trev-dev Feb 15, 2024
59adfdd
fix: remove vue-meta
trev-dev Feb 21, 2024
1d7d12c
fix: a bunch of broken imports and references
trev-dev Feb 21, 2024
b9d38be
feat: lint vuetify
trev-dev Feb 22, 2024
0406d91
fix: import some vuetify components
trev-dev Feb 22, 2024
54fd9b9
fix: lint-errors from breaking changes to vuetify
trev-dev Feb 22, 2024
9ed2fbb
fix: remove dotenv
trev-dev Mar 4, 2024
43b7737
feat: upgrade this.$store references
trev-dev Mar 4, 2024
31ae13e
fix: numerous fixes that get me to render
trev-dev Mar 7, 2024
2e0a632
fix: more .env vars
trev-dev Mar 7, 2024
7c6039f
fix: add missing directives
trev-dev Mar 7, 2024
6e41789
fix: recursive loop
trev-dev Mar 11, 2024
5c8ef40
feat: upgrade router redirect logic
trev-dev Mar 11, 2024
426e2db
fix: remove redundant router view wrapper
trev-dev Mar 18, 2024
c1690df
feat: more components & switch to mdi icons
trev-dev Mar 18, 2024
7519cbb
fix: transformAssetUrls
trev-dev Mar 18, 2024
e8532aa
fix: debug logs
trev-dev Mar 18, 2024
aac771c
fix: some initial views
trev-dev Mar 18, 2024
03793e1
feat: normalize steps and update stepper
trev-dev Mar 18, 2024
42898ff
chore: whitespace
trev-dev Mar 18, 2024
788a7f5
fix: we don't use aliceblue in any of our other apps
trev-dev Mar 18, 2024
76063fd
fix: gmp/RequestForm structure & styles
trev-dev Mar 18, 2024
ae98936
fix: gmp/RequestForm validation
trev-dev Mar 18, 2024
e77178b
fix: moment in StudentInfoCard
trev-dev Mar 18, 2024
92a323d
Merge branch 'master' into vue-three
trev-dev Mar 20, 2024
9144f5e
fix: responsive home screen
trev-dev Mar 23, 2024
98b6c9e
fix: a bunch of request status views
trev-dev Mar 23, 2024
2e0d4de
chore: remove junk console.log
trev-dev Mar 25, 2024
9f914c5
fix: preserve state while stepping back and forth
trev-dev Mar 25, 2024
040b7cc
fix: some store references
trev-dev Mar 27, 2024
f22c6ec
fix: footer overflow
trev-dev Mar 28, 2024
2e4d250
fix: header styles clobbering outside components
trev-dev Mar 28, 2024
2895b26
fix: broken getter
trev-dev Mar 29, 2024
98c9495
fix: gmp messaging views
trev-dev Apr 5, 2024
3420721
fix: use the same elements for guidance
trev-dev Apr 5, 2024
1529ff8
fix: a couple accidental nested cols
trev-dev Apr 6, 2024
295c299
fix: ignore the vim stuff
trev-dev Apr 8, 2024
bbc4fd7
fix: the UMP view flow
trev-dev Apr 15, 2024
d8d42f9
chore: newlines to make args more sane to read
trev-dev Apr 17, 2024
4fe87b1
feat: move frontend "static" config to backend CM
trev-dev Apr 17, 2024
5541f57
fix: ignore direnv folder
trev-dev Apr 18, 2024
f627c30
feat: add frontEnd config to backend route
trev-dev Apr 18, 2024
5dd6d76
fix: broken frontEnd state by using new route
trev-dev Apr 18, 2024
e99f062
update: dependencies for front-end
trev-dev Apr 18, 2024
edc0136
fix: outdated node version for CI
trev-dev Apr 18, 2024
5a091a9
fix: remove invalid npm script from CI
trev-dev Apr 18, 2024
690b7d6
remove unused PenDisplay.vue
trev-dev Apr 23, 2024
e6a9180
fix: distill calls to get configs down to one call
trev-dev Apr 23, 2024
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 .github/workflows/ci-backend.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'
- run: npm ci
- run: npm run lint:fix
- run: npm run test:unit
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci-frontend.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'
- run: npm ci
- run: npm run lint:fix
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/.idea/
/.idea/*
.idea
.idea/*
.idea/*
Session.vim
.envrc
.direnv/
Loading
Loading