Add DefaultUIVolume option. Closes #1679

This commit is contained in:
Deluan 2022-11-11 16:31:28 -05:00
parent ff6c8f7e9d
commit 1467036efd
6 changed files with 18 additions and 1 deletions

View file

@ -49,6 +49,7 @@ type configOptions struct {
EnableUserEditing bool
DefaultTheme string
DefaultLanguage string
DefaultUIVolume int
EnableCoverAnimation bool
GATrackingID string
EnableLogRedacting bool
@ -240,6 +241,7 @@ func init() {
viper.SetDefault("enableuserediting", true)
viper.SetDefault("defaulttheme", "Dark")
viper.SetDefault("defaultlanguage", "")
viper.SetDefault("defaultuivolume", consts.DefaultUIVolume)
viper.SetDefault("enablecoveranimation", true)
viper.SetDefault("gatrackingid", "")
viper.SetDefault("enablelogredacting", true)

View file

@ -51,6 +51,8 @@ const (
PlaceholderAlbumArt = "placeholder.png"
PlaceholderAvatar = "logo-192x192.png"
DefaultUIVolume = 100
DefaultHttpClientTimeOut = 10 * time.Second
DefaultScannerExtractor = "taglib"

View file

@ -39,6 +39,7 @@ func serveIndex(ds model.DataStore, fs fs.FS) http.HandlerFunc {
"enableStarRating": conf.Server.EnableStarRating,
"defaultTheme": conf.Server.DefaultTheme,
"defaultLanguage": conf.Server.DefaultLanguage,
"defaultUIVolume": conf.Server.DefaultUIVolume,
"enableCoverAnimation": conf.Server.EnableCoverAnimation,
"gaTrackingId": conf.Server.GATrackingID,
"losslessFormats": strings.ToUpper(strings.Join(consts.LosslessFormats, ",")),

View file

@ -170,6 +170,17 @@ var _ = Describe("serveIndex", func() {
Expect(config).To(HaveKeyWithValue("defaultLanguage", "pt"))
})
It("sets the defaultUIVolume", func() {
conf.Server.DefaultUIVolume = 45
r := httptest.NewRequest("GET", "/index.html", nil)
w := httptest.NewRecorder()
serveIndex(ds, fs)(w, r)
config := extractAppConfig(w.Body.String())
Expect(config).To(HaveKeyWithValue("defaultUIVolume", float64(45)))
})
It("sets the enableCoverAnimation", func() {
conf.Server.EnableCoverAnimation = true
r := httptest.NewRequest("GET", "/index.html", nil)

View file

@ -19,6 +19,7 @@ const defaultConfig = {
enableStarRating: true,
defaultTheme: 'Dark',
defaultLanguage: '',
defaultUIVolume: 100,
enableUserEditing: true,
devEnableShare: true,
devSidebarPlaylists: true,

View file

@ -16,7 +16,7 @@ const initialState = {
queue: [],
current: {},
clear: false,
volume: 0.5, // 50%
volume: config.defaultUIVolume / 100,
savedPlayIndex: 0,
}