Initial support for artist browsing from UI. Also add linking between resources

This commit is contained in:
Deluan 2020-01-22 13:02:19 -05:00
parent b23175e32b
commit 7dc3f49c1c
6 changed files with 60 additions and 7 deletions

View file

@ -15,9 +15,9 @@ import (
)
type artist struct {
ID string `orm:"pk;column(id)"`
Name string `orm:"index"`
AlbumCount int `orm:"column(album_count)"`
ID string `json:"id" orm:"pk;column(id)"`
Name string `json:"name" orm:"index"`
AlbumCount int `json:"albumCount" orm:"column(album_count)"`
}
type artistRepository struct {

View file

@ -6,6 +6,7 @@ import (
"net/url"
"strings"
"github.com/cloudsonic/sonic-server/conf"
"github.com/cloudsonic/sonic-server/model"
"github.com/cloudsonic/sonic-server/server"
"github.com/deluan/rest"
@ -47,12 +48,14 @@ func (app *Router) routes() http.Handler {
r.Post("/login", Login(app.ds))
r.Route("/api", func(r chi.Router) {
// Add User resource
r.Use(jwtauth.Verifier(TokenAuth))
r.Use(Authenticator)
if !conf.Sonic.DevDisableAuthentication {
r.Use(jwtauth.Verifier(TokenAuth))
r.Use(Authenticator)
}
app.R(r, "/user", model.User{})
app.R(r, "/song", model.MediaFile{})
app.R(r, "/album", model.Album{})
app.R(r, "/artist", model.Artist{})
})
return r
}

View file

@ -7,6 +7,7 @@ import { Login, Layout } from './layout'
import user from './user'
import song from './song'
import album from './album'
import artist from './artist'
const App = () => (
<Admin
@ -17,6 +18,7 @@ const App = () => (
>
<Resource name="song" {...song} options={{ subMenu: 'library' }} />
<Resource name="album" {...album} options={{ subMenu: 'library' }} />
<Resource name="artist" {...artist} options={{ subMenu: 'library' }} />
<Resource name="user" {...user} />
</Admin>
)

View file

@ -34,6 +34,9 @@ const AlbumDetails = (props) => {
)
}
const albumRowClick = (id, basePath, record) =>
`/song?filter={"album_id":"${record.id}"}&order=ASC&sort=trackNumber`
const AlbumList = (props) => (
<List
{...props}
@ -44,7 +47,7 @@ const AlbumList = (props) => (
filters={<AlbumFilter />}
perPage={15}
>
<Datagrid expand={<AlbumDetails />}>
<Datagrid expand={<AlbumDetails />} rowClick={albumRowClick}>
<TextField source="name" />
<TextField source="artist" />
<NumberField source="songCount" />

View file

@ -0,0 +1,38 @@
import React from 'react'
import {
Datagrid,
Filter,
List,
NumberField,
SearchInput,
TextField
} from 'react-admin'
import { Title } from '../common'
const ArtistFilter = (props) => (
<Filter {...props}>
<SearchInput source="name" alwaysOn />
</Filter>
)
const artistRowClick = (id, basePath, record) =>
`/album?filter={"artist_id":"${record.id}"}&order=ASC&sort=year`
const ArtistList = (props) => (
<List
{...props}
title={<Title subTitle={'Artists'} />}
sort={{ field: 'name', order: 'ASC' }}
exporter={false}
bulkActionButtons={false}
filters={<ArtistFilter />}
perPage={15}
>
<Datagrid rowClick={artistRowClick}>
<TextField source="name" />
<NumberField source="albumCount" />
</Datagrid>
</List>
)
export default ArtistList

7
ui/src/artist/index.js Normal file
View file

@ -0,0 +1,7 @@
import MicIcon from '@material-ui/icons/Mic'
import ArtistList from './ArtistList'
export default {
list: ArtistList,
icon: MicIcon
}