mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
import {
|
|
Button,
|
|
Checkbox,
|
|
Modal,
|
|
ModalProps,
|
|
PasswordInput,
|
|
SegmentedControl,
|
|
Stack,
|
|
TextInput,
|
|
} from '@mantine/core';
|
|
import { useForm } from '@mantine/form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useCreateServer, validateServer } from '../queries/useCreateServer';
|
|
|
|
export const AddServerModal = ({ ...rest }: ModalProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
const form = useForm({
|
|
initialValues: {
|
|
legacyAuth: false,
|
|
name: '',
|
|
password: '',
|
|
serverType: 'jellyfin',
|
|
url: 'http://',
|
|
username: '',
|
|
},
|
|
});
|
|
|
|
const createServerMutation = useCreateServer();
|
|
|
|
return (
|
|
<Modal centered title={t('server.add.title')} {...rest}>
|
|
<form
|
|
onSubmit={form.onSubmit(async (values) => {
|
|
const res = await validateServer(values);
|
|
|
|
if (res?.token) {
|
|
createServerMutation.mutate({
|
|
...values,
|
|
remoteUserId: res.userId,
|
|
token: res.token,
|
|
});
|
|
}
|
|
})}
|
|
>
|
|
<Stack>
|
|
<SegmentedControl
|
|
data={[
|
|
{ label: 'Jellyfin', value: 'jellyfin' },
|
|
{ label: 'Subsonic', value: 'subsonic' },
|
|
]}
|
|
{...form.getInputProps('serverType')}
|
|
/>
|
|
<TextInput
|
|
required
|
|
label={t('server.name')}
|
|
{...form.getInputProps('name')}
|
|
/>
|
|
<TextInput
|
|
required
|
|
label={t('server.url')}
|
|
{...form.getInputProps('url')}
|
|
/>
|
|
<TextInput
|
|
required
|
|
label={t('server.username')}
|
|
{...form.getInputProps('username')}
|
|
/>
|
|
<PasswordInput
|
|
required
|
|
label={t('server.password')}
|
|
{...form.getInputProps('password')}
|
|
/>
|
|
{form.getInputProps('serverType').value === 'subsonic' && (
|
|
<Checkbox
|
|
label={t('server.legacyauth')}
|
|
{...form.getInputProps('legacyAuth', { type: 'checkbox' })}
|
|
/>
|
|
)}
|
|
<Button type="submit">{t('server.submit')}</Button>
|
|
</Stack>
|
|
</form>
|
|
</Modal>
|
|
);
|
|
};
|