Make spotify-ish more spotify-ish (#914)

* [Theme] Allow customising album and player parts

* [Theme] Allow customizing song lists view

* Make spotify-ish more spotify-ish

* Fix responsive issues in spotify-ish

* Spotify-ish login page

* Add back the previous "Spotify-ish" theme as "Green"

Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Samarjeet
2021-04-01 02:28:47 +05:30
committed by GitHub
parent 5128c049d7
commit ea65da484b
9 changed files with 573 additions and 160 deletions
+16 -6
View File
@@ -22,7 +22,8 @@ import {
} from '../common' } from '../common'
import config from '../config' import config from '../config'
const useStyles = makeStyles((theme) => ({ const useStyles = makeStyles(
(theme) => ({
root: { root: {
[theme.breakpoints.down('xs')]: { [theme.breakpoints.down('xs')]: {
padding: '0.7em', padding: '0.7em',
@@ -80,7 +81,14 @@ const useStyles = makeStyles((theme) => ({
pointerCursor: { pointerCursor: {
cursor: 'pointer', cursor: 'pointer',
}, },
})) recordName: {},
recordArtist: {},
recordMeta: {},
}),
{
name: 'NDAlbumDetails',
}
)
const AlbumComment = ({ record }) => { const AlbumComment = ({ record }) => {
const classes = useStyles() const classes = useStyles()
@@ -159,7 +167,7 @@ const AlbumDetails = ({ record }) => {
</div> </div>
<div className={classes.details}> <div className={classes.details}>
<CardContent className={classes.content}> <CardContent className={classes.content}>
<Typography variant="h5"> <Typography variant="h5" className={classes.recordName}>
{record.name} {record.name}
{config.enableFavourites && ( {config.enableFavourites && (
<LoveButton <LoveButton
@@ -172,11 +180,13 @@ const AlbumDetails = ({ record }) => {
/> />
)} )}
</Typography> </Typography>
<Typography component="h6"> <Typography component="h6" className={classes.recordArtist}>
<ArtistLinkField record={record} /> <ArtistLinkField record={record} />
</Typography> </Typography>
<Typography component="p">{genreYear(record)}</Typography> <Typography component="p" className={classes.recordMeta}>
<Typography component="p"> {genreYear(record)}
</Typography>
<Typography component="p" className={classes.recordMeta}>
{record.songCount}{' '} {record.songCount}{' '}
{translate('resources.song.name', { {translate('resources.song.name', {
smart_count: record.songCount, smart_count: record.songCount,
+16 -4
View File
@@ -19,7 +19,8 @@ import {
RangeField, RangeField,
} from '../common' } from '../common'
const useStyles = makeStyles((theme) => ({ const useStyles = makeStyles(
(theme) => ({
root: { root: {
margin: '20px', margin: '20px',
}, },
@@ -71,7 +72,11 @@ const useStyles = makeStyles((theme) => ({
display: 'block', display: 'block',
textDecoration: 'none', textDecoration: 'none',
}, },
})) albumContainer: {},
albumPlayButton: {},
}),
{ name: 'NDAlbumGridView' }
)
const useCoverStyles = makeStyles({ const useCoverStyles = makeStyles({
cover: { cover: {
@@ -112,7 +117,7 @@ const AlbumGridTile = ({ showArtist, record, basePath }) => {
const classes = useStyles() const classes = useStyles()
return ( return (
<div> <div className={classes.albumContainer}>
<Link <Link
className={classes.link} className={classes.link}
to={linkToRecord(basePath, record.id, 'show')} to={linkToRecord(basePath, record.id, 'show')}
@@ -120,7 +125,14 @@ const AlbumGridTile = ({ showArtist, record, basePath }) => {
<Cover album={record} /> <Cover album={record} />
<GridListTileBar <GridListTileBar
className={isDesktop ? classes.tileBar : classes.tileBarMobile} className={isDesktop ? classes.tileBar : classes.tileBarMobile}
subtitle={<PlayButton color={'white'} record={record} size="small" />} subtitle={
<PlayButton
className={classes.albumPlayButton}
color={'white'}
record={record}
size="small"
/>
}
actionIcon={<AlbumContextMenu record={record} color={'white'} />} actionIcon={<AlbumContextMenu record={record} color={'white'} />}
/> />
</Link> </Link>
+14 -1
View File
@@ -5,13 +5,24 @@ import {
useShowContext, useShowContext,
useShowController, useShowController,
} from 'react-admin' } from 'react-admin'
import { makeStyles } from '@material-ui/core/styles'
import AlbumSongs from './AlbumSongs' import AlbumSongs from './AlbumSongs'
import AlbumDetails from './AlbumDetails' import AlbumDetails from './AlbumDetails'
import AlbumActions from './AlbumActions' import AlbumActions from './AlbumActions'
const useStyles = makeStyles(
(theme) => ({
albumActions: {},
}),
{
name: 'NDAlbumShow',
}
)
const AlbumShowLayout = (props) => { const AlbumShowLayout = (props) => {
const { loading, ...context } = useShowContext(props) const { loading, ...context } = useShowContext(props)
const { record } = context const { record } = context
const classes = useStyles()
return ( return (
<> <>
@@ -29,7 +40,9 @@ const AlbumShowLayout = (props) => {
<AlbumSongs <AlbumSongs
resource={'albumSong'} resource={'albumSong'}
exporter={false} exporter={false}
actions={<AlbumActions record={record} />} actions={
<AlbumActions className={classes.albumActions} record={record} />
}
/> />
</ReferenceManyField> </ReferenceManyField>
)} )}
+5 -2
View File
@@ -26,7 +26,8 @@ import { sendNotification, baseUrl } from '../utils'
import { keyMap } from '../hotkeys' import { keyMap } from '../hotkeys'
import useCurrentTheme from '../themes/useCurrentTheme' import useCurrentTheme from '../themes/useCurrentTheme'
const useStyle = makeStyles((theme) => ({ const useStyle = makeStyles(
(theme) => ({
audioTitle: { audioTitle: {
textDecoration: 'none', textDecoration: 'none',
color: theme.palette.primary.dark, color: theme.palette.primary.dark,
@@ -37,7 +38,9 @@ const useStyle = makeStyles((theme) => ({
player: { player: {
display: (props) => (props.visible ? 'block' : 'none'), display: (props) => (props.visible ? 'block' : 'none'),
}, },
})) }),
{ name: 'NDAudioPlayer' }
)
let audioInstance = null let audioInstance = null
+7 -2
View File
@@ -4,7 +4,8 @@ import { makeStyles } from '@material-ui/core/styles'
import { useTranslate } from 'react-admin' import { useTranslate } from 'react-admin'
import { DurationField, SizeField } from '../common' import { DurationField, SizeField } from '../common'
const useStyles = makeStyles((theme) => ({ const useStyles = makeStyles(
(theme) => ({
container: { container: {
[theme.breakpoints.down('xs')]: { [theme.breakpoints.down('xs')]: {
padding: '0.7em', padding: '0.7em',
@@ -33,7 +34,11 @@ const useStyles = makeStyles((theme) => ({
overflow: 'hidden', overflow: 'hidden',
textOverflow: 'ellipsis', textOverflow: 'ellipsis',
}, },
})) }),
{
name: 'NDPlaylistDetails',
}
)
const PlaylistDetails = (props) => { const PlaylistDetails = (props) => {
const { record = {} } = props const { record = {} } = props
+18 -1
View File
@@ -5,14 +5,26 @@ import {
useShowContext, useShowContext,
useShowController, useShowController,
} from 'react-admin' } from 'react-admin'
import { makeStyles } from '@material-ui/core/styles'
import PlaylistDetails from './PlaylistDetails' import PlaylistDetails from './PlaylistDetails'
import PlaylistSongs from './PlaylistSongs' import PlaylistSongs from './PlaylistSongs'
import PlaylistActions from './PlaylistActions' import PlaylistActions from './PlaylistActions'
import { Title, isReadOnly } from '../common' import { Title, isReadOnly } from '../common'
const useStyles = makeStyles(
(theme) => ({
playlistActions: {},
}),
{
name: 'NDPlaylistShow',
}
)
const PlaylistShowLayout = (props) => { const PlaylistShowLayout = (props) => {
const { loading, ...context } = useShowContext(props) const { loading, ...context } = useShowContext(props)
const { record } = context const { record } = context
const classes = useStyles()
return ( return (
<> <>
{record && <PlaylistDetails {...context} />} {record && <PlaylistDetails {...context} />}
@@ -30,7 +42,12 @@ const PlaylistShowLayout = (props) => {
{...props} {...props}
readOnly={isReadOnly(record.owner)} readOnly={isReadOnly(record.owner)}
title={<Title subTitle={record.name} />} title={<Title subTitle={record.name} />}
actions={<PlaylistActions record={record} />} actions={
<PlaylistActions
className={classes.playlistActions}
record={record}
/>
}
resource={'playlistTrack'} resource={'playlistTrack'}
exporter={false} exporter={false}
perPage={0} perPage={0}
+34
View File
@@ -0,0 +1,34 @@
import green from '@material-ui/core/colors/green'
export default {
themeName: 'Green',
palette: {
primary: {
light: green['300'],
main: green['500'],
},
secondary: {
main: green['900'],
contrastText: '#fff',
},
type: 'dark',
},
overrides: {
MuiFormGroup: {
root: {
color: 'white',
},
},
NDLogin: {
systemNameLink: {
color: '#fff',
},
welcome: {
color: '#eee',
},
},
},
player: {
theme: 'dark',
},
}
+2 -1
View File
@@ -1,5 +1,6 @@
import LightTheme from './light' import LightTheme from './light'
import DarkTheme from './dark' import DarkTheme from './dark'
import GreenTheme from './green'
import SpotifyTheme from './spotify' import SpotifyTheme from './spotify'
export default { LightTheme, DarkTheme, SpotifyTheme } export default { LightTheme, DarkTheme, GreenTheme, SpotifyTheme }
+325 -7
View File
@@ -1,30 +1,348 @@
import green from '@material-ui/core/colors/green' const spotifyGreen = {
300: '#62ec83',
500: '#1db954',
900: '#008827',
}
// For Album, Playlist
const musicListActions = {
padding: '1rem 0',
alignItems: 'center',
'@global': {
button: {
margin: 5,
border: '1px solid transparent',
backgroundColor: 'inherit',
color: '#b3b3b3',
'&:hover': {
border: '1px solid #b3b3b3',
backgroundColor: 'inherit !important',
},
},
'button:first-child': {
'@media screen and (max-width: 720px)': {
transform: 'scale(1.5)',
margin: '1rem',
'&:hover': {
transform: 'scale(1.6) !important',
},
},
transform: 'scale(2)',
margin: '1.5rem',
minWidth: 0,
padding: 5,
transition: 'transform .3s ease',
background: spotifyGreen['500'],
color: '#fff',
borderRadius: 500,
border: 0,
'&:hover': {
transform: 'scale(2.1)',
backgroundColor: `${spotifyGreen['500']} !important`,
border: 0,
},
},
'button:first-child>span:first-child': {
padding: 0,
},
'button:first-child>span:first-child>span': {
display: 'none',
},
'button>span:first-child>span, button:not(:first-child)>span:first-child>svg': {
color: '#b3b3b3',
},
},
}
export default { export default {
themeName: 'Spotify-ish', themeName: 'Spotify-ish',
typography: {
fontFamily: "system-ui, 'Helvetica Neue', Helvetica, Arial",
h6: {
fontSize: '1rem', // AppBar title
},
},
palette: { palette: {
primary: { primary: {
light: green['300'], light: spotifyGreen['300'],
main: green['500'], main: spotifyGreen['500'],
}, },
secondary: { secondary: {
main: green['900'], main: '#fff',
contrastText: '#fff', contrastText: '#fff',
}, },
background: {
default: '#121212',
paper: 'inherit',
},
type: 'dark', type: 'dark',
}, },
overrides: { overrides: {
MuiPopover: {
paper: {
backgroundColor: '#121212',
},
},
MuiDialog: {
paper: {
backgroundColor: '#121212',
},
},
MuiFormGroup: { MuiFormGroup: {
root: { root: {
color: 'white', color: spotifyGreen['500'],
},
},
MuiMenuItem: {
root: {
fontSize: '0.875rem',
},
},
MuiDivider: {
root: {
margin: '.75rem 0',
},
},
MuiIconButton: {
label: {
// color: '#fff'
},
},
MuiButton: {
root: {
background: spotifyGreen['500'],
color: '#fff',
// margin: '5px',
border: '1px solid transparent',
borderRadius: 500,
'&:hover': {
background: `${spotifyGreen['900']} !important`,
},
},
textSecondary: {
border: '1px solid #b3b3b3',
background: '#000',
'&:hover': {
border: '1px solid #fff !important',
background: '#000 !important',
},
},
label: {
color: '#fff',
paddingRight: '1rem',
paddingLeft: '0.7rem',
},
},
MuiDrawer: {
root: {
background: '#000',
paddingTop: '10px',
},
},
MuiTableRow: {
root: {
padding: '10px 0',
transition: 'background-color .3s ease',
'&:hover': {
backgroundColor: '#1d1d1d !important',
},
'@global': {
'td:nth-child(4)': {
color: '#fff !important',
},
},
},
},
MuiTableCell: {
root: {
borderBottom: '1px solid #1d1d1d',
padding: '10px !important',
color: '#b3b3b3 !important',
},
head: {
borderBottom: '1px solid #282828',
fontSize: '0.75rem',
textTransform: 'uppercase',
letterSpacing: 1.2,
},
},
MuiAppBar: {
positionFixed: {
backgroundColor: '#000 !important',
boxShadow: 'none',
},
},
NDAlbumGridView: {
albumName: {
marginTop: '0.5rem',
fontWeight: 700,
textTransform: 'none',
color: '#fff',
},
albumSubtitle: {
color: '#b3b3b3',
},
albumContainer: {
backgroundColor: '#181818',
borderRadius: '.5rem',
padding: '.75rem',
transition: 'background-color .3s ease',
'&:hover': {
backgroundColor: '#282828',
},
},
albumPlayButton: {
backgroundColor: spotifyGreen['500'],
borderRadius: '50%',
boxShadow: '0 8px 8px rgb(0 0 0 / 30%)',
padding: '0.35rem',
transition: 'padding .3s ease',
'&:hover': {
background: `${spotifyGreen['500']} !important`,
padding: '0.45rem',
},
},
},
NDPlaylistDetails: {
container: {
background: 'linear-gradient(#1d1d1d, transparent)',
borderRadius: 0,
paddingTop: '2.5rem !important',
boxShadow: 'none',
},
title: {
fontSize: 'calc(1.5rem + 1.5vw);',
fontWeight: 700,
color: '#fff',
},
details: {
fontSize: '.875rem',
color: 'rgba(255,255,255, 0.8)',
},
},
NDAlbumDetails: {
root: {
background: 'linear-gradient(#1d1d1d, transparent)',
borderRadius: 0,
boxShadow: 'none',
},
cardContents: {
alignItems: 'center',
paddingTop: '1.5rem',
},
recordName: {
fontSize: 'calc(1rem + 1.5vw);',
fontWeight: 700,
},
recordArtist: {
fontSize: '.875rem',
fontWeight: 700,
},
recordMeta: {
fontSize: '.875rem',
color: 'rgba(255,255,255, 0.8)',
},
commentBlock: {
fontSize: '.875rem',
color: 'rgba(255,255,255, 0.8)',
},
},
NDAlbumShow: {
albumActions: musicListActions,
},
NDPlaylistShow: {
playlistActions: musicListActions,
},
NDAudioPlayer: {
audioTitle: {
color: '#fff',
fontSize: '0.875rem',
'&.songTitle': {
fontWeight: 400,
},
'&.songInfo': {
fontSize: '0.675rem',
color: '#b3b3b3',
},
},
player: {
border: '10px solid blue',
}, },
}, },
NDLogin: { NDLogin: {
main: {
boxShadow: 'inset 0 0 0 2000px rgba(0, 0, 0, .8)',
},
systemNameLink: { systemNameLink: {
color: '#fff', color: '#fff',
textDecoration: 'none',
},
systemName: {
marginTop: '0.5em',
// borderBottom: '1px solid #282828',
marginBottom: '1em',
},
icon: {
backgroundColor: 'inherit',
},
card: {
// background: 'none',
background: 'none',
boxShadow: 'none',
padding: '10px 0',
minWidth: 360,
},
avatar: {
marginBottom: 0,
},
},
RaLayout: {
content: {
padding: '0 !important',
background: 'linear-gradient(#171717, #121212)',
},
},
RaListToolbar: {
toolbar: {
padding: '0 .55rem !important',
},
},
RaSearchInput: {
input: {
// borderRadius: 500,
// width: '20rem',
paddingLeft: '.9rem',
border: 0,
// height: '2.5rem',
},
},
RaFilterButton: {
root: {
marginRight: '1rem',
},
},
RaPaginationActions: {
button: {
backgroundColor: 'inherit',
minWidth: 48,
margin: '0 4px',
border: '1px solid #282828',
'@global': {
'> .MuiButton-label': {
padding: 0,
},
},
},
actions: {
'@global': {
'.next-page': {
marginLeft: 8,
marginRight: 8,
},
'.previous-page': {
marginRight: 8,
},
}, },
welcome: {
color: '#eee',
}, },
}, },
}, },