mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add share's contents
and description
to the DB
This commit is contained in:
parent
364fdfbd8d
commit
d9c42b3183
3 changed files with 31 additions and 1 deletions
|
@ -10,6 +10,7 @@ import {
|
|||
import {
|
||||
SelectInput,
|
||||
SimpleForm,
|
||||
TextInput,
|
||||
useCreate,
|
||||
useGetList,
|
||||
useNotify,
|
||||
|
@ -24,6 +25,7 @@ export const ShareDialog = ({ open, close, onClose, ids, resource, title }) => {
|
|||
const [format, setFormat] = useState(config.defaultDownsamplingFormat)
|
||||
const [maxBitRate, setMaxBitRate] = useState(DEFAULT_SHARE_BITRATE)
|
||||
const [originalFormat, setUseOriginalFormat] = useState(true)
|
||||
const [description, setDescription] = useState('')
|
||||
const { data: formats, loading: loadingFormats } = useGetList(
|
||||
'transcoding',
|
||||
{
|
||||
|
@ -59,6 +61,7 @@ export const ShareDialog = ({ open, close, onClose, ids, resource, title }) => {
|
|||
{
|
||||
resourceType: resource,
|
||||
resourceIds: ids?.join(','),
|
||||
description,
|
||||
...(!originalFormat && { format }),
|
||||
...(!originalFormat && { maxBitRate }),
|
||||
},
|
||||
|
@ -105,6 +108,12 @@ export const ShareDialog = ({ open, close, onClose, ids, resource, title }) => {
|
|||
label={'Share in original format'}
|
||||
onChange={handleOriginal}
|
||||
/>
|
||||
<TextInput
|
||||
source="description"
|
||||
onChange={(event) => {
|
||||
setDescription(event.target.value)
|
||||
}}
|
||||
/>
|
||||
{!originalFormat && (
|
||||
<SelectInput
|
||||
source="format"
|
||||
|
|
|
@ -44,7 +44,7 @@ const ShareList = (props) => {
|
|||
/>
|
||||
<TextField source="username" />
|
||||
<TextField source="description" />
|
||||
<DateField source="contents" />
|
||||
<TextField source="contents" />
|
||||
<FormatInfo source="format" />
|
||||
<NumberField source="visitCount" />
|
||||
<DateField source="expiresAt" showTime />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue