mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add option to disable album cover animation in the player. Closes #1185
This commit is contained in:
parent
167fe46288
commit
a73f885afb
5 changed files with 23 additions and 1 deletions
|
@ -46,6 +46,7 @@ type configOptions struct {
|
||||||
EnableStarRating bool
|
EnableStarRating bool
|
||||||
EnableUserEditing bool
|
EnableUserEditing bool
|
||||||
DefaultTheme string
|
DefaultTheme string
|
||||||
|
EnableCoverAnimation bool
|
||||||
GATrackingID string
|
GATrackingID string
|
||||||
EnableLogRedacting bool
|
EnableLogRedacting bool
|
||||||
AuthRequestLimit int
|
AuthRequestLimit int
|
||||||
|
@ -201,6 +202,7 @@ func init() {
|
||||||
viper.SetDefault("enablestarrating", true)
|
viper.SetDefault("enablestarrating", true)
|
||||||
viper.SetDefault("enableuserediting", true)
|
viper.SetDefault("enableuserediting", true)
|
||||||
viper.SetDefault("defaulttheme", "Dark")
|
viper.SetDefault("defaulttheme", "Dark")
|
||||||
|
viper.SetDefault("enablecoveranimation", true)
|
||||||
viper.SetDefault("gatrackingid", "")
|
viper.SetDefault("gatrackingid", "")
|
||||||
viper.SetDefault("enablelogredacting", true)
|
viper.SetDefault("enablelogredacting", true)
|
||||||
viper.SetDefault("authrequestlimit", 5)
|
viper.SetDefault("authrequestlimit", 5)
|
||||||
|
|
|
@ -38,6 +38,7 @@ func serveIndex(ds model.DataStore, fs fs.FS) http.HandlerFunc {
|
||||||
"enableFavourites": conf.Server.EnableFavourites,
|
"enableFavourites": conf.Server.EnableFavourites,
|
||||||
"enableStarRating": conf.Server.EnableStarRating,
|
"enableStarRating": conf.Server.EnableStarRating,
|
||||||
"defaultTheme": conf.Server.DefaultTheme,
|
"defaultTheme": conf.Server.DefaultTheme,
|
||||||
|
"enableCoverAnimation": conf.Server.EnableCoverAnimation,
|
||||||
"gaTrackingId": conf.Server.GATrackingID,
|
"gaTrackingId": conf.Server.GATrackingID,
|
||||||
"losslessFormats": strings.ToUpper(strings.Join(consts.LosslessFormats, ",")),
|
"losslessFormats": strings.ToUpper(strings.Join(consts.LosslessFormats, ",")),
|
||||||
"devActivityPanel": conf.Server.DevActivityPanel,
|
"devActivityPanel": conf.Server.DevActivityPanel,
|
||||||
|
|
|
@ -148,6 +148,17 @@ var _ = Describe("serveIndex", func() {
|
||||||
Expect(config).To(HaveKeyWithValue("defaultTheme", "Light"))
|
Expect(config).To(HaveKeyWithValue("defaultTheme", "Light"))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("sets the enableCoverAnimation", func() {
|
||||||
|
conf.Server.EnableCoverAnimation = true
|
||||||
|
r := httptest.NewRequest("GET", "/index.html", nil)
|
||||||
|
w := httptest.NewRecorder()
|
||||||
|
|
||||||
|
serveIndex(ds, fs)(w, r)
|
||||||
|
|
||||||
|
config := extractAppConfig(w.Body.String())
|
||||||
|
Expect(config).To(HaveKeyWithValue("enableCoverAnimation", true))
|
||||||
|
})
|
||||||
|
|
||||||
It("sets the gaTrackingId", func() {
|
It("sets the gaTrackingId", func() {
|
||||||
conf.Server.GATrackingID = "UA-12345"
|
conf.Server.GATrackingID = "UA-12345"
|
||||||
r := httptest.NewRequest("GET", "/index.html", nil)
|
r := httptest.NewRequest("GET", "/index.html", nil)
|
||||||
|
|
|
@ -62,6 +62,10 @@ const useStyle = makeStyles(
|
||||||
'& .play-mode-title': {
|
'& .play-mode-title': {
|
||||||
'pointer-events': 'none',
|
'pointer-events': 'none',
|
||||||
},
|
},
|
||||||
|
'& .music-player-panel .panel-content div.img-rotate': {
|
||||||
|
'animation-duration': (props) =>
|
||||||
|
props.enableCoverAnimation ? null : '0s',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
artistAlbum: {
|
artistAlbum: {
|
||||||
marginTop: '2px',
|
marginTop: '2px',
|
||||||
|
@ -117,7 +121,10 @@ const Player = () => {
|
||||||
)
|
)
|
||||||
|
|
||||||
const visible = authenticated && queue.queue.length > 0
|
const visible = authenticated && queue.queue.length > 0
|
||||||
const classes = useStyle({ visible })
|
const classes = useStyle({
|
||||||
|
visible,
|
||||||
|
enableCoverAnimation: config.enableCoverAnimation,
|
||||||
|
})
|
||||||
// Match the medium breakpoint defined in the material-ui theme
|
// Match the medium breakpoint defined in the material-ui theme
|
||||||
// See https://material-ui.com/customization/breakpoints/#breakpoints
|
// See https://material-ui.com/customization/breakpoints/#breakpoints
|
||||||
const isDesktop = useMediaQuery('(min-width:810px)')
|
const isDesktop = useMediaQuery('(min-width:810px)')
|
||||||
|
|
|
@ -21,6 +21,7 @@ const defaultConfig = {
|
||||||
devEnableShare: true,
|
devEnableShare: true,
|
||||||
devEnableScrobble: true,
|
devEnableScrobble: true,
|
||||||
lastFMApiKey: '9b94a5515ea66b2da3ec03c12300327e',
|
lastFMApiKey: '9b94a5515ea66b2da3ec03c12300327e',
|
||||||
|
enableCoverAnimation: false,
|
||||||
}
|
}
|
||||||
|
|
||||||
let config
|
let config
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue