@@ -39,6 +39,8 @@ import {
|
||||
UserOutlined,
|
||||
} from "@ant-design/icons";
|
||||
import { ConfigProvider } from "antd";
|
||||
import { Footer } from "antd/es/layout/layout";
|
||||
import { Version } from "./components/version";
|
||||
|
||||
function App() {
|
||||
const { t, i18n } = useTranslation();
|
||||
@@ -137,6 +139,11 @@ function App() {
|
||||
)}
|
||||
/>
|
||||
)}
|
||||
Footer={() => (
|
||||
<Footer style={{ textAlign: "center" }}>
|
||||
Spoolman - Version <Version />
|
||||
</Footer>
|
||||
)}
|
||||
>
|
||||
<Outlet />
|
||||
</ThemedLayoutV2>
|
||||
|
||||
37
client/src/components/version.tsx
Normal file
37
client/src/components/version.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { Spin } from "antd";
|
||||
|
||||
interface IInfo {
|
||||
version: string;
|
||||
debug_mode: boolean;
|
||||
automatic_backups: boolean;
|
||||
data_dir: string;
|
||||
backups_dir: string;
|
||||
db_type: string;
|
||||
}
|
||||
|
||||
export const Version: React.FC = () => {
|
||||
const apiEndpoint = import.meta.env.VITE_APIURL;
|
||||
|
||||
const infoResult = useQuery<IInfo>({
|
||||
queryKey: ["info"],
|
||||
queryFn: async () => {
|
||||
const response = await fetch(apiEndpoint + "/info");
|
||||
if (!response.ok) {
|
||||
throw new Error("Network response was not ok");
|
||||
}
|
||||
return response.json();
|
||||
},
|
||||
});
|
||||
|
||||
if (infoResult.isLoading) {
|
||||
return <Spin />;
|
||||
}
|
||||
|
||||
if (infoResult.isError) {
|
||||
return <span>Unknown</span>;
|
||||
}
|
||||
|
||||
const info = infoResult.data;
|
||||
return <span>{info.version}</span>;
|
||||
};
|
||||
Reference in New Issue
Block a user