import React, { useCallback } from 'react' import { useLocation } from 'react-router-dom' import { useGetOne } from 'react-admin' import { GlobalHotKeys } from 'react-hotkeys' import { LoveButton, useToggleLove } from '../common' import { keyMap } from '../hotkeys' const Placeholder = () => const Toolbar = ({ id }) => { const location = useLocation() const resource = location.pathname.startsWith('/song') ? 'song' : 'albumSong' const { data, loading } = useGetOne(resource, id) const [toggleLove, toggling] = useToggleLove(resource, data) const handlers = { TOGGLE_LOVE: useCallback(() => toggleLove(), [toggleLove]), } return ( <> ) } const PlayerToolbar = ({ id }) => (id ? : ) export default PlayerToolbar