mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-19 08:16:37 +00:00
93 lines
3.7 KiB
TypeScript
93 lines
3.7 KiB
TypeScript
import type { TimeoutToggle } from '@shlinkio/shlink-frontend-kit';
|
|
import { Result, useToggle } from '@shlinkio/shlink-frontend-kit';
|
|
import type { FC } from 'react';
|
|
import { useCallback, useState } from 'react';
|
|
import { useNavigate } from 'react-router';
|
|
import { Button } from 'reactstrap';
|
|
import { NoMenuLayout } from '../common/NoMenuLayout';
|
|
import type { FCWithDeps } from '../container/utils';
|
|
import { componentFactory, useDependencies } from '../container/utils';
|
|
import { useGoBack } from '../utils/helpers/hooks';
|
|
import type { ServerData, ServersMap, ServerWithId } from './data';
|
|
import { ensureUniqueIds } from './helpers';
|
|
import { DuplicatedServersModal } from './helpers/DuplicatedServersModal';
|
|
import type { ImportServersBtnProps } from './helpers/ImportServersBtn';
|
|
import { ServerForm } from './helpers/ServerForm';
|
|
|
|
const SHOW_IMPORT_MSG_TIME = 4000;
|
|
|
|
type CreateServerProps = {
|
|
createServers: (servers: ServerWithId[]) => void;
|
|
servers: ServersMap;
|
|
};
|
|
|
|
type CreateServerDeps = {
|
|
ImportServersBtn: FC<ImportServersBtnProps>;
|
|
useTimeoutToggle: TimeoutToggle;
|
|
};
|
|
|
|
const ImportResult = ({ type }: { type: 'error' | 'success' }) => (
|
|
<div className="mt-3">
|
|
<Result type={type}>
|
|
{type === 'success' && 'Servers properly imported. You can now select one from the list :)'}
|
|
{type === 'error' && 'The servers could not be imported. Make sure the format is correct.'}
|
|
</Result>
|
|
</div>
|
|
);
|
|
|
|
const CreateServer: FCWithDeps<CreateServerProps, CreateServerDeps> = ({ servers, createServers }) => {
|
|
const { ImportServersBtn, useTimeoutToggle } = useDependencies(CreateServer);
|
|
const navigate = useNavigate();
|
|
const goBack = useGoBack();
|
|
const hasServers = !!Object.keys(servers).length;
|
|
// eslint-disable-next-line react-compiler/react-compiler
|
|
const [serversImported, setServersImported] = useTimeoutToggle(false, SHOW_IMPORT_MSG_TIME);
|
|
// eslint-disable-next-line react-compiler/react-compiler
|
|
const [errorImporting, setErrorImporting] = useTimeoutToggle(false, SHOW_IMPORT_MSG_TIME);
|
|
const [isConfirmModalOpen, toggleConfirmModal] = useToggle();
|
|
const [serverData, setServerData] = useState<ServerData>();
|
|
const saveNewServer = useCallback((newServerData: ServerData) => {
|
|
const [newServerWithUniqueId] = ensureUniqueIds(servers, [newServerData]);
|
|
|
|
createServers([newServerWithUniqueId]);
|
|
navigate(`/server/${newServerWithUniqueId.id}`);
|
|
}, [createServers, navigate, servers]);
|
|
const onSubmit = useCallback((newServerData: ServerData) => {
|
|
setServerData(newServerData);
|
|
|
|
const serverExists = Object.values(servers).some(
|
|
({ url, apiKey }) => newServerData.url === url && newServerData.apiKey === apiKey,
|
|
);
|
|
|
|
if (serverExists) {
|
|
toggleConfirmModal();
|
|
} else {
|
|
saveNewServer(newServerData);
|
|
}
|
|
}, [saveNewServer, servers, toggleConfirmModal]);
|
|
|
|
return (
|
|
<NoMenuLayout>
|
|
<ServerForm title={<h5 className="mb-0">Add new server</h5>} onSubmit={onSubmit}>
|
|
{!hasServers && (
|
|
<ImportServersBtn tooltipPlacement="top" onImport={setServersImported} onImportError={setErrorImporting} />
|
|
)}
|
|
{hasServers && <Button outline onClick={goBack}>Cancel</Button>}
|
|
<Button outline color="primary" className="ms-2">Create server</Button>
|
|
</ServerForm>
|
|
|
|
{serversImported && <ImportResult type="success" />}
|
|
{errorImporting && <ImportResult type="error" />}
|
|
|
|
<DuplicatedServersModal
|
|
isOpen={isConfirmModalOpen}
|
|
duplicatedServers={serverData ? [serverData] : []}
|
|
onDiscard={goBack}
|
|
onSave={() => serverData && saveNewServer(serverData)}
|
|
/>
|
|
</NoMenuLayout>
|
|
);
|
|
};
|
|
|
|
export const CreateServerFactory = componentFactory(CreateServer, ['ImportServersBtn', 'useTimeoutToggle']);
|