mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
101 lines
2.0 KiB
TypeScript
101 lines
2.0 KiB
TypeScript
import { useEffect, useReducer, useState } from "react";
|
|
|
|
import { Alert, AlertIcon, Heading, HStack } from "@chakra-ui/react";
|
|
import {
|
|
EmptyList,
|
|
PrettyButton,
|
|
SpinnerPage,
|
|
tableEventReducer,
|
|
} from "components";
|
|
import { useUpstreams } from "hooks";
|
|
import { intl } from "locale";
|
|
|
|
import { UpstreamsTable } from "./UpstreamsTable";
|
|
|
|
const initialState = {
|
|
offset: 0,
|
|
limit: 10,
|
|
sortBy: [
|
|
{
|
|
id: "name",
|
|
desc: false,
|
|
},
|
|
],
|
|
filters: [],
|
|
};
|
|
|
|
function Upstreams() {
|
|
const [{ offset, limit, sortBy, filters }, dispatch] = useReducer(
|
|
tableEventReducer,
|
|
initialState,
|
|
);
|
|
|
|
const [tableData, setTableData] = useState(null);
|
|
const { isFetching, isLoading, error, data } = useUpstreams(
|
|
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 />;
|
|
}
|
|
|
|
// When there are no items and no filters active, show the nicer empty view
|
|
if (data?.total === 0 && filters?.length === 0) {
|
|
return (
|
|
<EmptyList
|
|
title={intl.formatMessage({ id: "create-upstream-title" })}
|
|
summary={intl.formatMessage({ id: "create-hint" })}
|
|
createButton={
|
|
<PrettyButton mt={5}>
|
|
{intl.formatMessage({ id: "lets-go" })}
|
|
</PrettyButton>
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const pagination = {
|
|
offset: data?.offset || initialState.offset,
|
|
limit: data?.limit || initialState.limit,
|
|
total: data?.total || 0,
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<HStack mx={6} my={4} justifyContent="space-between">
|
|
<Heading mb={2}>
|
|
{intl.formatMessage({ id: "upstreams.title" })}
|
|
</Heading>
|
|
<PrettyButton size="sm">
|
|
{intl.formatMessage({ id: "create-upstream" })}
|
|
</PrettyButton>
|
|
</HStack>
|
|
<UpstreamsTable
|
|
data={data?.items || []}
|
|
pagination={pagination}
|
|
sortBy={sortBy}
|
|
filters={filters}
|
|
onTableEvent={dispatch}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Upstreams;
|