mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add stars to Artist
This commit is contained in:
parent
bbc4f9f91f
commit
f2ebbd26fa
3 changed files with 84 additions and 10 deletions
|
@ -30,7 +30,8 @@ func NewArtistRepository(ctx context.Context, o orm.Ormer) model.ArtistRepositor
|
||||||
"name": "order_artist_name",
|
"name": "order_artist_name",
|
||||||
}
|
}
|
||||||
r.filterMappings = map[string]filterFunc{
|
r.filterMappings = map[string]filterFunc{
|
||||||
"name": fullTextFilter,
|
"name": fullTextFilter,
|
||||||
|
"starred": booleanFilter,
|
||||||
}
|
}
|
||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
@ -40,7 +41,7 @@ func (r *artistRepository) selectArtist(options ...model.QueryOptions) SelectBui
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *artistRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
func (r *artistRepository) CountAll(options ...model.QueryOptions) (int64, error) {
|
||||||
return r.count(Select(), options...)
|
return r.count(r.newSelectWithAnnotation("artist.id"), options...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *artistRepository) Exists(id string) (bool, error) {
|
func (r *artistRepository) Exists(id string) (bool, error) {
|
||||||
|
@ -197,6 +198,21 @@ func (r *artistRepository) NewInstance() interface{} {
|
||||||
return &model.Artist{}
|
return &model.Artist{}
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ model.ArtistRepository = (*artistRepository)(nil)
|
func (r artistRepository) Delete(id string) error {
|
||||||
|
return r.delete(Eq{"id": id})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r artistRepository) Save(entity interface{}) (string, error) {
|
||||||
|
mf := entity.(*model.Artist)
|
||||||
|
err := r.Put(mf)
|
||||||
|
return mf.ID, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r artistRepository) Update(entity interface{}, cols ...string) error {
|
||||||
|
mf := entity.(*model.Artist)
|
||||||
|
return r.Put(mf)
|
||||||
|
}
|
||||||
|
|
||||||
var _ model.ArtistRepository = (*artistRepository)(nil)
|
var _ model.ArtistRepository = (*artistRepository)(nil)
|
||||||
var _ model.ResourceRepository = (*artistRepository)(nil)
|
var _ model.ResourceRepository = (*artistRepository)(nil)
|
||||||
|
var _ rest.Persistable = (*artistRepository)(nil)
|
||||||
|
|
|
@ -9,10 +9,12 @@ import {
|
||||||
TextField,
|
TextField,
|
||||||
} from 'react-admin'
|
} from 'react-admin'
|
||||||
import { useMediaQuery, withWidth } from '@material-ui/core'
|
import { useMediaQuery, withWidth } from '@material-ui/core'
|
||||||
|
import StarIcon from '@material-ui/icons/Star'
|
||||||
import AddToPlaylistDialog from '../dialogs/AddToPlaylistDialog'
|
import AddToPlaylistDialog from '../dialogs/AddToPlaylistDialog'
|
||||||
import {
|
import {
|
||||||
ArtistContextMenu,
|
ArtistContextMenu,
|
||||||
List,
|
List,
|
||||||
|
QuickFilter,
|
||||||
SimpleList,
|
SimpleList,
|
||||||
useGetHandleArtistClick,
|
useGetHandleArtistClick,
|
||||||
} from '../common'
|
} from '../common'
|
||||||
|
@ -20,6 +22,11 @@ import {
|
||||||
const ArtistFilter = (props) => (
|
const ArtistFilter = (props) => (
|
||||||
<Filter {...props}>
|
<Filter {...props}>
|
||||||
<SearchInput source="name" alwaysOn />
|
<SearchInput source="name" alwaysOn />
|
||||||
|
<QuickFilter
|
||||||
|
source="starred"
|
||||||
|
label={<StarIcon fontSize={'small'} />}
|
||||||
|
defaultValue={true}
|
||||||
|
/>
|
||||||
</Filter>
|
</Filter>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,15 @@ import Menu from '@material-ui/core/Menu'
|
||||||
import MenuItem from '@material-ui/core/MenuItem'
|
import MenuItem from '@material-ui/core/MenuItem'
|
||||||
import MoreVertIcon from '@material-ui/icons/MoreVert'
|
import MoreVertIcon from '@material-ui/icons/MoreVert'
|
||||||
import StarIcon from '@material-ui/icons/Star'
|
import StarIcon from '@material-ui/icons/Star'
|
||||||
|
import StarBorderIcon from '@material-ui/icons/StarBorder'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import { useDataProvider, useNotify, useTranslate } from 'react-admin'
|
import {
|
||||||
|
useDataProvider,
|
||||||
|
useNotify,
|
||||||
|
useRefresh,
|
||||||
|
useTranslate,
|
||||||
|
useUpdate,
|
||||||
|
} from 'react-admin'
|
||||||
import { addTracks, playTracks, shuffleTracks } from '../audioplayer'
|
import { addTracks, playTracks, shuffleTracks } from '../audioplayer'
|
||||||
import { openAddToPlaylist } from '../dialogs/dialogState'
|
import { openAddToPlaylist } from '../dialogs/dialogState'
|
||||||
import subsonic from '../subsonic'
|
import subsonic from '../subsonic'
|
||||||
|
@ -21,16 +28,25 @@ const useStyles = makeStyles({
|
||||||
visibility: (props) => (props.visible ? 'visible' : 'hidden'),
|
visibility: (props) => (props.visible ? 'visible' : 'hidden'),
|
||||||
},
|
},
|
||||||
star: {
|
star: {
|
||||||
visibility: 'hidden', // TODO: Invisible for now
|
visibility: (props) =>
|
||||||
|
props.visible || props.starred ? 'visible' : 'hidden',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
const ContextMenu = ({ record, color, visible, songQueryParams }) => {
|
const ContextMenu = ({
|
||||||
const classes = useStyles({ color, visible })
|
resource,
|
||||||
|
showStar,
|
||||||
|
record,
|
||||||
|
color,
|
||||||
|
visible,
|
||||||
|
songQueryParams,
|
||||||
|
}) => {
|
||||||
|
const classes = useStyles({ color, visible, starred: record.starred })
|
||||||
const dataProvider = useDataProvider()
|
const dataProvider = useDataProvider()
|
||||||
const dispatch = useDispatch()
|
const dispatch = useDispatch()
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
const notify = useNotify()
|
const notify = useNotify()
|
||||||
|
const refresh = useRefresh()
|
||||||
const [anchorEl, setAnchorEl] = useState(null)
|
const [anchorEl, setAnchorEl] = useState(null)
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
|
@ -102,13 +118,46 @@ const ContextMenu = ({ record, color, visible, songQueryParams }) => {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const [toggleStarred, { loading: updating }] = useUpdate(
|
||||||
|
resource,
|
||||||
|
record.id,
|
||||||
|
{
|
||||||
|
...record,
|
||||||
|
starred: !record.starred,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
undoable: false,
|
||||||
|
onFailure: (error) => {
|
||||||
|
console.log(error)
|
||||||
|
notify('ra.page.error', 'warning')
|
||||||
|
refresh()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
const handleToggleStar = (e) => {
|
||||||
|
toggleStarred()
|
||||||
|
e.stopPropagation()
|
||||||
|
}
|
||||||
|
|
||||||
const open = Boolean(anchorEl)
|
const open = Boolean(anchorEl)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className={classes.noWrap}>
|
<span className={classes.noWrap}>
|
||||||
<IconButton size={'small'} className={classes.star}>
|
{showStar && (
|
||||||
<StarIcon fontSize={'small'} />
|
<IconButton
|
||||||
</IconButton>
|
onClick={handleToggleStar}
|
||||||
|
size={'small'}
|
||||||
|
disabled={updating}
|
||||||
|
className={classes.star}
|
||||||
|
>
|
||||||
|
{record.starred ? (
|
||||||
|
<StarIcon fontSize={'small'} />
|
||||||
|
) : (
|
||||||
|
<StarBorderIcon fontSize={'small'} />
|
||||||
|
)}
|
||||||
|
</IconButton>
|
||||||
|
)}
|
||||||
<IconButton
|
<IconButton
|
||||||
aria-label="more"
|
aria-label="more"
|
||||||
aria-controls="context-menu"
|
aria-controls="context-menu"
|
||||||
|
@ -174,9 +223,11 @@ ArtistContextMenu.propTypes = {
|
||||||
record: PropTypes.object,
|
record: PropTypes.object,
|
||||||
visible: PropTypes.bool,
|
visible: PropTypes.bool,
|
||||||
color: PropTypes.string,
|
color: PropTypes.string,
|
||||||
|
showStar: PropTypes.bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
ArtistContextMenu.defaultProps = {
|
ArtistContextMenu.defaultProps = {
|
||||||
visible: true,
|
visible: true,
|
||||||
|
showStar: true,
|
||||||
addLabel: true,
|
addLabel: true,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue