mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-09 22:02:19 +02:00
174 lines
6.7 KiB
TypeScript
174 lines
6.7 KiB
TypeScript
import { useForm } from '@mantine/form';
|
|
import { useRef, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import {
|
|
PlaylistQueryBuilder,
|
|
PlaylistQueryBuilderRef,
|
|
} from '/@/renderer/features/playlists/components/playlist-query-builder';
|
|
import { useCreatePlaylist } from '/@/renderer/features/playlists/mutations/create-playlist-mutation';
|
|
import { convertQueryGroupToNDQuery } from '/@/renderer/features/playlists/utils';
|
|
import { useCurrentServer } from '/@/renderer/store';
|
|
import { hasFeature } from '/@/shared/api/utils';
|
|
import { Group } from '/@/shared/components/group/group';
|
|
import { ModalButton } from '/@/shared/components/modal/model-shared';
|
|
import { Stack } from '/@/shared/components/stack/stack';
|
|
import { Switch } from '/@/shared/components/switch/switch';
|
|
import { TextInput } from '/@/shared/components/text-input/text-input';
|
|
import { Text } from '/@/shared/components/text/text';
|
|
import { Textarea } from '/@/shared/components/textarea/textarea';
|
|
import { toast } from '/@/shared/components/toast/toast';
|
|
import { CreatePlaylistBody, ServerType, SongListSort } from '/@/shared/types/domain-types';
|
|
import { ServerFeature } from '/@/shared/types/features-types';
|
|
|
|
interface CreatePlaylistFormProps {
|
|
onCancel: () => void;
|
|
}
|
|
|
|
export const CreatePlaylistForm = ({ onCancel }: CreatePlaylistFormProps) => {
|
|
const { t } = useTranslation();
|
|
const mutation = useCreatePlaylist({});
|
|
const server = useCurrentServer();
|
|
const queryBuilderRef = useRef<PlaylistQueryBuilderRef>(null);
|
|
|
|
const form = useForm<CreatePlaylistBody>({
|
|
initialValues: {
|
|
_custom: {
|
|
navidrome: {
|
|
rules: undefined,
|
|
},
|
|
},
|
|
comment: '',
|
|
name: '',
|
|
},
|
|
});
|
|
const [isSmartPlaylist, setIsSmartPlaylist] = useState(false);
|
|
|
|
const handleSubmit = form.onSubmit((values) => {
|
|
if (isSmartPlaylist) {
|
|
values._custom!.navidrome = {
|
|
...values._custom?.navidrome,
|
|
rules: queryBuilderRef.current?.getFilters(),
|
|
};
|
|
}
|
|
|
|
const smartPlaylist = queryBuilderRef.current?.getFilters();
|
|
|
|
if (!server) return;
|
|
|
|
mutation.mutate(
|
|
{
|
|
body: {
|
|
...values,
|
|
_custom: {
|
|
navidrome: {
|
|
...values._custom?.navidrome,
|
|
rules:
|
|
isSmartPlaylist && smartPlaylist?.filters
|
|
? {
|
|
...convertQueryGroupToNDQuery(smartPlaylist.filters),
|
|
limit: smartPlaylist.extraFilters.limit,
|
|
order: smartPlaylist.extraFilters.sortOrder,
|
|
sort: smartPlaylist.extraFilters.sortBy,
|
|
}
|
|
: undefined,
|
|
},
|
|
},
|
|
},
|
|
serverId: server.id,
|
|
},
|
|
{
|
|
onError: (err) => {
|
|
toast.error({
|
|
message: err.message,
|
|
title: t('error.genericError', { postProcess: 'sentenceCase' }),
|
|
});
|
|
},
|
|
onSuccess: () => {
|
|
toast.success({
|
|
message: t('form.createPlaylist.success', { postProcess: 'sentenceCase' }),
|
|
});
|
|
onCancel();
|
|
},
|
|
},
|
|
);
|
|
});
|
|
|
|
const isPublicDisplayed = hasFeature(server, ServerFeature.PUBLIC_PLAYLIST);
|
|
const isSubmitDisabled = !form.values.name || mutation.isPending;
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit}>
|
|
<Stack>
|
|
<TextInput
|
|
data-autofocus
|
|
label={t('form.createPlaylist.input', {
|
|
context: 'name',
|
|
postProcess: 'titleCase',
|
|
})}
|
|
required
|
|
{...form.getInputProps('name')}
|
|
/>
|
|
{server?.type === ServerType.NAVIDROME && (
|
|
<Textarea
|
|
autosize
|
|
label={t('form.createPlaylist.input', {
|
|
context: 'description',
|
|
postProcess: 'titleCase',
|
|
})}
|
|
minRows={5}
|
|
{...form.getInputProps('comment')}
|
|
/>
|
|
)}
|
|
<Group>
|
|
{isPublicDisplayed && (
|
|
<Switch
|
|
label={t('form.createPlaylist.input', {
|
|
context: 'public',
|
|
postProcess: 'titleCase',
|
|
})}
|
|
{...form.getInputProps('public', {
|
|
type: 'checkbox',
|
|
})}
|
|
/>
|
|
)}
|
|
{server?.type === ServerType.NAVIDROME &&
|
|
hasFeature(server, ServerFeature.PLAYLISTS_SMART) && (
|
|
<Switch
|
|
label="Is smart playlist?"
|
|
onChange={(e) => setIsSmartPlaylist(e.currentTarget.checked)}
|
|
/>
|
|
)}
|
|
</Group>
|
|
{server?.type === ServerType.NAVIDROME && isSmartPlaylist && (
|
|
<Stack pt="1rem">
|
|
<Text>Query Editor</Text>
|
|
<PlaylistQueryBuilder
|
|
isSaving={false}
|
|
limit={undefined}
|
|
query={undefined}
|
|
ref={queryBuilderRef}
|
|
sortBy={SongListSort.ALBUM}
|
|
sortOrder="asc"
|
|
/>
|
|
</Stack>
|
|
)}
|
|
|
|
<Group justify="flex-end">
|
|
<ModalButton onClick={onCancel} px="2xl" uppercase variant="subtle">
|
|
{t('common.cancel')}
|
|
</ModalButton>
|
|
<ModalButton
|
|
disabled={isSubmitDisabled}
|
|
loading={mutation.isPending}
|
|
type="submit"
|
|
variant="filled"
|
|
>
|
|
{t('common.create')}
|
|
</ModalButton>
|
|
</Group>
|
|
</Stack>
|
|
</form>
|
|
);
|
|
};
|