mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
Add and show Playlists sizes
This commit is contained in:
parent
68a9be5e86
commit
2f8dc794de
5 changed files with 18 additions and 7 deletions
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
|
@ -3,8 +3,8 @@
|
||||||
github: deluan
|
github: deluan
|
||||||
patreon: # Replace with a single Patreon username
|
patreon: # Replace with a single Patreon username
|
||||||
open_collective: # Replace with a single Open Collective username
|
open_collective: # Replace with a single Open Collective username
|
||||||
liberapay: deluan
|
|
||||||
ko_fi: deluan
|
ko_fi: deluan
|
||||||
|
liberapay: deluan
|
||||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||||
issuehunt: # Replace with a single IssueHunt username
|
issuehunt: # Replace with a single IssueHunt username
|
||||||
|
|
|
@ -9,6 +9,7 @@ type Playlist struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Comment string `json:"comment"`
|
Comment string `json:"comment"`
|
||||||
Duration float32 `json:"duration"`
|
Duration float32 `json:"duration"`
|
||||||
|
Size int64 `json:"size"`
|
||||||
SongCount int `json:"songCount"`
|
SongCount int `json:"songCount"`
|
||||||
Owner string `json:"owner"`
|
Owner string `json:"owner"`
|
||||||
Public bool `json:"public"`
|
Public bool `json:"public"`
|
||||||
|
|
|
@ -140,19 +140,21 @@ func (r *playlistTrackRepository) Update(mediaFileIds []string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *playlistTrackRepository) updateStats() error {
|
func (r *playlistTrackRepository) updateStats() error {
|
||||||
// Get total playlist duration and count
|
// Get total playlist duration, size and count
|
||||||
statsSql := Select("sum(duration) as duration", "count(*) as count").From("media_file").
|
statsSql := Select("sum(duration) as duration", "sum(size) as size", "count(*) as count").
|
||||||
|
From("media_file").
|
||||||
Join("playlist_tracks f on f.media_file_id = media_file.id").
|
Join("playlist_tracks f on f.media_file_id = media_file.id").
|
||||||
Where(Eq{"playlist_id": r.playlistId})
|
Where(Eq{"playlist_id": r.playlistId})
|
||||||
var res struct{ Duration, Count float32 }
|
var res struct{ Duration, Size, Count float32 }
|
||||||
err := r.queryOne(statsSql, &res)
|
err := r.queryOne(statsSql, &res)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update playlist's total duration and count
|
// Update playlist's total duration, size and count
|
||||||
upd := Update("playlist").
|
upd := Update("playlist").
|
||||||
Set("duration", res.Duration).
|
Set("duration", res.Duration).
|
||||||
|
Set("size", res.Size).
|
||||||
Set("song_count", res.Count).
|
Set("song_count", res.Count).
|
||||||
Set("updated_at", time.Now()).
|
Set("updated_at", time.Now()).
|
||||||
Where(Eq{"id": r.playlistId})
|
Where(Eq{"id": r.playlistId})
|
||||||
|
|
|
@ -16,10 +16,13 @@ import { playNext, addTracks, playTracks, shuffleTracks } from '../audioplayer'
|
||||||
import { M3U_MIME_TYPE, REST_URL } from '../consts'
|
import { M3U_MIME_TYPE, REST_URL } from '../consts'
|
||||||
import subsonic from '../subsonic'
|
import subsonic from '../subsonic'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
|
import { formatBytes } from '../common/SizeField'
|
||||||
|
import { useMediaQuery } from '@material-ui/core'
|
||||||
|
|
||||||
const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
|
const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
|
||||||
const dispatch = useDispatch()
|
const dispatch = useDispatch()
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
|
const isDesktop = useMediaQuery((theme) => theme.breakpoints.up('md'))
|
||||||
|
|
||||||
const handlePlay = React.useCallback(() => {
|
const handlePlay = React.useCallback(() => {
|
||||||
dispatch(playTracks(data, ids))
|
dispatch(playTracks(data, ids))
|
||||||
|
@ -87,7 +90,10 @@ const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
onClick={handleDownload}
|
onClick={handleDownload}
|
||||||
label={translate('resources.album.actions.download')}
|
label={
|
||||||
|
translate('resources.album.actions.download') +
|
||||||
|
(isDesktop ? ` (${formatBytes(record.size)})` : '')
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<CloudDownloadOutlinedIcon />
|
<CloudDownloadOutlinedIcon />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React from 'react'
|
||||||
import { Card, CardContent, Typography } from '@material-ui/core'
|
import { Card, CardContent, Typography } from '@material-ui/core'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
import { useTranslate } from 'react-admin'
|
import { useTranslate } from 'react-admin'
|
||||||
import { DurationField } from '../common'
|
import { DurationField, SizeField } from '../common'
|
||||||
|
|
||||||
const useStyles = makeStyles((theme) => ({
|
const useStyles = makeStyles((theme) => ({
|
||||||
container: {
|
container: {
|
||||||
|
@ -56,6 +56,8 @@ const PlaylistDetails = (props) => {
|
||||||
})}
|
})}
|
||||||
{' · '}
|
{' · '}
|
||||||
<DurationField record={record} source={'duration'} />
|
<DurationField record={record} source={'duration'} />
|
||||||
|
{' · '}
|
||||||
|
<SizeField record={record} source={'size'} />
|
||||||
</span>
|
</span>
|
||||||
) : (
|
) : (
|
||||||
<span> </span>
|
<span> </span>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue