mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-06-18 10:06:26 +00:00
75 lines
1.4 KiB
TypeScript
75 lines
1.4 KiB
TypeScript
import { useEffect, useReducer, useState } from "react";
|
|
|
|
import { Alert, AlertIcon, Heading } from "@chakra-ui/react";
|
|
|
|
import { SpinnerPage, tableEventReducer } from "src/components";
|
|
import { useSettings } from "src/hooks";
|
|
import { intl } from "src/locale";
|
|
|
|
import { SettingsTable } from "./SettingsTable";
|
|
|
|
const initialState = {
|
|
offset: 0,
|
|
limit: 10,
|
|
sortBy: [
|
|
{
|
|
id: "name",
|
|
desc: false,
|
|
},
|
|
],
|
|
filters: [],
|
|
};
|
|
|
|
function Settings() {
|
|
const [{ offset, limit, sortBy, filters }, dispatch] = useReducer(
|
|
tableEventReducer,
|
|
initialState,
|
|
);
|
|
|
|
const [tableData, setTableData] = useState(null);
|
|
const { isFetching, isLoading, error, data } = useSettings(
|
|
offset,
|
|
limit,
|
|
sortBy,
|
|
filters,
|
|
);
|
|
|
|
useEffect(() => {
|
|
setTableData(data as any);
|
|
}, [data]);
|
|
|
|
if (error || (!tableData && !isFetching && !isLoading)) {
|
|
return (
|
|
<Alert status="error">
|
|
<AlertIcon />
|
|
{error?.message || "Unknown error"}
|
|
</Alert>
|
|
);
|
|
}
|
|
|
|
if (isFetching || isLoading || !tableData) {
|
|
return <SpinnerPage />;
|
|
}
|
|
|
|
const pagination = {
|
|
offset: data?.offset || initialState.offset,
|
|
limit: data?.limit || initialState.limit,
|
|
total: data?.total || 0,
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Heading mb={2}>{intl.formatMessage({ id: "settings.title" })}</Heading>
|
|
<SettingsTable
|
|
data={data?.items || []}
|
|
pagination={pagination}
|
|
sortBy={sortBy}
|
|
filters={filters}
|
|
onTableEvent={dispatch}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Settings;
|