mirror of
https://github.com/koel/koel
synced 2024-12-23 19:13:06 +00:00
82 lines
2.4 KiB
Vue
82 lines
2.4 KiB
Vue
<template>
|
|
<div id="settingsWrapper">
|
|
<h1 class="heading">
|
|
<span>Settings</span>
|
|
</h1>
|
|
|
|
<form @submit.prevent="save" class="main-scroll-wrap">
|
|
<div class="form-row">
|
|
<label for="inputSettingsPath">Media Path</label>
|
|
<p class="help">
|
|
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>
|
|
Notice: Scanning may take a while, especially if you have a lot of songs, so be patient.<br>
|
|
The page will refresh after scanning completes.
|
|
</p>
|
|
|
|
<input type="text" v-model="state.settings.media_path" id="inputSettingsPath">
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
<button type="submit">Scan</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import settingStore from '../../../stores/setting';
|
|
import utils from '../../../services/utils';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
state: settingStore.state,
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
/**
|
|
* Save the settings.
|
|
*/
|
|
save() {
|
|
this.$root.showOverlay();
|
|
|
|
settingStore.update(() => {
|
|
// Data changed.
|
|
// Everything changed.
|
|
// It's the time of the oath.
|
|
// We need refresh the page.
|
|
// Goodbye.
|
|
document.location.reload();
|
|
}, (error, status) => {
|
|
if (status === 422) {
|
|
error = utils.parseValidationError(error)[0];
|
|
}
|
|
|
|
this.$root.showOverlay(`Error: ${error}`, 'error', true);
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
@import "resources/assets/sass/partials/_vars.scss";
|
|
@import "resources/assets/sass/partials/_mixins.scss";
|
|
|
|
#settingsWrapper {
|
|
input[type="text"] {
|
|
width: 384px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
@media only screen
|
|
and (max-device-width : 667px)
|
|
and (orientation : portrait) {
|
|
input[type="text"] {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|