mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-09 19:48:45 +01:00
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { Workspace } from "@/app/workspace/workspace";
|
|
import { atoms, globalStore } from "@/store/global";
|
|
import * as jotai from "jotai";
|
|
import { Provider } from "jotai";
|
|
|
|
import "../../public/style.less";
|
|
import { CenteredDiv } from "./element/quickelems";
|
|
|
|
const App = () => {
|
|
return (
|
|
<Provider store={globalStore}>
|
|
<AppInner />
|
|
</Provider>
|
|
);
|
|
};
|
|
|
|
const AppInner = () => {
|
|
const client = jotai.useAtomValue(atoms.client);
|
|
const windowData = jotai.useAtomValue(atoms.waveWindow);
|
|
if (client == null || windowData == null) {
|
|
return (
|
|
<div className="mainapp">
|
|
<div className="titlebar"></div>
|
|
<CenteredDiv>invalid configuration, client or window was not loaded</CenteredDiv>
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className="mainapp">
|
|
<div className="titlebar"></div>
|
|
<Workspace />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { App };
|