mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-16 12:10:36 +03:00
fixed compile errors
This commit is contained in:
parent
e6d4cfba96
commit
eb7d2dcaa1
@ -1,27 +1,27 @@
|
||||
import React, {useState} from 'react'
|
||||
import React, { useState } from 'react'
|
||||
import IconButton from '@material-ui/core/IconButton'
|
||||
import Menu from '@material-ui/core/Menu'
|
||||
import MenuItem from '@material-ui/core/MenuItem'
|
||||
import MoreVertIcon from '@material-ui/icons/MoreVert'
|
||||
import { useDataProvider, useTranslate } from 'react-admin';
|
||||
import { useDataProvider, useTranslate } from 'react-admin'
|
||||
import { useDispatch } from 'react-redux'
|
||||
import { playAlbum, shuffleAlbum } from '../audioplayer'
|
||||
|
||||
const AlbumContextMenu = (props) => {
|
||||
const dataProvider = useDataProvider();
|
||||
const dataProvider = useDataProvider()
|
||||
const dispatch = useDispatch()
|
||||
const translate = useTranslate()
|
||||
const translate = useTranslate()
|
||||
const [anchorEl, setAnchorEl] = useState(null)
|
||||
const open = Boolean(anchorEl)
|
||||
const options = {
|
||||
play: {
|
||||
label: translate('resources.album.actions.playAll'),
|
||||
action: (data, id) => (playAlbum(id, data))
|
||||
},
|
||||
shuffle: {
|
||||
label: translate('resources.album.actions.shuffle'),
|
||||
action: (data) => (shuffleAlbum(data))
|
||||
},
|
||||
play: {
|
||||
label: translate('resources.album.actions.playAll'),
|
||||
action: (data, id) => playAlbum(id, data),
|
||||
},
|
||||
shuffle: {
|
||||
label: translate('resources.album.actions.shuffle'),
|
||||
action: (data) => shuffleAlbum(data),
|
||||
},
|
||||
}
|
||||
|
||||
const handleClick = (e) => {
|
||||
@ -37,15 +37,20 @@ const AlbumContextMenu = (props) => {
|
||||
const handleItemClick = (e) => {
|
||||
e.preventDefault()
|
||||
setAnchorEl(null)
|
||||
const key = e.target.getAttribute('value')
|
||||
dataProvider.getList('albumSong', {
|
||||
pagination: { page: 0, perPage: 1000 },
|
||||
sort: { field: 'trackNumber', order: 'ASC' },
|
||||
filter: { album_id: props.id },
|
||||
}).then((response) => {
|
||||
const adata = (response.data).reduce((acc, cur) => ({ ...acc, [cur.id]: cur }), {})
|
||||
dispatch(options[key].action(adata, response.data[0].id))
|
||||
})
|
||||
const key = e.target.getAttribute('value')
|
||||
dataProvider
|
||||
.getList('albumSong', {
|
||||
pagination: { page: 0, perPage: 1000 },
|
||||
sort: { field: 'trackNumber', order: 'ASC' },
|
||||
filter: { album_id: props.id },
|
||||
})
|
||||
.then((response) => {
|
||||
const adata = response.data.reduce(
|
||||
(acc, cur) => ({ ...acc, [cur.id]: cur }),
|
||||
{}
|
||||
)
|
||||
dispatch(options[key].action(adata, response.data[0].id))
|
||||
})
|
||||
}
|
||||
|
||||
return (
|
||||
@ -63,7 +68,7 @@ const AlbumContextMenu = (props) => {
|
||||
anchorEl={anchorEl}
|
||||
keepMounted
|
||||
open={open}
|
||||
onClose={handleOnClose}
|
||||
onClose={handleOnClose}
|
||||
>
|
||||
{Object.keys(options).map((key) => (
|
||||
<MenuItem value={key} key={key} onClick={handleItemClick}>
|
||||
|
@ -6,7 +6,7 @@ import { Link } from 'react-router-dom'
|
||||
import { linkToRecord, Loading } from 'react-admin'
|
||||
import subsonic from '../subsonic'
|
||||
import { ArtistLinkField } from './ArtistLinkField'
|
||||
import GridMenu from './GridMenu.js'
|
||||
import AlbumContextMenu from './AlbumContextMenu.js'
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
root: {
|
||||
@ -81,7 +81,7 @@ const LoadedAlbumGrid = ({ ids, data, basePath, width }) => {
|
||||
</ArtistLinkField>
|
||||
</div>
|
||||
}
|
||||
actionIcon={<GridMenu id={id} />}
|
||||
actionIcon={<AlbumContextMenu id={id} />}
|
||||
/>
|
||||
</GridListTile>
|
||||
))}
|
||||
|
Loading…
x
Reference in New Issue
Block a user