You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in src/hooks/useTauriBoot.ts there's some logic around the default directory already that got merged early due to stuff happening in parallel between the engine getting hooked up to the app and the tauri work I was doing.
We should have a sane default directory, but allow users to specify where that is.
But we also need to a place to put odd bits of user preferences and settings, this is a good reference for this that basically says local storage is probably perfect for what we need from it.
We had talked about having the settings like vscode where it's all JSON and we add some nice UI for that JSON. I now think that's a polish item that we should skip for now, let's just have half-decent UI and we can bolt the rest on later.
With all that said, the task is to
add somewhere in the app for persistent settings to go.
I think we need a top bar and a little user menu to get underway here. Then the user can see they are logged in, can log out, and we have a place to put the link to the settings page. Here is a prototype in Figma showing the flow.
Here is a view with the user menu open:
Here is a view of the user settings page:
Do these seem okay to move on? I'll get reacquainted with the codebase in the meantime.
in src/hooks/useTauriBoot.ts there's some logic around the default directory already that got merged early due to stuff happening in parallel between the engine getting hooked up to the app and the tauri work I was doing.
We should have a sane default directory, but allow users to specify where that is.
But we also need to a place to put odd bits of user preferences and settings, this is a good reference for this that basically says local storage is probably perfect for what we need from it.
We had talked about having the settings like vscode where it's all JSON and we add some nice UI for that JSON. I now think that's a polish item that we should skip for now, let's just have half-decent UI and we can bolt the rest on later.
With all that said, the task is to
Steps for booting up tauri should be
yarn install yarn build:wasm # or yarn build:wasm:ci if not on mac yarn tauri dev
The text was updated successfully, but these errors were encountered: