256 lines
9.1 KiB
Vue
Raw Normal View History

<template lang='pug'>
v-container(fluid, grid-list-lg)
v-layout(row wrap)
v-flex(xs12)
.admin-header
img.animated.fadeInUp(src='/_assets/svg/icon-paint-palette.svg', alt='Theme', style='width: 80px;')
.admin-header-title
2019-06-08 21:00:12 -04:00
.headline.primary--text.animated.fadeInLeft {{$t('admin:theme.title')}}
2019-08-03 04:48:55 +00:00
.subtitle-1.grey--text.animated.fadeInLeft.wait-p2s {{$t('admin:theme.subtitle')}}
v-spacer
2019-03-17 13:39:58 -04:00
v-btn.animated.fadeInRight(color='success', depressed, @click='save', large, :loading='loading')
2019-07-29 04:50:03 +00:00
v-icon(left) mdi-check
span {{$t('common:actions.apply')}}
v-form.pt-3
v-layout(row wrap)
v-flex(lg6 xs12)
2019-08-11 23:26:29 -04:00
v-card.animated.fadeInUp
v-toolbar(color='primary', dark, dense, flat)
2019-07-29 04:50:03 +00:00
v-toolbar-title.subtitle-1 {{$t('admin:theme.title')}}
v-card-text
2018-06-10 23:23:09 -04:00
v-select(
:items='themes'
2019-07-29 04:50:03 +00:00
outlined
prepend-icon='mdi-palette'
2019-01-25 21:29:34 -05:00
v-model='config.theme'
2019-06-08 21:00:12 -04:00
:label='$t(`admin:theme.siteTheme`)'
2018-06-10 23:23:09 -04:00
persistent-hint
2019-06-08 21:00:12 -04:00
:hint='$t(`admin:theme.siteThemeHint`)'
2018-06-10 23:23:09 -04:00
)
template(slot='item', slot-scope='data')
2019-07-29 04:50:03 +00:00
v-list-item-avatar
v-icon.blue--text(dark) mdi-image-filter-frames
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title(v-html='data.item.text')
v-list-item-sub-title(v-html='data.item.author')
2019-07-13 01:45:03 -04:00
v-select.mt-3(
:items='iconsets'
2019-07-29 04:50:03 +00:00
outlined
prepend-icon='mdi-paw'
2019-07-13 01:45:03 -04:00
v-model='config.iconset'
:label='$t(`admin:theme.iconset`)'
persistent-hint
:hint='$t(`admin:theme.iconsetHint`)'
)
v-divider.mt-3
2018-06-10 23:23:09 -04:00
v-switch(
inset
2018-06-10 23:23:09 -04:00
v-model='darkMode'
2019-06-08 21:00:12 -04:00
:label='$t(`admin:theme.darkMode`)'
2018-06-10 23:23:09 -04:00
color='primary'
persistent-hint
2019-06-08 21:00:12 -04:00
:hint='$t(`admin:theme.darkModeHint`)'
2018-06-10 23:23:09 -04:00
)
2019-07-13 01:45:03 -04:00
v-card.mt-3.animated.fadeInUp.wait-p1s
v-toolbar(color='primary', dark, dense, flat)
v-toolbar-title.subtitle-1 {{$t(`admin:theme.options`)}}
v-spacer
v-chip(label, color='white', small).primary--text coming soon
v-card-text
v-select(
:items='[]'
outlined
prepend-icon='mdi-border-vertical'
v-model='config.iconset'
label='Table of Contents Position'
persistent-hint
hint='Select whether the table of contents is shown on the left, right or not at all.'
disabled
)
v-flex(lg6 xs12)
2020-08-30 14:18:22 -04:00
//- v-card.animated.fadeInUp.wait-p2s
//- v-toolbar(color='teal', dark, dense, flat)
//- v-toolbar-title.subtitle-1 {{$t('admin:theme.downloadThemes')}}
//- v-spacer
//- v-chip(label, color='white', small).teal--text coming soon
//- v-data-table(
//- :headers='headers',
//- :items='themes',
//- hide-default-footer,
//- item-key='value',
//- :items-per-page='1000'
//- )
//- template(v-slot:item='thm')
//- td
//- strong {{thm.item.text}}
//- td
//- span {{ thm.item.author }}
//- td.text-xs-center
//- v-progress-circular(v-if='thm.item.isDownloading', indeterminate, color='blue', size='20', :width='2')
//- v-btn(v-else-if='thm.item.isInstalled && thm.item.installDate < thm.item.updatedAt', icon)
//- v-icon.blue--text mdi-cached
//- v-btn(v-else-if='thm.item.isInstalled', icon)
//- v-icon.green--text mdi-check-bold
//- v-btn(v-else, icon)
//- v-icon.grey--text mdi-cloud-download
2019-08-11 23:26:29 -04:00
2020-08-30 14:18:22 -04:00
v-card.animated.fadeInUp.wait-p2s
v-toolbar(color='primary', dark, dense, flat)
2019-07-29 04:50:03 +00:00
v-toolbar-title.subtitle-1 {{$t(`admin:theme.codeInjection`)}}
v-card-text
v-textarea.is-monospaced(
2019-01-25 21:29:34 -05:00
v-model='config.injectCSS'
2019-06-08 21:00:12 -04:00
:label='$t(`admin:theme.cssOverride`)'
2019-07-29 04:50:03 +00:00
outlined
color='primary'
persistent-hint
2019-06-08 21:00:12 -04:00
:hint='$t(`admin:theme.cssOverrideHint`)'
auto-grow
)
i18next.caption.pl-2.ml-1(path='admin:theme.cssOverrideWarning', tag='div')
strong.red--text(place='caution') {{$t('admin:theme.cssOverrideWarningCaution')}}
code(place='cssClass') .contents
v-textarea.is-monospaced.mt-3(
2019-01-25 21:29:34 -05:00
v-model='config.injectHead'
2019-06-08 21:00:12 -04:00
:label='$t(`admin:theme.headHtmlInjection`)'
2019-07-29 04:50:03 +00:00
outlined
color='primary'
persistent-hint
2019-06-08 21:00:12 -04:00
:hint='$t(`admin:theme.headHtmlInjectionHint`)'
auto-grow
)
v-textarea.is-monospaced.mt-2(
2019-01-25 21:29:34 -05:00
v-model='config.injectBody'
2019-06-08 21:00:12 -04:00
:label='$t(`admin:theme.bodyHtmlInjection`)'
2019-07-29 04:50:03 +00:00
outlined
color='primary'
persistent-hint
2019-06-08 21:00:12 -04:00
:hint='$t(`admin:theme.bodyHtmlInjectionHint`)'
auto-grow
)
</template>
<script>
2018-06-10 23:23:09 -04:00
import _ from 'lodash'
2018-07-15 19:16:19 -04:00
import { sync } from 'vuex-pathify'
2018-06-10 23:23:09 -04:00
2019-01-25 21:29:34 -05:00
import themeConfigQuery from 'gql/admin/theme/theme-query-config.gql'
import themeSaveMutation from 'gql/admin/theme/theme-mutation-save.gql'
2018-06-10 23:23:09 -04:00
export default {
data() {
return {
2018-06-10 23:23:09 -04:00
loading: false,
themes: [
{ text: 'Default', author: 'requarks.io', value: 'default', isInstalled: true, installDate: '', updatedAt: '' }
],
2019-07-13 01:45:03 -04:00
iconsets: [
2019-07-29 04:50:03 +00:00
{ text: 'Material Design Icons (default)', value: 'mdi' },
2019-07-13 01:45:03 -04:00
{ text: 'Font Awesome 5', value: 'fa' },
2019-07-29 04:50:03 +00:00
{ text: 'Font Awesome 4', value: 'fa4' }
2019-07-13 01:45:03 -04:00
],
2019-01-25 21:29:34 -05:00
config: {
theme: 'default',
darkMode: false,
2019-07-13 01:45:03 -04:00
iconset: '',
2019-01-25 21:29:34 -05:00
injectCSS: '',
injectHead: '',
injectBody: ''
},
darkModeInitial: false
}
2018-06-09 20:11:00 -04:00
},
2018-07-15 19:16:19 -04:00
computed: {
darkMode: sync('site/dark'),
headers() {
return [
{
text: this.$t('admin:theme.downloadName'),
align: 'left',
value: 'text'
},
{
text: this.$t('admin:theme.downloadAuthor'),
align: 'left',
value: 'author'
},
{
text: this.$t('admin:theme.downloadDownload'),
align: 'center',
value: 'value',
sortable: false,
width: 100
}
]
}
2018-06-10 23:23:09 -04:00
},
2019-08-04 23:53:21 -04:00
watch: {
'darkMode' (newValue, oldValue) {
this.$vuetify.theme.dark = newValue
}
},
2018-06-10 23:23:09 -04:00
mounted() {
this.darkModeInitial = this.darkMode
},
beforeDestroy() {
2018-07-15 19:16:19 -04:00
this.darkMode = this.darkModeInitial
2019-08-04 23:53:21 -04:00
this.$vuetify.theme.dark = this.darkModeInitial
2018-06-10 23:23:09 -04:00
},
methods: {
async save () {
this.loading = true
this.$store.commit(`loadingStart`, 'admin-theme-save')
try {
const respRaw = await this.$apollo.mutate({
mutation: themeSaveMutation,
variables: {
2019-01-25 21:29:34 -05:00
theme: this.config.theme,
2019-07-13 01:45:03 -04:00
iconset: this.config.iconset,
2019-01-25 21:29:34 -05:00
darkMode: this.darkMode,
injectCSS: this.config.injectCSS,
injectHead: this.config.injectHead,
injectBody: this.config.injectBody
2018-06-10 23:23:09 -04:00
}
})
const resp = _.get(respRaw, 'data.theming.setConfig.responseResult', {})
if (resp.succeeded) {
this.darkModeInitial = this.darkMode
this.$store.commit('showNotification', {
message: 'Theme settings updated successfully.',
style: 'success',
icon: 'check'
})
} else {
throw new Error(resp.message)
}
} catch (err) {
2019-01-12 22:33:30 -05:00
this.$store.commit('pushGraphError', err)
2018-06-10 23:23:09 -04:00
}
this.$store.commit(`loadingStop`, 'admin-theme-save')
this.loading = false
2018-06-09 20:11:00 -04:00
}
2019-01-25 21:29:34 -05:00
},
apollo: {
config: {
query: themeConfigQuery,
fetchPolicy: 'network-only',
update: (data) => data.theming.config,
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-theme-refresh')
}
}
}
}
</script>
<style lang='scss'>
.v-textarea.is-monospaced textarea {
2020-01-31 22:41:14 -05:00
font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
font-size: 13px;
font-weight: 600;
line-height: 1.4;
}
</style>