mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add Size column to Artist and Album views
This commit is contained in:
parent
4a054de3d5
commit
7682fddec0
4 changed files with 16 additions and 6 deletions
|
@ -103,9 +103,10 @@ const AlbumList = (props) => {
|
||||||
'year',
|
'year',
|
||||||
'duration',
|
'duration',
|
||||||
'rating',
|
'rating',
|
||||||
|
'size',
|
||||||
'createdAt',
|
'createdAt',
|
||||||
],
|
],
|
||||||
['createdAt']
|
['createdAt', 'size']
|
||||||
)
|
)
|
||||||
|
|
||||||
// If it does not have filter/sort params (usually coming from Menu),
|
// If it does not have filter/sort params (usually coming from Menu),
|
||||||
|
|
|
@ -19,6 +19,7 @@ import {
|
||||||
AlbumContextMenu,
|
AlbumContextMenu,
|
||||||
RatingField,
|
RatingField,
|
||||||
useSelectedFields,
|
useSelectedFields,
|
||||||
|
SizeField,
|
||||||
} from '../common'
|
} from '../common'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
import { DraggableTypes } from '../consts'
|
import { DraggableTypes } from '../consts'
|
||||||
|
@ -95,6 +96,7 @@ const AlbumTableView = ({
|
||||||
<RangeField source={'year'} sortBy={'max_year'} sortByOrder={'DESC'} />
|
<RangeField source={'year'} sortBy={'max_year'} sortByOrder={'DESC'} />
|
||||||
),
|
),
|
||||||
duration: isDesktop && <DurationField source="duration" />,
|
duration: isDesktop && <DurationField source="duration" />,
|
||||||
|
size: isDesktop && <SizeField source="size" />,
|
||||||
rating: config.enableStarRating && (
|
rating: config.enableStarRating && (
|
||||||
<RatingField
|
<RatingField
|
||||||
source={'rating'}
|
source={'rating'}
|
||||||
|
|
|
@ -27,6 +27,7 @@ import {
|
||||||
RatingField,
|
RatingField,
|
||||||
useSelectedFields,
|
useSelectedFields,
|
||||||
useResourceRefresh,
|
useResourceRefresh,
|
||||||
|
SizeField,
|
||||||
} from '../common'
|
} from '../common'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
import ArtistListActions from './ArtistListActions'
|
import ArtistListActions from './ArtistListActions'
|
||||||
|
@ -115,6 +116,7 @@ const ArtistListView = ({ hasShow, hasEdit, hasList, width, ...rest }) => {
|
||||||
return {
|
return {
|
||||||
albumCount: <NumberField source="albumCount" sortByOrder={'DESC'} />,
|
albumCount: <NumberField source="albumCount" sortByOrder={'DESC'} />,
|
||||||
songCount: <NumberField source="songCount" sortByOrder={'DESC'} />,
|
songCount: <NumberField source="songCount" sortByOrder={'DESC'} />,
|
||||||
|
size: !isXsmall && <SizeField source="size" />,
|
||||||
playCount: <NumberField source="playCount" sortByOrder={'DESC'} />,
|
playCount: <NumberField source="playCount" sortByOrder={'DESC'} />,
|
||||||
rating: config.enableStarRating && (
|
rating: config.enableStarRating && (
|
||||||
<RatingField
|
<RatingField
|
||||||
|
@ -125,12 +127,15 @@ const ArtistListView = ({ hasShow, hasEdit, hasList, width, ...rest }) => {
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
}, [classes.ratingField])
|
}, [classes.ratingField, isXsmall])
|
||||||
|
|
||||||
const columns = useSelectedFields({
|
const columns = useSelectedFields(
|
||||||
resource: 'artist',
|
{
|
||||||
columns: toggleableFields,
|
resource: 'artist',
|
||||||
})
|
columns: toggleableFields,
|
||||||
|
},
|
||||||
|
['size']
|
||||||
|
)
|
||||||
|
|
||||||
return isXsmall ? (
|
return isXsmall ? (
|
||||||
<ArtistSimpleList
|
<ArtistSimpleList
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
"duration": "Time",
|
"duration": "Time",
|
||||||
"songCount": "Songs",
|
"songCount": "Songs",
|
||||||
"playCount": "Plays",
|
"playCount": "Plays",
|
||||||
|
"size": "Size",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"genre": "Genre",
|
"genre": "Genre",
|
||||||
"compilation": "Compilation",
|
"compilation": "Compilation",
|
||||||
|
@ -80,6 +81,7 @@
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"albumCount": "Album Count",
|
"albumCount": "Album Count",
|
||||||
"songCount": "Song Count",
|
"songCount": "Song Count",
|
||||||
|
"size": "Size",
|
||||||
"playCount": "Plays",
|
"playCount": "Plays",
|
||||||
"rating": "Rating",
|
"rating": "Rating",
|
||||||
"genre": "Genre"
|
"genre": "Genre"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue