koel/resources/assets/js/components/screens/SettingsScreen.vue

98 lines
2.7 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="settingsWrapper">
2022-04-15 17:00:08 +00:00
<ScreenHeader>Settings</ScreenHeader>
2022-04-15 14:24:30 +00:00
2022-04-21 22:20:21 +00:00
<form class="main-scroll-wrap" @submit.prevent="confirmThenSave">
2022-04-15 14:24:30 +00:00
<div class="form-row">
<label for="inputSettingsPath">Media Path</label>
2022-04-21 22:20:21 +00:00
<p id="mediaPathHelp" class="help">
2022-04-15 14:24:30 +00:00
The <em>absolute</em> path to the server directory containing your media.
Koel will scan this directory for songs and extract any available information.<br>
Scanning may take a while, especially if you have a lot of songs, so be patient.
</p>
<input
id="inputSettingsPath"
2022-04-21 22:20:21 +00:00
v-model="mediaPath"
aria-describedby="mediaPathHelp"
2022-04-15 14:24:30 +00:00
name="media_path"
2022-04-21 22:20:21 +00:00
type="text"
2022-04-15 14:24:30 +00:00
>
</div>
<div class="form-row">
2022-04-15 17:00:08 +00:00
<Btn type="submit">Scan</Btn>
2022-04-15 14:24:30 +00:00
</div>
</form>
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { computed, ref } from 'vue'
2022-04-21 22:20:21 +00:00
import { settingStore } from '@/stores'
2022-11-18 18:44:20 +00:00
import { forceReloadWindow, hideOverlay, parseValidationError, showOverlay } from '@/utils'
import { useDialogBox, useMessageToaster, useRouter } from '@/composables'
2022-04-15 14:24:30 +00:00
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
import Btn from '@/components/ui/Btn.vue'
2022-04-15 14:24:30 +00:00
const { toastSuccess } = useMessageToaster()
const { showConfirmDialog, showErrorDialog } = useDialogBox()
2022-11-18 18:44:20 +00:00
const { go } = useRouter()
2022-04-21 22:20:21 +00:00
const mediaPath = ref(settingStore.state.media_path)
const originalMediaPath = mediaPath.value
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const shouldWarn = computed(() => {
// Warn the user if the media path is not empty and about to change.
2022-04-21 22:20:21 +00:00
if (!originalMediaPath || !mediaPath.value) {
2022-04-15 17:00:08 +00:00
return false
}
2022-04-15 14:24:30 +00:00
2022-04-21 22:20:21 +00:00
return originalMediaPath !== mediaPath.value.trim()
2022-04-15 17:00:08 +00:00
})
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const save = async () => {
showOverlay()
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
try {
2022-04-21 22:20:21 +00:00
await settingStore.update({ media_path: mediaPath.value })
toastSuccess('Settings saved.')
2022-04-15 17:00:08 +00:00
// Make sure we're back to home first.
2022-11-18 18:44:20 +00:00
go('home')
2022-04-15 17:00:08 +00:00
forceReloadWindow()
} catch (err: any) {
const msg = err.response.status === 422 ? parseValidationError(err.response.data)[0] : 'Unknown error.'
showErrorDialog(msg, 'Error')
2022-04-21 22:20:21 +00:00
} finally {
hideOverlay()
2022-04-15 17:00:08 +00:00
}
}
2022-04-15 14:24:30 +00:00
const confirmThenSave = async () => {
2022-04-15 17:00:08 +00:00
if (shouldWarn.value) {
await showConfirmDialog('Changing the media path will essentially remove all existing data songs, artists, \
albums, favorites, everything and empty your playlists! Sure you want to proceed?', 'Confirm')
&& await save()
2022-04-15 17:00:08 +00:00
} else {
await save()
2022-04-15 14:24:30 +00:00
}
2022-04-15 17:00:08 +00:00
}
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss">
#settingsWrapper {
input[type="text"] {
width: 50%;
margin-top: 1rem;
}
2022-04-15 17:00:08 +00:00
@media only screen and (max-width: 667px) {
2022-04-15 14:24:30 +00:00
input[type="text"] {
width: 100%;
}
}
}
</style>