mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-23 23:20:57 +03:00
cleaned up logic
This commit is contained in:
parent
2a5d2d70ba
commit
e6d4cfba96
ui/src/album
77
ui/src/album/AlbumContextMenu.js
Normal file
77
ui/src/album/AlbumContextMenu.js
Normal file
@ -0,0 +1,77 @@
|
||||
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 { useDispatch } from 'react-redux'
|
||||
import { playAlbum, shuffleAlbum } from '../audioplayer'
|
||||
|
||||
const AlbumContextMenu = (props) => {
|
||||
const dataProvider = useDataProvider();
|
||||
const dispatch = useDispatch()
|
||||
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))
|
||||
},
|
||||
}
|
||||
|
||||
const handleClick = (e) => {
|
||||
e.preventDefault()
|
||||
setAnchorEl(e.currentTarget)
|
||||
}
|
||||
|
||||
const handleOnClose = (e) => {
|
||||
e.preventDefault()
|
||||
setAnchorEl(null)
|
||||
}
|
||||
|
||||
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))
|
||||
})
|
||||
}
|
||||
|
||||
return (
|
||||
<div>
|
||||
<IconButton
|
||||
aria-label="more"
|
||||
aria-controls="context-menu"
|
||||
aria-haspopup="true"
|
||||
onClick={handleClick}
|
||||
>
|
||||
<MoreVertIcon />
|
||||
</IconButton>
|
||||
<Menu
|
||||
id="context-menu"
|
||||
anchorEl={anchorEl}
|
||||
keepMounted
|
||||
open={open}
|
||||
onClose={handleOnClose}
|
||||
>
|
||||
{Object.keys(options).map((key) => (
|
||||
<MenuItem value={key} key={key} onClick={handleItemClick}>
|
||||
{options[key].label}
|
||||
</MenuItem>
|
||||
))}
|
||||
</Menu>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default AlbumContextMenu
|
@ -1,91 +0,0 @@
|
||||
import React 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 { useDispatch } from 'react-redux'
|
||||
import { playAlbum, shuffleAlbum } from '../audioplayer'
|
||||
import { useGetList } from 'react-admin'
|
||||
|
||||
const GridMenu = (props) => {
|
||||
const [anchorEl, setAnchorEl] = React.useState(null)
|
||||
const dispatch = useDispatch()
|
||||
const { ids, data, loading, error } = useGetList(
|
||||
'albumSong',
|
||||
{},
|
||||
{ field: 'trackNumber', order: 'ASC' },
|
||||
{ album_id: props.id }
|
||||
)
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<IconButton>
|
||||
<MoreVertIcon />
|
||||
</IconButton>
|
||||
)
|
||||
}
|
||||
|
||||
if (error) {
|
||||
return (
|
||||
<IconButton>
|
||||
<MoreVertIcon />
|
||||
</IconButton>
|
||||
)
|
||||
}
|
||||
|
||||
const options = [
|
||||
[1, 'Play'],
|
||||
[2, 'Shuffle'],
|
||||
]
|
||||
|
||||
const open = Boolean(anchorEl)
|
||||
|
||||
const handleClick = (e) => {
|
||||
e.preventDefault()
|
||||
setAnchorEl(e.currentTarget)
|
||||
}
|
||||
|
||||
const handleClose = (e) => {
|
||||
e.preventDefault()
|
||||
setAnchorEl(null)
|
||||
}
|
||||
|
||||
const handleItemClick = (e) => {
|
||||
e.preventDefault()
|
||||
setAnchorEl(null)
|
||||
const value = e.target.getAttribute('value')
|
||||
if (value === '1') {
|
||||
dispatch(playAlbum(ids[0], data))
|
||||
}
|
||||
if (value === '2') {
|
||||
dispatch(shuffleAlbum(data))
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div>
|
||||
<IconButton
|
||||
aria-label="more"
|
||||
aria-controls="long-menu"
|
||||
aria-haspopup="true"
|
||||
onClick={handleClick}
|
||||
>
|
||||
<MoreVertIcon />
|
||||
</IconButton>
|
||||
<Menu
|
||||
id="long-menu"
|
||||
anchorEl={anchorEl}
|
||||
keepMounted
|
||||
open={open}
|
||||
onClose={handleClose}
|
||||
>
|
||||
{options.map((option) => (
|
||||
<MenuItem value={option[0]} key={option[0]} onClick={handleItemClick}>
|
||||
{option[1]}
|
||||
</MenuItem>
|
||||
))}
|
||||
</Menu>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default GridMenu
|
Loading…
x
Reference in New Issue
Block a user