2021-10-17 20:13:06 +03:00
|
|
|
import { FC, useEffect, useState } from 'react';
|
2021-10-22 19:53:00 +03:00
|
|
|
import { Button, Row } from 'reactstrap';
|
2021-10-17 20:13:06 +03:00
|
|
|
import { faFileDownload as exportIcon, faPlus as plusIcon } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
import { Link } from 'react-router-dom';
|
2021-12-30 12:02:31 +03:00
|
|
|
import { NoMenuLayout } from '../common/NoMenuLayout';
|
2021-10-17 20:13:06 +03:00
|
|
|
import { SimpleCard } from '../utils/SimpleCard';
|
|
|
|
import SearchField from '../utils/SearchField';
|
|
|
|
import { Result } from '../utils/Result';
|
|
|
|
import { StateFlagTimeout } from '../utils/helpers/hooks';
|
|
|
|
import { ImportServersBtnProps } from './helpers/ImportServersBtn';
|
|
|
|
import { ServersMap } from './data';
|
|
|
|
import { ManageServersRowProps } from './ManageServersRow';
|
|
|
|
import ServersExporter from './services/ServersExporter';
|
|
|
|
|
|
|
|
interface ManageServersProps {
|
|
|
|
servers: ServersMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SHOW_IMPORT_MSG_TIME = 4000;
|
|
|
|
|
|
|
|
export const ManageServers = (
|
|
|
|
serversExporter: ServersExporter,
|
|
|
|
ImportServersBtn: FC<ImportServersBtnProps>,
|
|
|
|
useStateFlagTimeout: StateFlagTimeout,
|
|
|
|
ManageServersRow: FC<ManageServersRowProps>,
|
|
|
|
): FC<ManageServersProps> => ({ servers }) => {
|
|
|
|
const allServers = Object.values(servers);
|
|
|
|
const [ serversList, setServersList ] = useState(allServers);
|
|
|
|
const filterServers = (searchTerm: string) => setServersList(
|
|
|
|
allServers.filter(({ name, url }) => `${name} ${url}`.match(searchTerm)),
|
|
|
|
);
|
|
|
|
const hasAutoConnect = serversList.some(({ autoConnect }) => !!autoConnect);
|
|
|
|
const [ errorImporting, setErrorImporting ] = useStateFlagTimeout(false, SHOW_IMPORT_MSG_TIME);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setServersList(Object.values(servers));
|
|
|
|
}, [ servers ]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<NoMenuLayout>
|
|
|
|
<SearchField className="mb-3" onChange={filterServers} />
|
|
|
|
|
2021-10-22 19:53:00 +03:00
|
|
|
<Row className="mb-3">
|
|
|
|
<div className="col-md-6 d-flex d-md-block mb-2 mb-md-0">
|
2021-10-22 20:03:12 +03:00
|
|
|
<ImportServersBtn className="flex-fill" onImportError={setErrorImporting}>Import servers</ImportServersBtn>
|
|
|
|
{allServers.length > 0 && (
|
2022-03-05 15:26:28 +03:00
|
|
|
<Button outline className="ms-2 flex-fill" onClick={async () => serversExporter.exportServers()}>
|
2021-10-22 20:03:12 +03:00
|
|
|
<FontAwesomeIcon icon={exportIcon} fixedWidth /> Export servers
|
|
|
|
</Button>
|
|
|
|
)}
|
2021-10-22 19:53:00 +03:00
|
|
|
</div>
|
2022-03-05 18:08:30 +03:00
|
|
|
<div className="col-md-6 text-md-end d-flex d-md-block">
|
2021-10-22 19:53:00 +03:00
|
|
|
<Button outline color="primary" className="flex-fill" tag={Link} to="/server/create">
|
|
|
|
<FontAwesomeIcon icon={plusIcon} fixedWidth /> Add a server
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</Row>
|
2021-10-17 20:13:06 +03:00
|
|
|
|
2021-10-22 21:13:23 +03:00
|
|
|
<SimpleCard>
|
2021-10-17 20:13:06 +03:00
|
|
|
<table className="table table-hover mb-0">
|
|
|
|
<thead className="responsive-table__header">
|
|
|
|
<tr>
|
2021-10-22 21:13:23 +03:00
|
|
|
{hasAutoConnect && <th style={{ width: '50px' }} />}
|
2021-10-17 20:13:06 +03:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Base URL</th>
|
|
|
|
<th />
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{!serversList.length && <tr className="text-center"><td colSpan={4}>No servers found.</td></tr>}
|
|
|
|
{serversList.map((server) =>
|
|
|
|
<ManageServersRow key={server.id} server={server} hasAutoConnect={hasAutoConnect} />)
|
|
|
|
}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</SimpleCard>
|
|
|
|
|
|
|
|
{errorImporting && (
|
|
|
|
<div className="mt-3">
|
|
|
|
<Result type="error">The servers could not be imported. Make sure the format is correct.</Result>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</NoMenuLayout>
|
|
|
|
);
|
|
|
|
};
|