2021-07-20 19:20:41 +00:00
|
|
|
import React, { useContext, useEffect } from 'react';
|
2021-07-14 22:43:59 +00:00
|
|
|
import getDatabases, { Context as DatabasesContext, Filters } from '@/api/admin/databases/getDatabases';
|
2021-01-05 21:52:49 +00:00
|
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
|
|
import useFlash from '@/plugins/useFlash';
|
|
|
|
import { AdminContext } from '@/state/admin';
|
|
|
|
import { NavLink, useRouteMatch } from 'react-router-dom';
|
2020-08-22 22:49:18 +00:00
|
|
|
import tw from 'twin.macro';
|
|
|
|
import AdminContentBlock from '@/components/admin/AdminContentBlock';
|
2021-01-05 21:52:49 +00:00
|
|
|
import AdminCheckbox from '@/components/admin/AdminCheckbox';
|
2021-07-20 19:20:41 +00:00
|
|
|
import AdminTable, { TableBody, TableHead, TableHeader, TableRow, Pagination, Loading, NoItems, ContentWrapper, useTableHooks } from '@/components/admin/AdminTable';
|
2020-08-22 22:49:18 +00:00
|
|
|
import Button from '@/components/elements/Button';
|
2021-05-19 02:53:42 +00:00
|
|
|
import CopyOnClick from '@/components/elements/CopyOnClick';
|
2020-08-22 22:49:18 +00:00
|
|
|
|
2021-01-05 21:52:49 +00:00
|
|
|
const RowCheckbox = ({ id }: { id: number}) => {
|
|
|
|
const isChecked = AdminContext.useStoreState(state => state.databases.selectedDatabases.indexOf(id) >= 0);
|
|
|
|
const appendSelectedDatabase = AdminContext.useStoreActions(actions => actions.databases.appendSelectedDatabase);
|
|
|
|
const removeSelectedDatabase = AdminContext.useStoreActions(actions => actions.databases.removeSelectedDatabase);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AdminCheckbox
|
|
|
|
name={id.toString()}
|
|
|
|
checked={isChecked}
|
|
|
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
if (e.currentTarget.checked) {
|
|
|
|
appendSelectedDatabase(id);
|
|
|
|
} else {
|
|
|
|
removeSelectedDatabase(id);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const DatabasesContainer = () => {
|
|
|
|
const match = useRouteMatch();
|
|
|
|
|
2021-07-14 22:43:59 +00:00
|
|
|
const { page, setPage, setFilters, sort, setSort, sortDirection } = useContext(DatabasesContext);
|
2021-01-05 21:52:49 +00:00
|
|
|
const { clearFlashes, clearAndAddHttpError } = useFlash();
|
|
|
|
const { data: databases, error, isValidating } = getDatabases();
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!error) {
|
|
|
|
clearFlashes('databases');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-08 17:02:49 +00:00
|
|
|
clearAndAddHttpError({ key: 'databases', error });
|
2021-01-05 21:52:49 +00:00
|
|
|
}, [ error ]);
|
|
|
|
|
|
|
|
const length = databases?.items?.length || 0;
|
|
|
|
|
|
|
|
const setSelectedDatabases = AdminContext.useStoreActions(actions => actions.databases.setSelectedDatabases);
|
|
|
|
const selectedDatabasesLength = AdminContext.useStoreState(state => state.databases.selectedDatabases.length);
|
|
|
|
|
|
|
|
const onSelectAllClick = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
setSelectedDatabases(e.currentTarget.checked ? (databases?.items?.map(database => database.id) || []) : []);
|
|
|
|
};
|
|
|
|
|
2021-07-14 22:43:59 +00:00
|
|
|
const onSearch = (query: string): Promise<void> => {
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
if (query.length < 2) {
|
|
|
|
setFilters(null);
|
|
|
|
} else {
|
2021-07-14 22:59:37 +00:00
|
|
|
setFilters({ name: query });
|
2021-07-14 22:43:59 +00:00
|
|
|
}
|
|
|
|
return resolve();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-01-05 21:52:49 +00:00
|
|
|
useEffect(() => {
|
|
|
|
setSelectedDatabases([]);
|
|
|
|
}, [ page ]);
|
|
|
|
|
2020-08-22 22:49:18 +00:00
|
|
|
return (
|
2021-01-07 16:44:24 +00:00
|
|
|
<AdminContentBlock title={'Databases'}>
|
2021-01-05 21:52:49 +00:00
|
|
|
<div css={tw`w-full flex flex-row items-center mb-8`}>
|
2021-01-10 18:34:14 +00:00
|
|
|
<div css={tw`flex flex-col flex-shrink`} style={{ minWidth: '0' }}>
|
2021-01-06 22:39:23 +00:00
|
|
|
<h2 css={tw`text-2xl text-neutral-50 font-header font-medium`}>Database Hosts</h2>
|
2021-01-10 18:34:14 +00:00
|
|
|
<p css={tw`text-base text-neutral-400 whitespace-nowrap overflow-ellipsis overflow-hidden`}>Database hosts that servers can have databases created on.</p>
|
2020-08-22 22:49:18 +00:00
|
|
|
</div>
|
|
|
|
|
2021-01-10 18:34:14 +00:00
|
|
|
<div css={tw`flex ml-auto pl-4`}>
|
|
|
|
<NavLink to={`${match.url}/new`}>
|
|
|
|
<Button type={'button'} size={'large'} css={tw`h-10 px-4 py-0 whitespace-nowrap`}>
|
|
|
|
New Database Host
|
|
|
|
</Button>
|
|
|
|
</NavLink>
|
|
|
|
</div>
|
2020-08-22 22:49:18 +00:00
|
|
|
</div>
|
2021-01-05 21:52:49 +00:00
|
|
|
|
|
|
|
<FlashMessageRender byKey={'databases'} css={tw`mb-4`}/>
|
|
|
|
|
|
|
|
<AdminTable>
|
2021-07-14 22:59:37 +00:00
|
|
|
<ContentWrapper
|
|
|
|
checked={selectedDatabasesLength === (length === 0 ? -1 : length)}
|
|
|
|
onSelectAllClick={onSelectAllClick}
|
|
|
|
onSearch={onSearch}
|
|
|
|
>
|
|
|
|
<Pagination data={databases} onPageSelect={setPage}>
|
|
|
|
<div css={tw`overflow-x-auto`}>
|
|
|
|
<table css={tw`w-full table-auto`}>
|
|
|
|
<TableHead>
|
|
|
|
<TableHeader name={'ID'} direction={sort === 'id' ? (sortDirection ? 1 : 2) : null} onClick={() => setSort('id')}/>
|
|
|
|
<TableHeader name={'Name'} direction={sort === 'name' ? (sortDirection ? 1 : 2) : null} onClick={() => setSort('name')}/>
|
|
|
|
<TableHeader name={'Address'}/>
|
|
|
|
<TableHeader name={'Username'} direction={sort === 'username' ? (sortDirection ? 1 : 2) : null} onClick={() => setSort('username')}/>
|
|
|
|
</TableHead>
|
|
|
|
|
|
|
|
<TableBody>
|
|
|
|
{ databases !== undefined && !error && !isValidating && length > 0 &&
|
|
|
|
databases.items.map(database => (
|
|
|
|
<TableRow key={database.id}>
|
|
|
|
<td css={tw`pl-6`}>
|
|
|
|
<RowCheckbox id={database.id}/>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td css={tw`px-6 text-sm text-neutral-200 text-left whitespace-nowrap`}>
|
|
|
|
<CopyOnClick text={database.id.toString()}>
|
|
|
|
<code css={tw`font-mono bg-neutral-900 rounded py-1 px-2`}>{database.id}</code>
|
|
|
|
</CopyOnClick>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td css={tw`px-6 text-sm text-neutral-200 text-left whitespace-nowrap`}>
|
|
|
|
<NavLink to={`${match.url}/${database.id}`} css={tw`text-primary-400 hover:text-primary-300`}>
|
|
|
|
{database.name}
|
|
|
|
</NavLink>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td css={tw`px-6 text-sm text-neutral-200 text-left whitespace-nowrap`}>
|
|
|
|
<CopyOnClick text={database.getAddress()}>
|
|
|
|
<code css={tw`font-mono bg-neutral-900 rounded py-1 px-2`}>{database.getAddress()}</code>
|
|
|
|
</CopyOnClick>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td css={tw`px-6 text-sm text-neutral-200 text-left whitespace-nowrap`}>{database.username}</td>
|
|
|
|
</TableRow>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
</TableBody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{ databases === undefined || (error && isValidating) ?
|
|
|
|
<Loading/>
|
|
|
|
:
|
|
|
|
length < 1 ?
|
|
|
|
<NoItems/>
|
|
|
|
:
|
|
|
|
null
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</Pagination>
|
|
|
|
</ContentWrapper>
|
2021-01-05 21:52:49 +00:00
|
|
|
</AdminTable>
|
2020-08-22 22:49:18 +00:00
|
|
|
</AdminContentBlock>
|
|
|
|
);
|
|
|
|
};
|
2021-01-05 21:52:49 +00:00
|
|
|
|
|
|
|
export default () => {
|
2021-07-19 20:34:10 +00:00
|
|
|
const hooks = useTableHooks<Filters>();
|
2021-01-05 21:52:49 +00:00
|
|
|
|
|
|
|
return (
|
2021-07-19 20:34:10 +00:00
|
|
|
<DatabasesContext.Provider value={hooks}>
|
2021-01-05 21:52:49 +00:00
|
|
|
<DatabasesContainer/>
|
|
|
|
</DatabasesContext.Provider>
|
|
|
|
);
|
|
|
|
};
|