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' import config from '../config' const Placeholder = () => config.enableFavourites && 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 ( <> {config.enableFavourites && ( )} ) } const PlayerToolbar = ({ id }) => (id ? : ) export default PlayerToolbar