mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Extract transcoding options to its own hook
This commit is contained in:
parent
d9c42b3183
commit
c8293fcdd8
4 changed files with 114 additions and 94 deletions
|
@ -108,7 +108,7 @@ const AlbumActions = ({
|
||||||
</Button>
|
</Button>
|
||||||
{config.devEnableShare && (
|
{config.devEnableShare && (
|
||||||
<Button
|
<Button
|
||||||
onClick={shareDialog.open}
|
onClick={shareDialog.openDialog}
|
||||||
label={translate('resources.album.actions.share')}
|
label={translate('resources.album.actions.share')}
|
||||||
>
|
>
|
||||||
<ShareIcon />
|
<ShareIcon />
|
||||||
|
@ -130,7 +130,6 @@ const AlbumActions = ({
|
||||||
</div>
|
</div>
|
||||||
<ShareDialog
|
<ShareDialog
|
||||||
{...shareDialog.props}
|
{...shareDialog.props}
|
||||||
close={shareDialog.close}
|
|
||||||
ids={[record.id]}
|
ids={[record.id]}
|
||||||
resource={'album'}
|
resource={'album'}
|
||||||
title={`Share album '${record.name}'`}
|
title={`Share album '${record.name}'`}
|
||||||
|
|
|
@ -4,58 +4,17 @@ import {
|
||||||
DialogActions,
|
DialogActions,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
DialogTitle,
|
DialogTitle,
|
||||||
FormControlLabel,
|
|
||||||
Switch,
|
|
||||||
} from '@material-ui/core'
|
} from '@material-ui/core'
|
||||||
import {
|
import { SimpleForm, TextInput, useCreate, useNotify } from 'react-admin'
|
||||||
SelectInput,
|
import { useState } from 'react'
|
||||||
SimpleForm,
|
|
||||||
TextInput,
|
|
||||||
useCreate,
|
|
||||||
useGetList,
|
|
||||||
useNotify,
|
|
||||||
} from 'react-admin'
|
|
||||||
import { useMemo, useState } from 'react'
|
|
||||||
import { shareUrl } from '../utils'
|
import { shareUrl } from '../utils'
|
||||||
import config from '../config'
|
import { useTranscodingOptions } from './useTranscodingOptions'
|
||||||
import { DEFAULT_SHARE_BITRATE } from '../consts'
|
|
||||||
|
|
||||||
export const ShareDialog = ({ open, close, onClose, ids, resource, title }) => {
|
export const ShareDialog = ({ open, onClose, ids, resource, title }) => {
|
||||||
const notify = useNotify()
|
const notify = useNotify()
|
||||||
const [format, setFormat] = useState(config.defaultDownsamplingFormat)
|
|
||||||
const [maxBitRate, setMaxBitRate] = useState(DEFAULT_SHARE_BITRATE)
|
|
||||||
const [originalFormat, setUseOriginalFormat] = useState(true)
|
|
||||||
const [description, setDescription] = useState('')
|
const [description, setDescription] = useState('')
|
||||||
const { data: formats, loading: loadingFormats } = useGetList(
|
const { TranscodingOptionsInput, format, maxBitRate, originalFormat } =
|
||||||
'transcoding',
|
useTranscodingOptions()
|
||||||
{
|
|
||||||
page: 1,
|
|
||||||
perPage: 1000,
|
|
||||||
},
|
|
||||||
{ field: 'name', order: 'ASC' }
|
|
||||||
)
|
|
||||||
|
|
||||||
const formatOptions = useMemo(
|
|
||||||
() =>
|
|
||||||
loadingFormats
|
|
||||||
? []
|
|
||||||
: Object.values(formats).map((f) => {
|
|
||||||
return { id: f.targetFormat, name: f.targetFormat }
|
|
||||||
}),
|
|
||||||
[formats, loadingFormats]
|
|
||||||
)
|
|
||||||
|
|
||||||
const handleOriginal = (e) => {
|
|
||||||
const original = e.target.checked
|
|
||||||
|
|
||||||
setUseOriginalFormat(original)
|
|
||||||
|
|
||||||
if (original) {
|
|
||||||
setFormat('')
|
|
||||||
setMaxBitRate(0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const [createShare] = useCreate(
|
const [createShare] = useCreate(
|
||||||
'share',
|
'share',
|
||||||
{
|
{
|
||||||
|
@ -68,7 +27,7 @@ export const ShareDialog = ({ open, close, onClose, ids, resource, title }) => {
|
||||||
{
|
{
|
||||||
onSuccess: (res) => {
|
onSuccess: (res) => {
|
||||||
const url = shareUrl(res?.data?.id)
|
const url = shareUrl(res?.data?.id)
|
||||||
close()
|
onClose()
|
||||||
navigator.clipboard
|
navigator.clipboard
|
||||||
.writeText(url)
|
.writeText(url)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
@ -98,54 +57,19 @@ export const ShareDialog = ({ open, close, onClose, ids, resource, title }) => {
|
||||||
onBackdropClick={onClose}
|
onBackdropClick={onClose}
|
||||||
aria-labelledby="share-dialog"
|
aria-labelledby="share-dialog"
|
||||||
fullWidth={true}
|
fullWidth={true}
|
||||||
maxWidth={'sm'}
|
maxWidth={'xs'}
|
||||||
>
|
>
|
||||||
<DialogTitle id="share-dialog">{title}</DialogTitle>
|
<DialogTitle id="share-dialog">{title}</DialogTitle>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<SimpleForm toolbar={null} variant={'outlined'}>
|
<SimpleForm toolbar={null} variant={'outlined'}>
|
||||||
<FormControlLabel
|
|
||||||
control={<Switch checked={originalFormat} />}
|
|
||||||
label={'Share in original format'}
|
|
||||||
onChange={handleOriginal}
|
|
||||||
/>
|
|
||||||
<TextInput
|
<TextInput
|
||||||
source="description"
|
source="description"
|
||||||
|
fullWidth
|
||||||
onChange={(event) => {
|
onChange={(event) => {
|
||||||
setDescription(event.target.value)
|
setDescription(event.target.value)
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
{!originalFormat && (
|
<TranscodingOptionsInput />
|
||||||
<SelectInput
|
|
||||||
source="format"
|
|
||||||
defaultValue={format}
|
|
||||||
choices={formatOptions}
|
|
||||||
onChange={(event) => {
|
|
||||||
setFormat(event.target.value)
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{!originalFormat && (
|
|
||||||
<SelectInput
|
|
||||||
source="maxBitRate"
|
|
||||||
defaultValue={maxBitRate}
|
|
||||||
choices={[
|
|
||||||
{ id: 32, name: '32' },
|
|
||||||
{ id: 48, name: '48' },
|
|
||||||
{ id: 64, name: '64' },
|
|
||||||
{ id: 80, name: '80' },
|
|
||||||
{ id: 96, name: '96' },
|
|
||||||
{ id: 112, name: '112' },
|
|
||||||
{ id: 128, name: '128' },
|
|
||||||
{ id: 160, name: '160' },
|
|
||||||
{ id: 192, name: '192' },
|
|
||||||
{ id: 256, name: '256' },
|
|
||||||
{ id: 320, name: '320' },
|
|
||||||
]}
|
|
||||||
onChange={(event) => {
|
|
||||||
setMaxBitRate(event.target.value)
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</SimpleForm>
|
</SimpleForm>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
<DialogActions>
|
<DialogActions>
|
||||||
|
|
|
@ -4,12 +4,12 @@ import { useCallback, useMemo, useState } from 'react'
|
||||||
export const useDialog = () => {
|
export const useDialog = () => {
|
||||||
const [anchorEl, setAnchorEl] = useState(null)
|
const [anchorEl, setAnchorEl] = useState(null)
|
||||||
|
|
||||||
const open = useCallback((event) => {
|
const openDialog = useCallback((event) => {
|
||||||
event?.stopPropagation()
|
event?.stopPropagation()
|
||||||
setAnchorEl(event.currentTarget)
|
setAnchorEl(event.currentTarget)
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
const close = useCallback((event) => {
|
const closeDialog = useCallback((event) => {
|
||||||
event?.stopPropagation()
|
event?.stopPropagation()
|
||||||
setAnchorEl(null)
|
setAnchorEl(null)
|
||||||
}, [])
|
}, [])
|
||||||
|
@ -18,13 +18,13 @@ export const useDialog = () => {
|
||||||
return {
|
return {
|
||||||
anchorEl,
|
anchorEl,
|
||||||
open: Boolean(anchorEl),
|
open: Boolean(anchorEl),
|
||||||
onClose: close,
|
onClose: closeDialog,
|
||||||
}
|
}
|
||||||
}, [anchorEl, close])
|
}, [anchorEl, closeDialog])
|
||||||
|
|
||||||
return {
|
return {
|
||||||
open,
|
openDialog,
|
||||||
close,
|
closeDialog,
|
||||||
props,
|
props,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
97
ui/src/dialogs/useTranscodingOptions.js
Normal file
97
ui/src/dialogs/useTranscodingOptions.js
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
import React, { useCallback, useMemo, useState } from 'react'
|
||||||
|
import config from '../config'
|
||||||
|
import { DEFAULT_SHARE_BITRATE } from '../consts'
|
||||||
|
import { BooleanInput, SelectInput, useGetList } from 'react-admin'
|
||||||
|
|
||||||
|
export const useTranscodingOptions = () => {
|
||||||
|
const [format, setFormat] = useState(config.defaultDownsamplingFormat)
|
||||||
|
const [maxBitRate, setMaxBitRate] = useState(DEFAULT_SHARE_BITRATE)
|
||||||
|
const [originalFormat, setUseOriginalFormat] = useState(true)
|
||||||
|
|
||||||
|
const { data: formats, loading: loadingFormats } = useGetList(
|
||||||
|
'transcoding',
|
||||||
|
{
|
||||||
|
page: 1,
|
||||||
|
perPage: 1000,
|
||||||
|
},
|
||||||
|
{ field: 'name', order: 'ASC' }
|
||||||
|
)
|
||||||
|
|
||||||
|
const formatOptions = useMemo(
|
||||||
|
() =>
|
||||||
|
loadingFormats
|
||||||
|
? []
|
||||||
|
: Object.values(formats).map((f) => {
|
||||||
|
return { id: f.targetFormat, name: f.targetFormat }
|
||||||
|
}),
|
||||||
|
[formats, loadingFormats]
|
||||||
|
)
|
||||||
|
|
||||||
|
const handleOriginal = useCallback(
|
||||||
|
(original) => {
|
||||||
|
setUseOriginalFormat(original)
|
||||||
|
if (original) {
|
||||||
|
setFormat(config.defaultDownsamplingFormat)
|
||||||
|
setMaxBitRate(DEFAULT_SHARE_BITRATE)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[setUseOriginalFormat, setFormat, setMaxBitRate]
|
||||||
|
)
|
||||||
|
|
||||||
|
const TranscodingOptionsInput = useMemo(() => {
|
||||||
|
return ({ basePath, ...props }) => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<BooleanInput
|
||||||
|
{...props}
|
||||||
|
source="original"
|
||||||
|
defaultValue={originalFormat}
|
||||||
|
label={'Share in original format'}
|
||||||
|
onChange={handleOriginal}
|
||||||
|
/>
|
||||||
|
{!originalFormat && (
|
||||||
|
<>
|
||||||
|
<SelectInput
|
||||||
|
{...props}
|
||||||
|
source="format"
|
||||||
|
defaultValue={format}
|
||||||
|
choices={formatOptions}
|
||||||
|
onChange={(event) => {
|
||||||
|
setFormat(event.target.value)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<SelectInput
|
||||||
|
{...props}
|
||||||
|
source="maxBitRate"
|
||||||
|
defaultValue={maxBitRate}
|
||||||
|
choices={[
|
||||||
|
{ id: 32, name: '32' },
|
||||||
|
{ id: 48, name: '48' },
|
||||||
|
{ id: 64, name: '64' },
|
||||||
|
{ id: 80, name: '80' },
|
||||||
|
{ id: 96, name: '96' },
|
||||||
|
{ id: 112, name: '112' },
|
||||||
|
{ id: 128, name: '128' },
|
||||||
|
{ id: 160, name: '160' },
|
||||||
|
{ id: 192, name: '192' },
|
||||||
|
{ id: 256, name: '256' },
|
||||||
|
{ id: 320, name: '320' },
|
||||||
|
]}
|
||||||
|
onChange={(event) => {
|
||||||
|
setMaxBitRate(event.target.value)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}, [handleOriginal, formatOptions, format, maxBitRate, originalFormat])
|
||||||
|
|
||||||
|
return {
|
||||||
|
TranscodingOptionsInput,
|
||||||
|
format,
|
||||||
|
maxBitRate,
|
||||||
|
originalFormat,
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue