[Update] Add Starting Up Animation and downloading models progress display.

Backend: Move the init progressed position 4 to a little bit earlier.
This commit is contained in:
Sakamoto Shiina
2024-11-26 14:44:31 +09:00
parent 83ff143064
commit 70e411daf5
16 changed files with 465 additions and 51 deletions

View File

@@ -1,3 +1,4 @@
export { useInitProgress } from "./useInitProgress";
export { useIsBackendReady } from "./useIsBackendReady";
export { useWindow } from "./useWindow";
export { useIsOpenedConfigPage } from "./useIsOpenedConfigPage";

View File

@@ -0,0 +1,10 @@
import { useStore_InitProgress } from "@store";
export const useInitProgress = () => {
const { currentInitProgress, updateInitProgress } = useStore_InitProgress();
return {
currentInitProgress,
updateInitProgress,
};
};