misc_pterodactyl-panel/resources/scripts/components/server/network/NetworkContainer.tsx

83 lines
3.4 KiB
TypeScript
Raw Normal View History

2020-11-01 05:30:03 +00:00
import React, { useEffect, useState } from 'react';
import Spinner from '@/components/elements/Spinner';
import useFlash from '@/plugins/useFlash';
import ServerContentBlock from '@/components/elements/ServerContentBlock';
2020-08-26 05:09:54 +00:00
import { ServerContext } from '@/state/server';
import AllocationRow from '@/components/server/network/AllocationRow';
import Button from '@/components/elements/Button';
2020-10-31 21:10:53 +00:00
import createServerAllocation from '@/api/server/network/createServerAllocation';
import tw from 'twin.macro';
2020-10-31 21:10:53 +00:00
import Can from '@/components/elements/Can';
import SpinnerOverlay from '@/components/elements/SpinnerOverlay';
import getServerAllocations from '@/api/swr/getServerAllocations';
2020-11-01 05:30:03 +00:00
import isEqual from 'react-fast-compare';
const NetworkContainer = () => {
2020-10-31 21:10:53 +00:00
const [ loading, setLoading ] = useState(false);
2020-08-26 05:09:54 +00:00
const uuid = ServerContext.useStoreState(state => state.server.data!.uuid);
const allocationLimit = ServerContext.useStoreState(state => state.server.data!.featureLimits.allocations);
2020-12-27 19:18:33 +00:00
const allocations = ServerContext.useStoreState(state => state.server.data!.allocations, isEqual);
const setServerFromState = ServerContext.useStoreActions(actions => actions.server.setServerFromState);
2020-08-26 05:09:54 +00:00
const { clearFlashes, clearAndAddHttpError } = useFlash();
2020-11-01 05:30:03 +00:00
const { data, error, mutate } = getServerAllocations();
useEffect(() => {
mutate(allocations, false);
}, []);
useEffect(() => {
if (error) {
clearAndAddHttpError({ key: 'server:network', error });
}
}, [ error ]);
2020-10-31 21:10:53 +00:00
const onCreateAllocation = () => {
clearFlashes('server:network');
2020-10-31 21:10:53 +00:00
setLoading(true);
createServerAllocation(uuid)
.then(allocation => {
setServerFromState(s => ({ ...s, allocations: s.allocations.concat(allocation) }));
return mutate(data?.concat(allocation), false);
})
2020-10-31 21:10:53 +00:00
.catch(error => clearAndAddHttpError({ key: 'server:network', error }))
.then(() => setLoading(false));
};
return (
<ServerContentBlock showFlashKey={'server:network'} title={'Network'}>
{!data ?
<Spinner size={'large'} centered/>
:
2020-10-31 21:10:53 +00:00
<>
{
data.map(allocation => (
<AllocationRow
key={`${allocation.ip}:${allocation.port}`}
allocation={allocation}
/>
))
}
2020-10-31 21:10:53 +00:00
<Can action={'allocation.create'}>
<SpinnerOverlay visible={loading}/>
<div css={tw`mt-6 sm:flex items-center justify-end`}>
<p css={tw`text-sm text-neutral-300 mb-4 sm:mr-6 sm:mb-0`}>
You are currently using {data.length} of {allocationLimit} allowed allocations for this
server.
</p>
{allocationLimit > data.length &&
<Button css={tw`w-full sm:w-auto`} color={'primary'} onClick={onCreateAllocation}>
Create Allocation
</Button>
}
</div>
</Can>
</>
}
</ServerContentBlock>
);
};
export default NetworkContainer;