mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Change Internet Radio UX
This commit is contained in:
parent
e76080809d
commit
438d45c176
5 changed files with 17 additions and 72 deletions
|
@ -5,13 +5,11 @@ import DynamicMenuIcon from '../layout/DynamicMenuIcon'
|
||||||
import PlaylistList from './PlaylistList'
|
import PlaylistList from './PlaylistList'
|
||||||
import PlaylistEdit from './PlaylistEdit'
|
import PlaylistEdit from './PlaylistEdit'
|
||||||
import PlaylistCreate from './PlaylistCreate'
|
import PlaylistCreate from './PlaylistCreate'
|
||||||
import PlaylistShow from './PlaylistShow'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
list: PlaylistList,
|
list: PlaylistList,
|
||||||
create: PlaylistCreate,
|
create: PlaylistCreate,
|
||||||
edit: PlaylistEdit,
|
edit: PlaylistEdit,
|
||||||
show: PlaylistShow,
|
|
||||||
icon: (
|
icon: (
|
||||||
<DynamicMenuIcon
|
<DynamicMenuIcon
|
||||||
path={'playlist'}
|
path={'playlist'}
|
||||||
|
|
|
@ -4,6 +4,7 @@ import {
|
||||||
CreateButton,
|
CreateButton,
|
||||||
Datagrid,
|
Datagrid,
|
||||||
DateField,
|
DateField,
|
||||||
|
EditButton,
|
||||||
Filter,
|
Filter,
|
||||||
List,
|
List,
|
||||||
sanitizeListRestProps,
|
sanitizeListRestProps,
|
||||||
|
@ -16,6 +17,9 @@ import {
|
||||||
} from 'react-admin'
|
} from 'react-admin'
|
||||||
import { ToggleFieldsMenu, useSelectedFields } from '../common'
|
import { ToggleFieldsMenu, useSelectedFields } from '../common'
|
||||||
import { StreamField } from './StreamField'
|
import { StreamField } from './StreamField'
|
||||||
|
import { setTrack } from '../actions'
|
||||||
|
import { songFromRadio } from './helper'
|
||||||
|
import { useDispatch } from 'react-redux'
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
row: {
|
row: {
|
||||||
|
@ -70,10 +74,9 @@ const RadioListActions = ({
|
||||||
}
|
}
|
||||||
|
|
||||||
const RadioList = ({ permissions, ...props }) => {
|
const RadioList = ({ permissions, ...props }) => {
|
||||||
const isXsmall = useMediaQuery((theme) => theme.breakpoints.down('xs'))
|
|
||||||
|
|
||||||
const classes = useStyles()
|
const classes = useStyles()
|
||||||
|
const isXsmall = useMediaQuery((theme) => theme.breakpoints.down('xs'))
|
||||||
|
const dispatch = useDispatch()
|
||||||
const isAdmin = permissions === 'admin'
|
const isAdmin = permissions === 'admin'
|
||||||
|
|
||||||
const toggleableFields = {
|
const toggleableFields = {
|
||||||
|
@ -86,17 +89,21 @@ const RadioList = ({ permissions, ...props }) => {
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
streamUrl: <StreamField source="streamUrl" />,
|
streamUrl: <TextField source="streamUrl" hideUrl />,
|
||||||
createdAt: <DateField source="createdAt" showTime />,
|
|
||||||
updatedAt: <DateField source="updatedAt" showTime />,
|
updatedAt: <DateField source="updatedAt" showTime />,
|
||||||
|
createdAt: <DateField source="createdAt" showTime />,
|
||||||
}
|
}
|
||||||
|
|
||||||
const columns = useSelectedFields({
|
const columns = useSelectedFields({
|
||||||
resource: 'radio',
|
resource: 'radio',
|
||||||
columns: toggleableFields,
|
columns: toggleableFields,
|
||||||
defaultOff: ['updatedAt'],
|
defaultOff: ['createdAt'],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const handleRowClick = async (id, basePath, record) => {
|
||||||
|
dispatch(setTrack(await songFromRadio(record)))
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<List
|
<List
|
||||||
{...props}
|
{...props}
|
||||||
|
@ -110,7 +117,6 @@ const RadioList = ({ permissions, ...props }) => {
|
||||||
>
|
>
|
||||||
{isXsmall ? (
|
{isXsmall ? (
|
||||||
<SimpleList
|
<SimpleList
|
||||||
linkType={isAdmin ? 'edit' : 'show'}
|
|
||||||
leftIcon={(r) => (
|
leftIcon={(r) => (
|
||||||
<StreamField
|
<StreamField
|
||||||
record={r}
|
record={r}
|
||||||
|
@ -126,11 +132,9 @@ const RadioList = ({ permissions, ...props }) => {
|
||||||
secondaryText={(r) => r.homePageUrl}
|
secondaryText={(r) => r.homePageUrl}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<Datagrid
|
<Datagrid rowClick={handleRowClick} classes={{ row: classes.row }}>
|
||||||
rowClick={isAdmin ? 'edit' : 'show'}
|
|
||||||
classes={{ row: classes.row }}
|
|
||||||
>
|
|
||||||
{columns}
|
{columns}
|
||||||
|
{isAdmin && <EditButton />}
|
||||||
</Datagrid>
|
</Datagrid>
|
||||||
)}
|
)}
|
||||||
</List>
|
</List>
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
import { Card } from '@material-ui/core'
|
|
||||||
import React from 'react'
|
|
||||||
import {
|
|
||||||
DateField,
|
|
||||||
required,
|
|
||||||
ShowContextProvider,
|
|
||||||
SimpleShowLayout,
|
|
||||||
TextField,
|
|
||||||
UrlField,
|
|
||||||
useShowController,
|
|
||||||
} from 'react-admin'
|
|
||||||
import { StreamField } from './StreamField'
|
|
||||||
|
|
||||||
const RadioShowLayout = ({ ...props }) => {
|
|
||||||
const { record } = props
|
|
||||||
|
|
||||||
if (!record) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{record && (
|
|
||||||
<Card>
|
|
||||||
<SimpleShowLayout>
|
|
||||||
<TextField source="name" validate={[required()]} />
|
|
||||||
<StreamField source="streamUrl" />
|
|
||||||
<UrlField
|
|
||||||
type="url"
|
|
||||||
source="homePageUrl"
|
|
||||||
rel="noreferrer noopener"
|
|
||||||
target="_blank"
|
|
||||||
/>
|
|
||||||
<DateField variant="body1" source="updatedAt" showTime />
|
|
||||||
<DateField variant="body1" source="createdAt" showTime />
|
|
||||||
</SimpleShowLayout>
|
|
||||||
</Card>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
const RadioShow = (props) => {
|
|
||||||
const controllerProps = useShowController(props)
|
|
||||||
return (
|
|
||||||
<ShowContextProvider value={controllerProps}>
|
|
||||||
<RadioShowLayout {...props} record={controllerProps.record} />
|
|
||||||
</ShowContextProvider>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default RadioShow
|
|
|
@ -15,8 +15,8 @@ const useStyles = makeStyles((theme) => ({
|
||||||
},
|
},
|
||||||
}))
|
}))
|
||||||
|
|
||||||
export const StreamField = ({ hideUrl, ...rest }) => {
|
export const StreamField = (props) => {
|
||||||
const record = useRecordContext(rest)
|
const record = useRecordContext(props)
|
||||||
const dispatch = useDispatch()
|
const dispatch = useDispatch()
|
||||||
const classes = useStyles()
|
const classes = useStyles()
|
||||||
|
|
||||||
|
@ -32,7 +32,6 @@ export const StreamField = ({ hideUrl, ...rest }) => {
|
||||||
return (
|
return (
|
||||||
<Button className={classes.button} onClick={playTrack}>
|
<Button className={classes.button} onClick={playTrack}>
|
||||||
<PlayArrowIcon />
|
<PlayArrowIcon />
|
||||||
{!hideUrl && record.streamUrl}
|
|
||||||
</Button>
|
</Button>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -41,10 +40,8 @@ StreamField.propTypes = {
|
||||||
label: PropTypes.string,
|
label: PropTypes.string,
|
||||||
record: PropTypes.object,
|
record: PropTypes.object,
|
||||||
source: PropTypes.string.isRequired,
|
source: PropTypes.string.isRequired,
|
||||||
hideUrl: PropTypes.bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StreamField.defaultProps = {
|
StreamField.defaultProps = {
|
||||||
addLabel: true,
|
addLabel: true,
|
||||||
hideUrl: false,
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import RadioCreate from './RadioCreate'
|
import RadioCreate from './RadioCreate'
|
||||||
import RadioEdit from './RadioEdit'
|
import RadioEdit from './RadioEdit'
|
||||||
import RadioList from './RadioList'
|
import RadioList from './RadioList'
|
||||||
import RadioShow from './RadioShow'
|
|
||||||
import DynamicMenuIcon from '../layout/DynamicMenuIcon'
|
import DynamicMenuIcon from '../layout/DynamicMenuIcon'
|
||||||
import RadioIcon from '@material-ui/icons/Radio'
|
import RadioIcon from '@material-ui/icons/Radio'
|
||||||
import RadioOutlinedIcon from '@material-ui/icons/RadioOutlined'
|
import RadioOutlinedIcon from '@material-ui/icons/RadioOutlined'
|
||||||
|
@ -16,7 +15,6 @@ const all = {
|
||||||
activeIcon={RadioIcon}
|
activeIcon={RadioIcon}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
show: RadioShow,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const admin = {
|
const admin = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue