Use error messages where there's setError

This commit is contained in:
Tanner Collin 2022-07-14 19:58:15 +00:00
parent 79333fc9e1
commit e8f6a184e9

View File

@ -51,7 +51,7 @@ export function AdminVetting(props) {
const { token } = props; const { token } = props;
const [vetting, setVetting] = useState(vettingCache); const [vetting, setVetting] = useState(vettingCache);
const [refreshCount, refreshVetting] = useReducer(x => x + 1, 0); const [refreshCount, refreshVetting] = useReducer(x => x + 1, 0);
const [error] = useState(false); const [error, setError] = useState(false);
const [showAll, setShowAll] = useState(false); const [showAll, setShowAll] = useState(false);
useEffect(() => { useEffect(() => {
@ -62,6 +62,7 @@ export function AdminVetting(props) {
}) })
.catch(err => { .catch(err => {
console.log(err); console.log(err);
setError(true);
}); });
}, [refreshCount]); }, [refreshCount]);
@ -125,7 +126,7 @@ export function AdminHistory(props) {
const [history, setHistory] = useState(historyCache); const [history, setHistory] = useState(historyCache);
const [excludeSystem, setExcludeSystem] = useState(excludeSystemCache); const [excludeSystem, setExcludeSystem] = useState(excludeSystemCache);
const [focus, setFocus] = useState(focusCache); const [focus, setFocus] = useState(focusCache);
const [error] = useState(false); const [error, setError] = useState(false);
const handleExcludeSystem = (e, v) => { const handleExcludeSystem = (e, v) => {
setExcludeSystem(v.checked); setExcludeSystem(v.checked);
@ -141,6 +142,7 @@ export function AdminHistory(props) {
}) })
.catch(err => { .catch(err => {
console.log(err); console.log(err);
setError(true);
}); });
}, [excludeSystem]); }, [excludeSystem]);
@ -226,7 +228,7 @@ let backupsCache = false;
export function AdminBackups(props) { export function AdminBackups(props) {
const [backups, setBackups] = useState(backupsCache); const [backups, setBackups] = useState(backupsCache);
const [error] = useState(false); const [error, setError] = useState(false);
useEffect(() => { useEffect(() => {
requester('/backup/', 'GET') requester('/backup/', 'GET')
@ -236,6 +238,7 @@ export function AdminBackups(props) {
}) })
.catch(err => { .catch(err => {
console.log(err); console.log(err);
setError(true);
}); });
}, []); }, []);
@ -275,7 +278,7 @@ export function AdminUsage(props) {
const { token } = props; const { token } = props;
const [input, setInput] = useState({ month: moment() }); const [input, setInput] = useState({ month: moment() });
const [loading, setLoading] = useState(false); const [loading, setLoading] = useState(false);
const [setError] = useState(false); const [error, setError] = useState(false);
const handleDatetime = (v) => setInput({ ...input, month: v }); const handleDatetime = (v) => setInput({ ...input, month: v });
@ -328,6 +331,8 @@ export function AdminUsage(props) {
<Form.Button loading={loading} onClick={() => handleDownload(null)}> <Form.Button loading={loading} onClick={() => handleDownload(null)}>
Download All Download All
</Form.Button> </Form.Button>
{error && <p>Error.</p>}
</div> </div>
); );
}; };