[Update] To be switchable between ConfigPage and MainPage.
This commit is contained in:
@@ -1,24 +1,26 @@
|
||||
import { useIsOpenedConfigPage } from "@store";
|
||||
import { getCurrent } from "@tauri-apps/api/window";
|
||||
import { useEffect, useRef } from "react";
|
||||
import { useStartPython } from "@logics/useStartPython";
|
||||
import { useConfig } from "@logics/useConfig";
|
||||
|
||||
import { MainPage } from "./main_page/MainPage";
|
||||
import { ConfigPage } from "./config_page/ConfigPage";
|
||||
|
||||
import styles from "./App.module.scss";
|
||||
import clsx from "clsx";
|
||||
|
||||
export const App = () => {
|
||||
const { asyncStartPython } = useStartPython();
|
||||
const hasRunRef = useRef(false);
|
||||
const main_page = getCurrent();
|
||||
|
||||
const { getSoftwareVersion } = useConfig();
|
||||
const { currentIsOpenedConfigPage } = useIsOpenedConfigPage();
|
||||
const { get_software_version } = useConfig();
|
||||
|
||||
useEffect(() => {
|
||||
main_page.setDecorations(true);
|
||||
if (!hasRunRef.current) {
|
||||
asyncStartPython().then((result) => {
|
||||
getSoftwareVersion();
|
||||
get_software_version();
|
||||
}).catch((err) => {
|
||||
|
||||
});
|
||||
@@ -27,9 +29,16 @@ export const App = () => {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<>
|
||||
<MainPage/>
|
||||
<ConfigPage/>
|
||||
</>
|
||||
<div className={styles.container}>
|
||||
<div className={clsx(styles.page, styles.config_page)}>
|
||||
<ConfigPage />
|
||||
</div>
|
||||
<div className={clsx(styles.page, styles.main_page, {
|
||||
[styles.show_config]: currentIsOpenedConfigPage,
|
||||
[styles.show_main]: !currentIsOpenedConfigPage
|
||||
})}>
|
||||
<MainPage />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user