2020-04-04 17:59:25 +00:00
|
|
|
import React, { useEffect, useState } from 'react';
|
|
|
|
import Spinner from '@/components/elements/Spinner';
|
2020-04-10 19:41:08 +00:00
|
|
|
import getServerBackups from '@/api/server/backups/getServerBackups';
|
2020-04-04 17:59:25 +00:00
|
|
|
import useServer from '@/plugins/useServer';
|
|
|
|
import useFlash from '@/plugins/useFlash';
|
|
|
|
import { httpErrorToHuman } from '@/api/http';
|
|
|
|
import Can from '@/components/elements/Can';
|
|
|
|
import CreateBackupButton from '@/components/server/backups/CreateBackupButton';
|
|
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
2020-04-04 20:24:03 +00:00
|
|
|
import BackupRow from '@/components/server/backups/BackupRow';
|
2020-04-07 05:25:54 +00:00
|
|
|
import { ServerContext } from '@/state/server';
|
2020-04-17 18:17:01 +00:00
|
|
|
import PageContentBlock from '@/components/elements/PageContentBlock';
|
2020-04-04 17:59:25 +00:00
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const { uuid } = useServer();
|
|
|
|
const { addError, clearFlashes } = useFlash();
|
|
|
|
const [ loading, setLoading ] = useState(true);
|
2020-04-07 05:25:54 +00:00
|
|
|
|
|
|
|
const backups = ServerContext.useStoreState(state => state.backups.data);
|
|
|
|
const setBackups = ServerContext.useStoreActions(actions => actions.backups.setBackups);
|
2020-04-04 17:59:25 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
clearFlashes('backups');
|
|
|
|
getServerBackups(uuid)
|
2020-04-07 05:25:54 +00:00
|
|
|
.then(data => setBackups(data.items))
|
2020-04-04 17:59:25 +00:00
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
addError({ key: 'backups', message: httpErrorToHuman(error) });
|
|
|
|
})
|
|
|
|
.then(() => setLoading(false));
|
|
|
|
}, []);
|
|
|
|
|
2020-04-07 05:25:54 +00:00
|
|
|
if (backups.length === 0 && loading) {
|
2020-04-04 17:59:25 +00:00
|
|
|
return <Spinner size={'large'} centered={true}/>;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2020-04-17 18:17:01 +00:00
|
|
|
<PageContentBlock>
|
2020-04-04 17:59:25 +00:00
|
|
|
<FlashMessageRender byKey={'backups'} className={'mb-4'}/>
|
|
|
|
{!backups.length ?
|
|
|
|
<p className="text-center text-sm text-neutral-400">
|
|
|
|
There are no backups stored for this server.
|
|
|
|
</p>
|
|
|
|
:
|
|
|
|
<div>
|
2020-04-04 20:24:03 +00:00
|
|
|
{backups.map((backup, index) => <BackupRow
|
|
|
|
key={backup.uuid}
|
|
|
|
backup={backup}
|
|
|
|
className={index !== (backups.length - 1) ? 'mb-2' : undefined}
|
|
|
|
/>)}
|
2020-04-04 17:59:25 +00:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
<Can action={'backup.create'}>
|
|
|
|
<div className={'mt-6 flex justify-end'}>
|
2020-04-07 05:25:54 +00:00
|
|
|
<CreateBackupButton/>
|
2020-04-04 17:59:25 +00:00
|
|
|
</div>
|
|
|
|
</Can>
|
2020-04-17 18:17:01 +00:00
|
|
|
</PageContentBlock>
|
2020-04-04 17:59:25 +00:00
|
|
|
);
|
|
|
|
};
|