mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Add size to album details (#561)
* add size to album details for #534 * addressing review comments: * create index album(size) * remove unneeded Size field from refresh struct * add whitespace to album details * add size to album list view * prettier
This commit is contained in:
parent
c60e56828b
commit
fd6edf967f
6 changed files with 39 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -39,7 +39,7 @@ update-snapshots: check_go_env
|
||||||
|
|
||||||
migration:
|
migration:
|
||||||
@if [ -z "${name}" ]; then echo "Usage: make migration name=name_of_migration_file"; exit 1; fi
|
@if [ -z "${name}" ]; then echo "Usage: make migration name=name_of_migration_file"; exit 1; fi
|
||||||
goose -dir db/migrations create ${name}
|
goose -dir db/migration create ${name}
|
||||||
.PHONY: migration
|
.PHONY: migration
|
||||||
|
|
||||||
setup: download-deps
|
setup: download-deps
|
||||||
|
|
30
db/migration/20201010162350_add_album_size.go
Normal file
30
db/migration/20201010162350_add_album_size.go
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
package migration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"github.com/pressly/goose"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
goose.AddMigration(Up20201010162350, Down20201010162350)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Up20201010162350(tx *sql.Tx) error {
|
||||||
|
_, err := tx.Exec(`
|
||||||
|
alter table album
|
||||||
|
add size integer default 0 not null;
|
||||||
|
create index if not exists album_size
|
||||||
|
on album(size);
|
||||||
|
`)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
notice(tx, "A full rescan will be performed to calculate album sizes.")
|
||||||
|
return forceFullRescan(tx)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Down20201010162350(tx *sql.Tx) error {
|
||||||
|
// This code is executed when the migration is rolled back.
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -27,6 +27,7 @@ type Album struct {
|
||||||
OrderAlbumArtistName string `json:"orderAlbumArtistName"`
|
OrderAlbumArtistName string `json:"orderAlbumArtistName"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
|
Size int `json:"size"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Albums []Album
|
type Albums []Album
|
||||||
|
|
|
@ -164,7 +164,8 @@ func (r *albumRepository) refresh(ids ...string) error {
|
||||||
f.compilation, f.genre, max(f.year) as max_year, sum(f.duration) as duration,
|
f.compilation, f.genre, max(f.year) as max_year, sum(f.duration) as duration,
|
||||||
count(f.id) as song_count, a.id as current_id,
|
count(f.id) as song_count, a.id as current_id,
|
||||||
group_concat(f.disc_subtitle, ' ') as disc_subtitles,
|
group_concat(f.disc_subtitle, ' ') as disc_subtitles,
|
||||||
group_concat(f.artist, ' ') as song_artists, group_concat(f.year, ' ') as years`).
|
group_concat(f.artist, ' ') as song_artists, group_concat(f.year, ' ') as years,
|
||||||
|
sum(f.size) as size`).
|
||||||
From("media_file f").
|
From("media_file f").
|
||||||
LeftJoin("album a on f.album_id = a.id").
|
LeftJoin("album a on f.album_id = a.id").
|
||||||
Where(Eq{"f.album_id": ids}).GroupBy("f.album_id")
|
Where(Eq{"f.album_id": ids}).GroupBy("f.album_id")
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { useTranslate } from 'react-admin'
|
||||||
import Lightbox from 'react-image-lightbox'
|
import Lightbox from 'react-image-lightbox'
|
||||||
import 'react-image-lightbox/style.css'
|
import 'react-image-lightbox/style.css'
|
||||||
import subsonic from '../subsonic'
|
import subsonic from '../subsonic'
|
||||||
import { DurationField, formatRange, StarButton } from '../common'
|
import { DurationField, formatRange, StarButton, SizeField } from '../common'
|
||||||
import { ArtistLinkField } from '../common'
|
import { ArtistLinkField } from '../common'
|
||||||
|
|
||||||
const AlbumDetails = ({ classes, record }) => {
|
const AlbumDetails = ({ classes, record }) => {
|
||||||
|
@ -48,7 +48,8 @@ const AlbumDetails = ({ classes, record }) => {
|
||||||
<Typography component="p">
|
<Typography component="p">
|
||||||
{record.songCount}{' '}
|
{record.songCount}{' '}
|
||||||
{translate('resources.song.name', { smart_count: record.songCount })}{' '}
|
{translate('resources.song.name', { smart_count: record.songCount })}{' '}
|
||||||
· <DurationField record={record} source={'duration'} />
|
· <DurationField record={record} source={'duration'} /> ·{' '}
|
||||||
|
<SizeField record={record} source="size" />
|
||||||
</Typography>
|
</Typography>
|
||||||
<StarButton record={record} resource={'album'} size={'large'} />
|
<StarButton record={record} resource={'album'} size={'large'} />
|
||||||
</CardContent>
|
</CardContent>
|
||||||
|
|
|
@ -17,6 +17,7 @@ import {
|
||||||
DurationField,
|
DurationField,
|
||||||
RangeField,
|
RangeField,
|
||||||
SimpleList,
|
SimpleList,
|
||||||
|
SizeField,
|
||||||
} from '../common'
|
} from '../common'
|
||||||
import { AlbumContextMenu } from '../common'
|
import { AlbumContextMenu } from '../common'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
|
@ -37,6 +38,7 @@ const AlbumDetails = (props) => {
|
||||||
<TextField source="genre" />
|
<TextField source="genre" />
|
||||||
<BooleanField source="compilation" />
|
<BooleanField source="compilation" />
|
||||||
<DateField source="updatedAt" showTime />
|
<DateField source="updatedAt" showTime />
|
||||||
|
<SizeField source="size" />
|
||||||
</SimpleShowLayout>
|
</SimpleShowLayout>
|
||||||
</Show>
|
</Show>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue