Add 5-star rating system(#986)

* Added Star Rating functionality for Songs

* Added Star Rating functionality for Artists

* Added Star Rating functionality for AlbumListView

* Added Star Rating functionality for AlbumDetails and improved typography for title

* Added functionality to turn on/off Star Rating functionality for Songs

* Added functionality to turn on/off Star Rating functionality for Artists

* Added functionality to turn on/off Star Rating functionality for Albums

* Added enableStarRating to server config

* Resolved the bugs and improved the ratings functionality.

* synced repo and removed duplicate key

* changed the default rating size to small, and changed the color to match the theme.

* Added translations for ratings, and Top Rated tab in side menu.

* Changed rating translation to topRated in albumLists, and added has_rating filter to topRated.

* Added empty stars icon to RatingField.

* Added sortable=false in AlbumSongs and added sortByOrder=DESC in all List components.

* Added translations for rating, for artists and albums, and removed the sortByOrder=DESC from SimpleLists.
This commit is contained in:
Neil Chauhan
2021-04-08 01:32:52 +05:30
committed by GitHub
parent 840521ffe2
commit 48ae4f7479
17 changed files with 277 additions and 16 deletions
+15
View File
@@ -17,6 +17,7 @@ import {
QuickFilter,
useGetHandleArtistClick,
ArtistSimpleList,
RatingField,
} from '../common'
import { makeStyles } from '@material-ui/core/styles'
import config from '../config'
@@ -32,11 +33,17 @@ const useStyles = makeStyles({
'& $contextMenu': {
visibility: 'visible',
},
'& $ratingField': {
visibility: 'visible',
},
},
},
contextMenu: {
visibility: 'hidden',
},
ratingField: {
visibility: 'hidden',
},
})
const ArtistFilter = (props) => (
@@ -68,6 +75,14 @@ const ArtistListView = ({ hasShow, hasEdit, hasList, width, ...rest }) => {
<NumberField source="albumCount" sortByOrder={'DESC'} />
<NumberField source="songCount" sortByOrder={'DESC'} />
<NumberField source="playCount" sortByOrder={'DESC'} />
{config.enableStarRating && (
<RatingField
source="rating"
sortByOrder={'DESC'}
resource={'artist'}
className={classes.ratingField}
/>
)}
<ArtistContextMenu
source={'starred'}
sortBy={'starred ASC, starredAt ASC'}