diff --git a/ui/src/album/AlbumActions.js b/ui/src/album/AlbumActions.js index 9f4968e48..4167498e2 100644 --- a/ui/src/album/AlbumActions.js +++ b/ui/src/album/AlbumActions.js @@ -132,7 +132,7 @@ const AlbumActions = ({ {...shareDialog.props} ids={[record.id]} resource={'album'} - title={`Share album '${record.name}'`} + name={record.name} /> ) diff --git a/ui/src/consts.js b/ui/src/consts.js index 6ed6d9977..cf735a28f 100644 --- a/ui/src/consts.js +++ b/ui/src/consts.js @@ -22,3 +22,7 @@ DraggableTypes.ALL.push( export const MAX_SIDEBAR_PLAYLISTS = 100 export const DEFAULT_SHARE_BITRATE = 128 + +export const BITRATE_CHOICES = [ + 32, 48, 64, 80, 96, 112, 128, 160, 192, 256, 320, +].map((b) => ({ id: b, name: b.toString() })) diff --git a/ui/src/dialogs/DownloadMenuDialog.js b/ui/src/dialogs/DownloadMenuDialog.js index 1b21f75b9..dcd0e989d 100644 --- a/ui/src/dialogs/DownloadMenuDialog.js +++ b/ui/src/dialogs/DownloadMenuDialog.js @@ -1,45 +1,16 @@ -import React, { useState } from 'react' +import { SimpleForm, useTranslate } from 'react-admin' import { useDispatch, useSelector } from 'react-redux' -import { ReferenceManyField, useTranslate } from 'react-admin' import { - Box, Button, Dialog, DialogActions, DialogContent, DialogTitle, - FormControlLabel, - FormGroup, - MenuItem, - Switch, - TextField, } from '@material-ui/core' import subsonic from '../subsonic' import { closeDownloadMenu } from '../actions' import { formatBytes } from '../utils' - -const DownloadTranscodings = (props) => { - const translate = useTranslate() - - return ( - <> - props.onChange(e.target.value)} - value={props.value} - > - {Object.values(props.data).map((transcoding) => ( - - {transcoding.name} - - ))} - - - ) -} +import { useTranscodingOptions } from './useTranscodingOptions' const DownloadMenuDialog = () => { const { open, record, recordType } = useSelector( @@ -48,9 +19,8 @@ const DownloadMenuDialog = () => { const dispatch = useDispatch() const translate = useTranslate() - const [originalFormat, setUseOriginalFormat] = useState(true) - const [targetFormat, setTargetFormat] = useState('') - const [targetRate, setTargetRate] = useState(0) + const { TranscodingOptionsInput, format, maxBitRate, originalFormat } = + useTranscodingOptions() const handleClose = (e) => { dispatch(closeDownloadMenu()) @@ -59,114 +29,51 @@ const DownloadMenuDialog = () => { const handleDownload = (e) => { if (record) { - subsonic.download( - record.id, - originalFormat ? 'raw' : targetFormat, - targetRate - ) + if (originalFormat) { + subsonic.download(record.id, 'raw') + } else { + subsonic.download(record.id, format, maxBitRate?.toString()) + } dispatch(closeDownloadMenu()) } e.stopPropagation() } - const handleOriginal = (e) => { - const original = e.target.checked - - setUseOriginalFormat(original) - - if (original) { - setTargetFormat('') - setTargetRate(0) - } - } - - const type = recordType - ? translate(`resources.${recordType}.name`, { - smart_count: 1, - }).toLocaleLowerCase() - : '' - return ( - <> - - - {record && - `${translate('resources.album.actions.download')} ${type} ${ - record.name || record.title - } (${formatBytes(record.size)})`} - - - -
- - } - label={translate('message.originalFormat')} - onChange={handleOriginal} - /> - - {!originalFormat && ( - <> - - - - setTargetRate(e.target.value)} - > - - - {[32, 48, 64, 80, 96, 112, 128, 160, 192, 256, 320].map( - (bits) => ( - - {bits} - - ) - )} - - - )} -
-
-
- - - - -
- + + + {translate('message.downloadDialogTitle', { + resource: translate(`resources.${recordType}.name`, { + smart_count: 1, + }).toLocaleLowerCase(), + name: record?.name || record?.title, + size: formatBytes(record?.size), + })} + + + + + + + + + + + ) } diff --git a/ui/src/dialogs/ShareDialog.js b/ui/src/dialogs/ShareDialog.js index 3070ee61c..14d152fc9 100644 --- a/ui/src/dialogs/ShareDialog.js +++ b/ui/src/dialogs/ShareDialog.js @@ -5,13 +5,20 @@ import { DialogContent, DialogTitle, } from '@material-ui/core' -import { SimpleForm, TextInput, useCreate, useNotify } from 'react-admin' +import { + SimpleForm, + TextInput, + useCreate, + useNotify, + useTranslate, +} from 'react-admin' import { useState } from 'react' import { shareUrl } from '../utils' import { useTranscodingOptions } from './useTranscodingOptions' -export const ShareDialog = ({ open, onClose, ids, resource, title }) => { +export const ShareDialog = ({ open, onClose, ids, resource, name }) => { const notify = useNotify() + const translate = useTranslate() const [description, setDescription] = useState('') const { TranscodingOptionsInput, format, maxBitRate, originalFormat } = useTranscodingOptions() @@ -57,9 +64,16 @@ export const ShareDialog = ({ open, onClose, ids, resource, title }) => { onBackdropClick={onClose} aria-labelledby="share-dialog" fullWidth={true} - maxWidth={'xs'} + maxWidth={'sm'} > - {title} + + {translate('message.shareDialogTitle', { + resource: translate(`resources.${resource}.name`, { + smart_count: ids?.length, + }).toLocaleLowerCase(), + name, + })} + { setDescription(event.target.value) }} /> - + diff --git a/ui/src/dialogs/useTranscodingOptions.js b/ui/src/dialogs/useTranscodingOptions.js index 9d02801d9..4a0e421d9 100644 --- a/ui/src/dialogs/useTranscodingOptions.js +++ b/ui/src/dialogs/useTranscodingOptions.js @@ -1,9 +1,15 @@ import React, { useCallback, useMemo, useState } from 'react' import config from '../config' -import { DEFAULT_SHARE_BITRATE } from '../consts' -import { BooleanInput, SelectInput, useGetList } from 'react-admin' +import { BITRATE_CHOICES, DEFAULT_SHARE_BITRATE } from '../consts' +import { + BooleanInput, + SelectInput, + useGetList, + useTranslate, +} from 'react-admin' export const useTranscodingOptions = () => { + const translate = useTranslate() const [format, setFormat] = useState(config.defaultDownsamplingFormat) const [maxBitRate, setMaxBitRate] = useState(DEFAULT_SHARE_BITRATE) const [originalFormat, setUseOriginalFormat] = useState(true) @@ -22,7 +28,7 @@ export const useTranscodingOptions = () => { loadingFormats ? [] : Object.values(formats).map((f) => { - return { id: f.targetFormat, name: f.targetFormat } + return { id: f.targetFormat, name: f.name } }), [formats, loadingFormats] ) @@ -39,14 +45,15 @@ export const useTranscodingOptions = () => { ) const TranscodingOptionsInput = useMemo(() => { - return ({ basePath, ...props }) => { + return ({ label, basePath, ...props }) => { return ( <> {!originalFormat && ( @@ -55,6 +62,7 @@ export const useTranscodingOptions = () => { {...props} source="format" defaultValue={format} + label={translate('resources.player.fields.transcodingId')} choices={formatOptions} onChange={(event) => { setFormat(event.target.value) @@ -63,20 +71,9 @@ export const useTranscodingOptions = () => { { setMaxBitRate(event.target.value) }} @@ -86,7 +83,14 @@ export const useTranscodingOptions = () => { ) } - }, [handleOriginal, formatOptions, format, maxBitRate, originalFormat]) + }, [ + handleOriginal, + formatOptions, + format, + maxBitRate, + originalFormat, + translate, + ]) return { TranscodingOptionsInput, diff --git a/ui/src/i18n/en.json b/ui/src/i18n/en.json index c15304c26..e54e07377 100644 --- a/ui/src/i18n/en.json +++ b/ui/src/i18n/en.json @@ -257,7 +257,9 @@ "open_menu": "Open menu", "close_menu": "Close menu", "unselect": "Unselect", - "skip": "Skip" + "skip": "Skip", + "share": "Share", + "download": "Download" }, "boolean": { "true": "Yes", @@ -367,6 +369,9 @@ "musicbrainz": "Open in MusicBrainz" }, "lastfmLink": "Read More...", + "shareOriginalFormat": "Share in original format", + "shareDialogTitle": "Share %{resource} '%{name}'", + "downloadDialogTitle": "Download %{resource} '%{name}' (%{size})", "originalFormat": "Download in original format" }, "menu": { diff --git a/ui/src/player/PlayerEdit.js b/ui/src/player/PlayerEdit.js index 60cff0a74..1826500bd 100644 --- a/ui/src/player/PlayerEdit.js +++ b/ui/src/player/PlayerEdit.js @@ -1,4 +1,3 @@ -import React from 'react' import { TextInput, BooleanInput, @@ -12,6 +11,7 @@ import { } from 'react-admin' import { Title } from '../common' import config from '../config' +import { BITRATE_CHOICES } from '../consts' const PlayerTitle = ({ record }) => { const translate = useTranslate() @@ -30,23 +30,7 @@ const PlayerEdit = (props) => ( > - + {(config.lastFMEnabled || config.listenBrainzEnabled) && ( diff --git a/ui/src/transcoding/TranscodingCreate.js b/ui/src/transcoding/TranscodingCreate.js index 949c0a6da..aebe422fa 100644 --- a/ui/src/transcoding/TranscodingCreate.js +++ b/ui/src/transcoding/TranscodingCreate.js @@ -8,6 +8,7 @@ import { useTranslate, } from 'react-admin' import { Title } from '../common' +import { BITRATE_CHOICES } from '../consts' const TranscodingTitle = () => { const translate = useTranslate() @@ -27,19 +28,7 @@ const TranscodingCreate = (props) => ( { const translate = useTranslate() @@ -27,22 +28,7 @@ const TranscodingEdit = (props) => { - +