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:
Egor 2024-10-02 20:10:24 +03:00 committed by GitHub
parent de04393b47
commit 0281d06b01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 29 additions and 17 deletions

View file

@ -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>
) )
} }

View file

@ -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')}>

View file

@ -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>
) )
} }