-
Notifications
You must be signed in to change notification settings - Fork 61
Exporter UI Refactor [AARD-1883]
#1194
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
+3,120
−81
Merged
Changes from 14 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
5b50831
feat: prototype web ui for exporter
rutmanz 91ec5d6
feat: add selection
rutmanz 9863e4a
feat: add joint and gamepiece settings
rutmanz a790980
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz 56d43c5
fix: don't crash the exporter plugin
rutmanz 4a9bead
feat: send data between fusion and webui
rutmanz 2c540a8
feat: working data rehydration and preference saving
rutmanz 2c0edb2
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz fcd9ac6
feat: cleaned up interface
rutmanz 28dd3f3
fix: conform ot mypy and black rules, remove unused code
rutmanz 544940b
feat: configure eslint and prettier for webui
rutmanz 34c2d6b
feat: add github actions workflow for exporter ui
rutmanz cea6ff1
fix: npm dependency failure in gh actions
rutmanz 46202fa
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz 71a42c6
fix: remove bun lock
rutmanz 47af080
fix: remove bad import
rutmanz 9d0e600
Merge branch 'dev' into zachr/1883/exporter-ui
rutmanz c2139ff
chore(ci): cache node dependencies in webui CI workflow
rutmanz 5268335
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz fc4a92a
feat: transfer material tagging ui
rutmanz b4a6991
Delete exporter/SynthesisFusionAddin/web/src/assets/react.svg
azaleacolburn ff3a9b4
chore: format and fix builds
azaleacolburn 2361112
fix: use builtin list type
rutmanz cc34c97
feat: potentially support multiple gamepieces at once
rutmanz d39255f
fix: load default joints correctly
rutmanz 7a96b80
feat: indicate clearly when selection is active
rutmanz 6854e8e
feat: transition to biome instead of eslint and prettier
rutmanz 1f8e6de
chore: update git configuration
rutmanz 7cece78
chore: run black
rutmanz 96beb2e
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz 4921108
chore: switch webui to bun
rutmanz f148d06
fix: useful readme
rutmanz 3892da7
refactor: make SelectButton its own component
rutmanz e084f33
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz 73b8c48
fix: remove bad comments
rutmanz 86bc5d2
fix: format
rutmanz f50d1f7
fix: make format command apply import sorting
rutmanz 835590f
fix: remove comments and fix indentation
rutmanz 6b860fb
Merge remote-tracking branch 'origin/dev' into zachr/1883/exporter-ui
rutmanz fa3421b
Merge branch 'dev' into zachr/1883/exporter-ui
PepperLola e0e1063
Merge `dev`
BrandonPacewic 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,63 @@ | ||
name: Fusion - WebUI Build and Format | ||
|
||
on: | ||
workflow_dispatch: {} | ||
|
||
push: | ||
branches: [ prod, dev ] | ||
paths: | ||
- 'exporter/SynthesisFusionAddin/web/**' | ||
pull_request: | ||
branches: [ prod, dev ] | ||
paths: | ||
- 'exporter/SynthesisFusionAddin/web/**' | ||
|
||
|
||
jobs: | ||
runFormatValidationScript: | ||
name: ESLint Format Validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: JavaScript Setup | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 24 | ||
- name: Install Dependencies | ||
run: | | ||
cd exporter/SynthesisFusionAddin/web | ||
npm ci | ||
- name: Linter | ||
id: linter-validation | ||
if: ${{ always() }} | ||
run: | | ||
cd exporter/SynthesisFusionAddin/web | ||
npm run lint && echo "ESLint Validation Passed" || (echo "ESLint Validation Failed" && exit 1) | ||
- name: Prettier | ||
id: prettier-validation | ||
if: ${{ always() }} | ||
run: | | ||
cd exporter/SynthesisFusionAddin/web | ||
npx prettier --version | ||
npm run prettier && echo "Prettier Validation Passed" || (echo "Prettier Validation Failed" && exit 1) | ||
runBuildScript: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: JavaScript Setup | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 24.2.0 | ||
- name: Install Dependencies | ||
run: | | ||
cd exporter/SynthesisFusionAddin/web | ||
npm ci | ||
- name: Build | ||
id: build | ||
if: ${{ always() }} | ||
run: | | ||
cd exporter/SynthesisFusionAddin/web | ||
npm run build && echo "Build Successful" || (echo "Build Failed" && exit 1) |
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.