mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
feat(ui): Allow drag-and-drop song title from player to sidebar playlist (#2435)
* feat(ui): Allow drag-and-drop song title from player to sidebar playlist Signed-off-by: egor.aristov <egor.aristov@vk.team> * prettier --------- Signed-off-by: egor.aristov <egor.aristov@vk.team> Co-authored-by: egor.aristov <egor.aristov@vk.team> Co-authored-by: Deluan Quintão <deluan@navidrome.org>
This commit is contained in:
parent
de04393b47
commit
0281d06b01
3 changed files with 29 additions and 17 deletions
|
@ -36,6 +36,8 @@ import config, { shareInfo } from './config'
|
||||||
import { keyMap } from './hotkeys'
|
import { keyMap } from './hotkeys'
|
||||||
import useChangeThemeColor from './useChangeThemeColor'
|
import useChangeThemeColor from './useChangeThemeColor'
|
||||||
import SharePlayer from './share/SharePlayer'
|
import SharePlayer from './share/SharePlayer'
|
||||||
|
import { HTML5Backend } from 'react-dnd-html5-backend'
|
||||||
|
import { DndProvider } from 'react-dnd'
|
||||||
|
|
||||||
const history = createHashHistory()
|
const history = createHashHistory()
|
||||||
|
|
||||||
|
@ -136,7 +138,9 @@ const AppWithHotkeys = () => {
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<HotKeys keyMap={keyMap}>
|
<HotKeys keyMap={keyMap}>
|
||||||
<App />
|
<DndProvider backend={HTML5Backend}>
|
||||||
|
<App />
|
||||||
|
</DndProvider>
|
||||||
</HotKeys>
|
</HotKeys>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,17 +4,28 @@ import { Link } from 'react-router-dom'
|
||||||
import clsx from 'clsx'
|
import clsx from 'clsx'
|
||||||
import { QualityInfo } from '../common'
|
import { QualityInfo } from '../common'
|
||||||
import useStyle from './styles'
|
import useStyle from './styles'
|
||||||
|
import { useDrag } from 'react-dnd'
|
||||||
|
import { DraggableTypes } from '../consts'
|
||||||
|
|
||||||
const AudioTitle = React.memo(({ audioInfo, gainInfo, isMobile }) => {
|
const AudioTitle = React.memo(({ audioInfo, gainInfo, isMobile }) => {
|
||||||
const classes = useStyle()
|
const classes = useStyle()
|
||||||
const className = classes.audioTitle
|
const className = classes.audioTitle
|
||||||
const isDesktop = useMediaQuery('(min-width:810px)')
|
const isDesktop = useMediaQuery('(min-width:810px)')
|
||||||
|
|
||||||
if (!audioInfo.song) {
|
const song = audioInfo.song
|
||||||
|
const [, dragSongRef] = useDrag(
|
||||||
|
() => ({
|
||||||
|
type: DraggableTypes.SONG,
|
||||||
|
item: { ids: [song?.id] },
|
||||||
|
options: { dropEffect: 'copy' },
|
||||||
|
}),
|
||||||
|
[song],
|
||||||
|
)
|
||||||
|
|
||||||
|
if (!song) {
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
|
|
||||||
const song = audioInfo.song
|
|
||||||
const qi = {
|
const qi = {
|
||||||
suffix: song.suffix,
|
suffix: song.suffix,
|
||||||
bitRate: song.bitRate,
|
bitRate: song.bitRate,
|
||||||
|
@ -32,6 +43,7 @@ const AudioTitle = React.memo(({ audioInfo, gainInfo, isMobile }) => {
|
||||||
: `/album/${song.albumId}/show`
|
: `/album/${song.albumId}/show`
|
||||||
}
|
}
|
||||||
className={className}
|
className={className}
|
||||||
|
ref={dragSongRef}
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<span className={clsx(classes.songTitle, 'songTitle')}>
|
<span className={clsx(classes.songTitle, 'songTitle')}>
|
||||||
|
|
|
@ -3,8 +3,6 @@ import { useDispatch, useSelector } from 'react-redux'
|
||||||
import { Layout as RALayout, toggleSidebar } from 'react-admin'
|
import { Layout as RALayout, toggleSidebar } from 'react-admin'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import { HotKeys } from 'react-hotkeys'
|
import { HotKeys } from 'react-hotkeys'
|
||||||
import { HTML5Backend } from 'react-dnd-html5-backend'
|
|
||||||
import { DndProvider } from 'react-dnd'
|
|
||||||
import Menu from './Menu'
|
import Menu from './Menu'
|
||||||
import AppBar from './AppBar'
|
import AppBar from './AppBar'
|
||||||
import Notification from './Notification'
|
import Notification from './Notification'
|
||||||
|
@ -25,18 +23,16 @@ const Layout = (props) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DndProvider backend={HTML5Backend}>
|
<HotKeys handlers={keyHandlers}>
|
||||||
<HotKeys handlers={keyHandlers}>
|
<RALayout
|
||||||
<RALayout
|
{...props}
|
||||||
{...props}
|
className={classes.root}
|
||||||
className={classes.root}
|
menu={Menu}
|
||||||
menu={Menu}
|
appBar={AppBar}
|
||||||
appBar={AppBar}
|
theme={theme}
|
||||||
theme={theme}
|
notification={Notification}
|
||||||
notification={Notification}
|
/>
|
||||||
/>
|
</HotKeys>
|
||||||
</HotKeys>
|
|
||||||
</DndProvider>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue