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

171 lines
5.7 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';
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';
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;
server: ServerListItem;
2022-12-19 15:59:14 -08:00
}
const ModifiedFieldIndicator = () => {
2023-07-01 19:10:05 -07:00
return (
<Tooltip label="Field has been modified">
<span>
<RiInformationLine color="red" />
</span>
</Tooltip>
);
};
export const EditServerForm = ({ isUpdate, password, server, onCancel }: EditServerFormProps) => {
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: 'Selected server type is invalid' });
}
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: 'Authentication failed' });
}
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: 'Server has been updated' });
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: 'Could not save password' });
}
} 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="Name"
rightSection={form.isDirty('name') && <ModifiedFieldIndicator />}
{...form.getInputProps('name')}
/>
<TextInput
required
label="Url"
rightSection={form.isDirty('url') && <ModifiedFieldIndicator />}
{...form.getInputProps('url')}
/>
<TextInput
required
label="Username"
rightSection={form.isDirty('username') && <ModifiedFieldIndicator />}
{...form.getInputProps('username')}
/>
<PasswordInput
data-autofocus
required
label="Password"
{...form.getInputProps('password')}
/>
{localSettings && isNavidrome && (
<Checkbox
label="Save password"
{...form.getInputProps('savePassword', {
type: 'checkbox',
})}
/>
)}
{isSubsonic && (
<Checkbox
label="Enable legacy authentication"
{...form.getInputProps('legacyAuth', {
type: 'checkbox',
})}
/>
)}
<Group position="right">
<Button
variant="subtle"
onClick={onCancel}
>
Cancel
</Button>
<Button
loading={isLoading}
type="submit"
variant="filled"
>
Save
</Button>
</Group>
</Stack>
</form>
);
2022-12-19 15:59:14 -08:00
};