4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00
AzuraCast/frontend/vue/components/Admin/Branding/BrandingForm.vue
2022-12-29 15:15:05 -06:00

295 lines
12 KiB
Vue

<template>
<form
class="form vue-form"
@submit.prevent="submit"
>
<section
class="card mb-3"
role="region"
>
<div class="card-header bg-primary-dark">
<h2 class="card-title">
{{ $gettext('Branding Settings') }}
</h2>
</div>
<b-alert
variant="danger"
:show="error != null"
>
{{ error }}
</b-alert>
<b-overlay
variant="card"
:show="loading"
>
<div class="card-body">
<b-form-group>
<div class="form-row">
<b-wrapped-form-group
id="edit_form_public_theme"
class="col-md-6"
:field="v$.public_theme"
>
<template #label>
{{ $gettext('Base Theme for Public Pages') }}
</template>
<template #description>
{{
$gettext('Select a theme to use as a base for station public pages and the login page.')
}}
</template>
<template #default="props">
<b-form-radio-group
:id="props.id"
v-model="props.field.$model"
stacked
:options="publicThemeOptions"
/>
</template>
</b-wrapped-form-group>
<b-col md="6">
<b-wrapped-form-checkbox
id="form_edit_hide_album_art"
class="mb-2"
:field="v$.hide_album_art"
>
<template #label>
{{ $gettext('Hide Album Art on Public Pages') }}
</template>
<template #description>
{{
$gettext('If selected, album art will not display on public-facing radio pages.')
}}
</template>
</b-wrapped-form-checkbox>
<b-wrapped-form-checkbox
id="form_edit_hide_product_name"
:field="v$.hide_product_name"
>
<template #label>
{{ $gettext('Hide AzuraCast Branding on Public Pages') }}
</template>
<template #description>
{{
$gettext('If selected, this will remove the AzuraCast branding from public-facing pages.')
}}
</template>
</b-wrapped-form-checkbox>
</b-col>
<b-wrapped-form-group
id="form_edit_homepage_redirect_url"
class="col-md-6"
:field="v$.homepage_redirect_url"
>
<template #label>
{{ $gettext('Homepage Redirect URL') }}
</template>
<template #description>
{{
$gettext('If a visitor is not signed in and visits the AzuraCast homepage, you can automatically redirect them to the URL specified here. Leave blank to redirect them to the login screen by default.')
}}
</template>
</b-wrapped-form-group>
<b-wrapped-form-group
id="form_edit_default_album_art_url"
class="col-md-6"
:field="v$.default_album_art_url"
>
<template #label>
{{ $gettext('Default Album Art URL') }}
</template>
<template #description>
{{
$gettext('If a song has no album art, this URL will be listed instead. Leave blank to use the standard placeholder art.')
}}
</template>
</b-wrapped-form-group>
<b-wrapped-form-group
id="edit_form_public_custom_css"
class="col-md-12"
:field="v$.public_custom_css"
>
<template #label>
{{ $gettext('Custom CSS for Public Pages') }}
</template>
<template #description>
{{
$gettext('This CSS will be applied to the station public pages and login page.')
}}
</template>
<template #default="props">
<codemirror-textarea
:id="props.id"
v-model="props.field.$model"
mode="css"
/>
</template>
</b-wrapped-form-group>
<b-wrapped-form-group
id="edit_form_public_custom_js"
class="col-md-12"
:field="v$.public_custom_js"
>
<template #label>
{{ $gettext('Custom JS for Public Pages') }}
</template>
<template #description>
{{
$gettext('This javascript code will be applied to the station public pages and login page.')
}}
</template>
<template #default="props">
<codemirror-textarea
:id="props.id"
v-model="props.field.$model"
mode="javascript"
/>
</template>
</b-wrapped-form-group>
<b-wrapped-form-group
id="edit_form_internal_custom_css"
class="col-md-12"
:field="v$.internal_custom_css"
>
<template #label>
{{ $gettext('Custom CSS for Internal Pages') }}
</template>
<template #description>
{{
$gettext('This CSS will be applied to the main management pages, like this one.')
}}
</template>
<template #default="props">
<codemirror-textarea
:id="props.id"
v-model="props.field.$model"
mode="css"
/>
</template>
</b-wrapped-form-group>
</div>
<b-button
size="lg"
type="submit"
class="mt-3"
variant="primary"
>
{{ $gettext('Save Changes') }}
</b-button>
</b-form-group>
</div>
</b-overlay>
</section>
</form>
</template>
<script setup>
import CodemirrorTextarea from "~/components/Common/CodemirrorTextarea.vue";
import BWrappedFormGroup from "~/components/Form/BWrappedFormGroup.vue";
import BWrappedFormCheckbox from "~/components/Form/BWrappedFormCheckbox.vue";
import {computed, onMounted, ref} from "vue";
import {useAxios} from "~/vendor/axios";
import mergeExisting from "~/functions/mergeExisting";
import {useNotify} from "~/vendor/bootstrapVue";
import {useTranslate} from "~/vendor/gettext";
import {useVuelidateOnForm} from "~/functions/useVuelidateOnForm";
const props = defineProps({
apiUrl: String,
});
const loading = ref(true);
const error = ref(null);
const {form, resetForm, v$} = useVuelidateOnForm(
{
'public_theme': {},
'hide_album_art': {},
'homepage_redirect_url': {},
'default_album_art_url': {},
'hide_product_name': {},
'public_custom_css': {},
'public_custom_js': {},
'internal_custom_css': {}
},
{
'public_theme': '',
'hide_album_art': false,
'homepage_redirect_url': '',
'default_album_art_url': '',
'hide_product_name': false,
'public_custom_css': '',
'public_custom_js': '',
'internal_custom_css': ''
}
);
const {$gettext} = useTranslate();
const publicThemeOptions = computed(() => {
return [
{
text: $gettext('Prefer System Default'),
value: 'browser',
},
{
text: $gettext('Light'),
value: 'light',
},
{
text: $gettext('Dark'),
value: 'dark',
}
];
});
const {axios} = useAxios();
const populateForm = (data) => {
form.value = mergeExisting(form.value, data);
};
const relist = () => {
resetForm();
loading.value = true;
axios.get(props.apiUrl).then((resp) => {
populateForm(resp.data);
loading.value = false;
});
}
onMounted(relist);
const {wrapWithLoading, notifySuccess} = useNotify();
const submit = () => {
v$.value.$touch();
if (v$.value.$errors.length > 0) {
return;
}
wrapWithLoading(
axios({
method: 'PUT',
url: props.apiUrl,
data: form.value
})
).then(() => {
notifySuccess($gettext('Changes saved.'));
relist();
});
}
</script>