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

Separated some UI components into @optuna/react #851

Merged
merged 41 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
14d692b
first commit of tslib
porink0424 Feb 14, 2024
69e47ee
Organize files
porink0424 Feb 14, 2024
1516a1b
Add sanitize.css
porink0424 Feb 14, 2024
96df6e8
Add storybook
porink0424 Feb 14, 2024
b3d553e
Add SQLite3 WASM
porink0424 Feb 16, 2024
1489c5d
Move journalStorage & sqlite3 impl from standalone app
porink0424 Feb 16, 2024
68f1259
Update formatter rules
porink0424 Feb 16, 2024
9ad0aee
Impl loadStorageFromFile
porink0424 Feb 16, 2024
52a72aa
Impl TrialTable in storybook
porink0424 Feb 16, 2024
083946c
Support for recent changes to standalone_app
porink0424 Mar 22, 2024
ffc0962
Run fmt
porink0424 Mar 22, 2024
d477e3b
Update DataGrid & TrialTable
porink0424 Mar 22, 2024
ceaf6e1
Change the arg of getStudy
porink0424 Mar 22, 2024
9d60cb3
Add PlotHistory
porink0424 Mar 22, 2024
a6d8a07
Add TrialTableDark
porink0424 Mar 22, 2024
ec42f17
Delete top-level await
porink0424 Mar 22, 2024
555b290
Fix tiny linter & formatter problems
porink0424 Mar 27, 2024
0c241fa
Move tslib -> tslib/storybook
porink0424 Mar 27, 2024
e63c2fb
Update gitignore
porink0424 Mar 27, 2024
d0dde67
Merge branch 'main' of github.com:porink0424/optuna-dashboard into fe…
porink0424 Mar 27, 2024
08016dd
Resolve conflicts
porink0424 Mar 27, 2024
393bfb6
Made it possible to build package by tsc
porink0424 Mar 27, 2024
b8180ce
Delete example stories
porink0424 Mar 27, 2024
7465e6b
Use @optuna/types and delete copied types
porink0424 Mar 27, 2024
d3a7da2
Replace DataGrid in standalone_app
porink0424 Mar 27, 2024
e4d1410
Storybook impl wip
porink0424 Mar 27, 2024
bd09d81
Add fs configuration with
porink0424 Mar 27, 2024
413ba0b
Delete some components from standalone_app
porink0424 Mar 29, 2024
107f234
Tab -> Spaces in package(-lock).json
porink0424 Mar 29, 2024
eaab5da
Tab -> Spaces in package(-lock).json
porink0424 Mar 29, 2024
a8e5888
Delete unnecessary files for storybook
porink0424 Mar 29, 2024
02638e8
Delete plotlyDarkTemplate from standalone_app
porink0424 Mar 29, 2024
3ad6681
Add sample db file
porink0424 Mar 29, 2024
13d0539
Rename @optuna/storybook -> @optuna/react
porink0424 Mar 29, 2024
605fde2
Add config to exclude unnecessary files from compiling
porink0424 Mar 29, 2024
bd4554e
Delete biome dependencies from tslib
porink0424 Mar 29, 2024
91bfae9
Update Makefile
porink0424 Mar 29, 2024
79843e0
Resolve 'Cannot find module @rollup/rollup-linux-x64-gnu' issue
porink0424 Apr 3, 2024
44fc5f7
Update ignore files config in biome.json
porink0424 Apr 3, 2024
5631149
Exclude loadStorageFromFile from pkg
porink0424 Apr 3, 2024
15afdb9
Replace tab with 2 spaces
porink0424 Apr 3, 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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ $(DASHBOARD_TS_OUT): $(DASHBOARD_TS_SRC)
tslib:
cd tslib/types && npm i && npm run build
cd tslib/storage && npm i && npm run build
cd tslib/react && npm i && npm run build

.PHONY: serve-browser-app
serve-browser-app: tslib $(RUSTLIB_OUT)
Expand Down Expand Up @@ -51,6 +52,6 @@ fmt:

.PHONY: clean
clean:
rm -rf tslib/types/pkg tslib/storage/pkg
rm -rf tslib/types/pkg tslib/storage/pkg tslib/react/pkg tslib/react/types
rm -rf optuna_dashboard/public/ doc/_build/
rm -rf rustlib/pkg standalone_app/public/ vscode/assets/ vscode/*.vsix
1 change: 1 addition & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
],
"ignore": [
"optuna_dashboard/ts/components/PlotlyColorTemplates.ts",
"tslib/react/src/components/PlotlyDarkMode.ts",
"standalone_app/src/PlotlyDarkMode.ts",
Copy link
Member

Choose a reason for hiding this comment

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

Can we just remove this line?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Removed L18 ("standalone_app/src/PlotlyDarkMode.ts"), not L17 ("tslib/react/src/components/PlotlyDarkMode.ts"), thank you for your catch!

"tslib/**/pkg/*"
]
Expand Down
Loading
Loading