feishin/src/renderer/features/servers/components/edit-server-form.tsx

203 lines
7.2 KiB
TypeScript
Raw Normal View History

2022-12-19 15:59:14 -08:00
import { useState } from 'react';
import { Stack, Group } from '@mantine/core';
import { Button, Checkbox, PasswordInput, TextInput, toast, Tooltip } from '/@/renderer/components';
2022-12-19 15:59:14 -08:00
import { useForm } from '@mantine/form';
import { useFocusTrap } from '@mantine/hooks';
2022-12-19 15:59:14 -08:00
import { closeAllModals } from '@mantine/modals';
import isElectron from 'is-electron';
import { useTranslation } from 'react-i18next';
2022-12-19 15:59:14 -08:00
import { RiInformationLine } from 'react-icons/ri';
import { AuthenticationResponse } from '/@/renderer/api/types';
import { useAuthStoreActions } from '/@/renderer/store';
import { ServerListItem, ServerType } from '/@/renderer/types';
import { api } from '/@/renderer/api';
import i18n from '/@/i18n/i18n';
2022-12-19 15:59:14 -08:00
const localSettings = isElectron() ? window.electron.localSettings : null;
2022-12-19 15:59:14 -08:00
interface EditServerFormProps {
2023-07-01 19:10:05 -07:00
isUpdate?: boolean;
onCancel: () => void;
password: string | null;
2023-07-01 19:10:05 -07:00
server: ServerListItem;
2022-12-19 15:59:14 -08:00
}
const ModifiedFieldIndicator = () => {
2023-07-01 19:10:05 -07:00
return (
<Tooltip label={i18n.t('common.modified', { postProcess: 'titleCase' }) as string}>
2023-07-01 19:10:05 -07:00
<span>
<RiInformationLine color="red" />
</span>
</Tooltip>
);
};
export const EditServerForm = ({ isUpdate, password, server, onCancel }: EditServerFormProps) => {
const { t } = useTranslation();
2023-07-01 19:10:05 -07:00
const { updateServer } = useAuthStoreActions();
const focusTrapRef = useFocusTrap();
const [isLoading, setIsLoading] = useState(false);
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
const form = useForm({
initialValues: {
legacyAuth: false,
name: server?.name,
password: password || '',
savePassword: server.savePassword || false,
type: server?.type,
url: server?.url,
username: server?.username,
},
});
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
const isSubsonic = form.values.type === ServerType.SUBSONIC;
const isNavidrome = form.values.type === ServerType.NAVIDROME;
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
const handleSubmit = form.onSubmit(async (values) => {
const authFunction = api.controller.authenticate;
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
if (!authFunction) {
return toast.error({
message: t('error.invalidServer', { postProcess: 'sentenceCase' }),
});
2023-07-01 19:10:05 -07:00
}
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
try {
setIsLoading(true);
const data: AuthenticationResponse | undefined = await authFunction(
values.url,
{
legacy: values.legacyAuth,
password: values.password,
username: values.username,
},
values.type,
);
2023-07-01 19:10:05 -07:00
if (!data) {
return toast.error({
message: t('error.authenticationFailed', { postProcess: 'sentenceCase' }),
});
2023-07-01 19:10:05 -07:00
}
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
const serverItem = {
credential: data.credential,
name: values.name,
ndCredential: data.ndCredential,
savePassword: values.savePassword,
type: values.type,
url: values.url,
userId: data.userId,
username: data.username,
};
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
updateServer(server.id, serverItem);
toast.success({
message: t('form.updateServer.title', { postProcess: 'sentenceCase' }),
});
2023-07-01 19:10:05 -07:00
if (localSettings) {
if (values.savePassword) {
const saved = await localSettings.passwordSet(values.password, server.id);
if (!saved) {
toast.error({
message: t('form.addServer.error', {
context: 'savePassword',
postProcess: 'sentenceCase',
}),
});
2023-07-01 19:10:05 -07:00
}
} else {
localSettings.passwordRemove(server.id);
}
}
} catch (err: any) {
setIsLoading(false);
return toast.error({ message: err?.message });
}
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
if (isUpdate) closeAllModals();
return setIsLoading(false);
});
2022-12-19 15:59:14 -08:00
2023-07-01 19:10:05 -07:00
return (
<form onSubmit={handleSubmit}>
<Stack ref={focusTrapRef}>
<TextInput
required
label={t('form.addServer.input', {
context: 'name',
postProcess: 'titleCase',
})}
2023-07-01 19:10:05 -07:00
rightSection={form.isDirty('name') && <ModifiedFieldIndicator />}
{...form.getInputProps('name')}
/>
<TextInput
required
label={t('form.addServer.input', {
context: 'url',
postProcess: 'titleCase',
})}
2023-07-01 19:10:05 -07:00
rightSection={form.isDirty('url') && <ModifiedFieldIndicator />}
{...form.getInputProps('url')}
/>
<TextInput
required
label={t('form.addServer.input', {
context: 'username',
postProcess: 'titleCase',
})}
2023-07-01 19:10:05 -07:00
rightSection={form.isDirty('username') && <ModifiedFieldIndicator />}
{...form.getInputProps('username')}
/>
<PasswordInput
data-autofocus
required
label={t('form.addServer.input', {
context: 'password',
postProcess: 'titleCase',
})}
2023-07-01 19:10:05 -07:00
{...form.getInputProps('password')}
/>
{localSettings && isNavidrome && (
<Checkbox
label={t('form.addServer.input', {
context: 'savePassword',
postProcess: 'titleCase',
})}
2023-07-01 19:10:05 -07:00
{...form.getInputProps('savePassword', {
type: 'checkbox',
})}
/>
)}
{isSubsonic && (
<Checkbox
label={t('form.addServer.input', {
context: 'legacyAuthentication',
postProcess: 'titleCase',
})}
2023-07-01 19:10:05 -07:00
{...form.getInputProps('legacyAuth', {
type: 'checkbox',
})}
/>
)}
<Group position="right">
<Button
variant="subtle"
onClick={onCancel}
>
{t('common.cancel', { postProcess: 'titleCase' })}
2023-07-01 19:10:05 -07:00
</Button>
<Button
loading={isLoading}
type="submit"
variant="filled"
>
{t('common.save', { postProcess: 'titleCase' })}
2023-07-01 19:10:05 -07:00
</Button>
</Group>
</Stack>
</form>
);
2022-12-19 15:59:14 -08:00
};