fcdd30ba8f
* feat: create vite project * feat: it's alive! * feat: `make dev` working! * feat: replace custom serviceWorker with vite plugin * test: replace Jest with Vitest * fix: run prettier * fix: skip eslint for now. * chore: remove ui.old folder * refactor: replace lodash.pick with simple destructuring * fix: eslint errors (wip) * fix: eslint errors (wip) * fix: display-name eslint errors (wip) * fix: no-console eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: react-refresh/only-export-components eslint errors (wip) * fix: build * fix: pwa manifest * refactor: pwa manifest * refactor: simplify PORT configuration * refactor: rename simple JS files * test: cover playlistUtils * fix: react-image-lightbox * feat(ui): add sourcemaps to help debug issues
44 lines
1.1 KiB
React
44 lines
1.1 KiB
React
import React from 'react'
|
|
import {
|
|
Create,
|
|
SimpleForm,
|
|
TextInput,
|
|
BooleanInput,
|
|
required,
|
|
useTranslate,
|
|
useRefresh,
|
|
useNotify,
|
|
useRedirect,
|
|
} from 'react-admin'
|
|
import { Title } from '../common'
|
|
|
|
const PlaylistCreate = (props) => {
|
|
const { basePath } = props
|
|
const refresh = useRefresh()
|
|
const notify = useNotify()
|
|
const redirect = useRedirect()
|
|
const translate = useTranslate()
|
|
const resourceName = translate('resources.playlist.name', { smart_count: 1 })
|
|
const title = translate('ra.page.create', {
|
|
name: `${resourceName}`,
|
|
})
|
|
|
|
const onSuccess = () => {
|
|
notify('ra.notification.created', 'info', { smart_count: 1 })
|
|
redirect('list', basePath)
|
|
refresh()
|
|
}
|
|
|
|
return (
|
|
<Create title={<Title subTitle={title} />} {...props} onSuccess={onSuccess}>
|
|
<SimpleForm redirect="list" variant={'outlined'}>
|
|
<TextInput source="name" validate={required()} />
|
|
<TextInput multiline source="comment" />
|
|
<BooleanInput source="public" initialValue={true} />
|
|
</SimpleForm>
|
|
</Create>
|
|
)
|
|
}
|
|
|
|
export default PlaylistCreate
|