wikijs-fork/client/components/admin/admin-general.vue

278 lines
10 KiB
Vue
Raw Normal View History

2018-02-28 05:54:09 +00:00
<template lang='pug'>
v-container(fluid, grid-list-lg)
2018-02-28 05:54:09 +00:00
v-layout(row wrap)
v-flex(xs12)
.admin-header
2019-04-07 16:37:33 +00:00
img.animated.fadeInUp(src='/svg/icon-categorize.svg', alt='General', style='width: 80px;')
.admin-header-title
2019-04-07 16:37:33 +00:00
.headline.primary--text.animated.fadeInLeft {{ $t('admin:general.title') }}
.subheading.grey--text.animated.fadeInLeft {{ $t('admin:general.subtitle') }}
v-spacer
2019-04-07 16:37:33 +00:00
v-btn.animated.fadeInDown(color='success', depressed, @click='save', large)
v-icon(left) check
span {{$t('common:actions.apply')}}
2018-02-28 05:54:09 +00:00
v-form.pt-3
v-layout(row wrap)
v-flex(lg6 xs12)
v-form
2019-04-07 16:37:33 +00:00
v-card.wiki-form.animated.fadeInUp
v-toolbar(color='primary', dark, dense, flat)
v-toolbar-title
.subheading {{ $t('admin:general.siteInfo') }}
2019-06-10 03:39:37 +00:00
v-subheader {{$t('admin:general.general')}}
.px-3.pb-3
v-text-field(
2018-12-24 06:03:10 +00:00
outline
2019-06-10 03:39:37 +00:00
:label='$t(`admin:general.siteUrl`)'
2018-12-24 06:03:10 +00:00
required
:counter='255'
v-model='config.host'
prepend-icon='label_important'
2019-06-10 03:39:37 +00:00
:hint='$t(`admin:general.siteUrlHint`)'
2018-12-24 06:03:10 +00:00
persistent-hint
)
v-text-field.mt-2(
outline
2019-06-10 03:39:37 +00:00
:label='$t(`admin:general.siteTitle`)'
required
:counter='50'
2018-12-24 06:03:10 +00:00
v-model='config.title'
prepend-icon='public'
2019-06-10 03:39:37 +00:00
:hint='$t(`admin:general.siteTitleHint`)'
2019-01-07 03:03:34 +00:00
persistent-hint
)
v-divider
2019-06-10 03:39:37 +00:00
v-subheader {{$t('admin:general.logo')}} #[v-chip.ml-2(label, color='grey', small, outline) coming soon]
2019-05-26 01:38:29 +00:00
v-card-text.pb-4.pl-5
v-layout.px-3(row, align-center)
v-avatar(size='100', :color='$vuetify.dark ? `grey darken-2` : `grey lighten-3`', :tile='config.logoIsSquare')
.ml-4
v-btn.mx-0(color='teal', depressed, disabled)
v-icon(left) cloud_upload
2019-06-10 03:39:37 +00:00
span {{$t('admin:general.uploadLogo')}}
2019-05-26 01:38:29 +00:00
v-btn(color='teal', depressed, disabled)
v-icon(left) clear
2019-06-10 03:39:37 +00:00
span {{$t('admin:general.uploadClear')}}
.caption.grey--text {{$t('admin:general.uploadSizeHint', { size: '120x120' })}}
.caption.grey--text {{$t('admin:general.uploadTypesHint', { typeList: 'SVG, PNG', lastType: 'JPG' })}}.
2019-05-26 01:38:29 +00:00
v-divider
2019-06-10 03:39:37 +00:00
v-subheader {{$t('admin:general.footerCopyright')}}
2019-05-26 01:38:29 +00:00
.px-3.pb-3
v-text-field(
outline
2019-06-10 03:39:37 +00:00
:label='$t(`admin:general.companyName`)'
2019-05-26 01:38:29 +00:00
v-model='config.company'
:counter='255'
prepend-icon='business'
persistent-hint
2019-06-10 03:39:37 +00:00
:hint='$t(`admin:general.companyNameHint`)'
2019-05-26 01:38:29 +00:00
)
v-divider
v-subheader SEO
.px-3.pb-3
v-text-field(
outline
2019-06-10 03:39:37 +00:00
:label='$t(`admin:general.siteDescription`)'
:counter='255'
2018-12-24 06:03:10 +00:00
v-model='config.description'
prepend-icon='explore'
2019-06-10 03:39:37 +00:00
:hint='$t(`admin:general.siteDescriptionHint`)'
2019-01-07 03:03:34 +00:00
persistent-hint
)
2018-12-24 06:03:10 +00:00
v-select.mt-2(
outline
2019-06-10 03:39:37 +00:00
:label='$t(`admin:general.metaRobots`)'
2018-12-24 06:03:10 +00:00
multiple
:items='metaRobots'
2018-12-24 06:03:10 +00:00
v-model='config.robots'
prepend-icon='explore'
:return-object='false'
2019-06-10 03:39:37 +00:00
:hint='$t(`admin:general.metaRobotsHint`)'
2018-12-24 06:03:10 +00:00
persistent-hint
)
2019-05-26 01:38:29 +00:00
2018-02-28 05:54:09 +00:00
v-flex(lg6 xs12)
2019-05-26 01:38:29 +00:00
v-card.wiki-form.animated.fadeInUp.wait-p4s
v-toolbar(color='primary', dark, dense, flat)
2018-02-28 05:54:09 +00:00
v-toolbar-title
2019-05-26 01:38:29 +00:00
.subheading Features
v-spacer
v-chip(label, color='white', small).primary--text coming soon
v-card-text
v-switch(
2019-05-26 01:38:29 +00:00
label='Analytics'
color='primary'
2019-05-26 01:38:29 +00:00
v-model='config.featureAnalytics'
persistent-hint
2019-05-26 01:38:29 +00:00
hint='Enable site analytics using service provider.'
disabled
)
2019-05-26 01:38:29 +00:00
v-select.mt-3(
2018-12-24 06:03:10 +00:00
outline
2019-05-26 01:38:29 +00:00
label='Analytics Service Provider'
:items='analyticsServices'
v-model='config.analyticsService'
prepend-icon='subdirectory_arrow_right'
persistent-hint
hint='Automatically add tracking code for services like Google Analytics.'
disabled
)
v-text-field.mt-2(
v-if='config.analyticsService !== ``'
outline
label='Property Tracking ID'
2018-12-24 06:03:10 +00:00
:counter='255'
2019-05-26 01:38:29 +00:00
v-model='config.analyticsId'
prepend-icon='timeline'
persistent-hint
2019-05-26 01:38:29 +00:00
hint='A unique identifier provided by your analytics service provider.'
)
2018-09-04 04:46:24 +00:00
2019-05-26 01:38:29 +00:00
v-divider.mt-3
v-switch(
label='Asset Image Optimization'
color='primary'
v-model='config.featureTinyPNG'
persistent-hint
hint='Image optimization tool to reduce filesize and bandwidth costs.'
disabled
)
v-text-field.mt-3(
outline
label='TinyPNG API Key'
:counter='255'
v-model='config.description'
prepend-icon='subdirectory_arrow_right'
hint='Get your API key at https://tinypng.com/developers'
persistent-hint
disabled
)
v-divider.mt-3
2018-09-04 04:46:24 +00:00
v-switch(
label='Page Ratings'
color='primary'
2018-12-24 06:03:10 +00:00
v-model='config.featurePageRatings'
2018-09-04 04:46:24 +00:00
persistent-hint
hint='Allow users to rate pages.'
2019-06-10 03:39:37 +00:00
disabled
2018-09-04 04:46:24 +00:00
)
2019-05-26 01:38:29 +00:00
2018-09-04 04:46:24 +00:00
v-divider.mt-3
v-switch(
2018-12-24 06:03:10 +00:00
label='Page Comments'
color='primary'
v-model='config.featurePageComments'
persistent-hint
hint='Allow users to leave comments on pages.'
2019-06-10 03:39:37 +00:00
disabled
2018-12-24 06:03:10 +00:00
)
2019-05-26 01:38:29 +00:00
2018-12-24 06:03:10 +00:00
v-divider.mt-3
v-switch(
2018-09-04 04:46:24 +00:00
label='Personal Wikis'
color='primary'
2018-12-24 06:03:10 +00:00
v-model='config.featurePersonalWikis'
2018-09-04 04:46:24 +00:00
persistent-hint
hint='Allow users to have their own personal wiki.'
2019-06-10 03:39:37 +00:00
disabled
2018-09-04 04:46:24 +00:00
)
2018-02-28 05:54:09 +00:00
</template>
<script>
2018-12-24 06:03:10 +00:00
import _ from 'lodash'
2018-12-03 02:42:43 +00:00
import { get, sync } from 'vuex-pathify'
2018-12-24 06:03:10 +00:00
import siteConfigQuery from 'gql/admin/site/site-query-config.gql'
import siteUpdateConfigMutation from 'gql/admin/site/site-mutation-save-config.gql'
2018-08-04 21:27:55 +00:00
2018-02-28 05:54:09 +00:00
export default {
data() {
return {
analyticsServices: [
{ text: 'None', value: '' },
2019-04-27 03:59:35 +00:00
{ text: 'Elasticsearch APM', value: 'elk' },
{ text: 'Google Analytics', value: 'ga' },
2019-04-07 16:37:33 +00:00
{ text: 'Google Tag Manager', value: 'gtm' }
],
2018-12-24 06:03:10 +00:00
metaRobots: [
{ text: 'Index', value: 'index' },
{ text: 'Follow', value: 'follow' },
{ text: 'No Index', value: 'noindex' },
{ text: 'No Follow', value: 'nofollow' }
],
config: {
host: '',
title: '',
description: '',
robots: [],
analyticsService: '',
analyticsId: '',
2018-12-24 06:03:10 +00:00
company: '',
hasLogo: false,
logoIsSquare: false,
2019-05-26 01:38:29 +00:00
featureAnalytics: false,
2018-12-24 06:03:10 +00:00
featurePageRatings: false,
featurePageComments: false,
2019-05-26 01:38:29 +00:00
featurePersonalWikis: false,
featureTinyPNG: false
2018-12-24 06:03:10 +00:00
}
}
2018-08-04 21:27:55 +00:00
},
computed: {
2018-12-03 02:42:43 +00:00
darkMode: get('site/dark'),
2018-08-04 21:27:55 +00:00
siteTitle: sync('site/title'),
company: sync('site/company')
2018-09-04 04:46:24 +00:00
},
methods: {
async save () {
2018-12-24 06:03:10 +00:00
try {
await this.$apollo.mutate({
mutation: siteUpdateConfigMutation,
variables: {
host: this.config.host || '',
title: this.config.title || '',
description: this.config.description || '',
robots: this.config.robots || [],
analyticsService: this.config.analyticsService || '',
analyticsId: this.config.analyticsId || '',
2018-12-24 06:03:10 +00:00
company: this.config.company || '',
hasLogo: this.config.hasLogo || false,
logoIsSquare: this.config.logoIsSquare || false,
featurePageRatings: this.config.featurePageRatings || false,
featurePageComments: this.config.featurePageComments || false,
featurePersonalWikis: this.config.featurePersonalWikis || false
},
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-site-update')
}
})
this.$store.commit('showNotification', {
style: 'success',
message: 'Configuration saved successfully.',
icon: 'check'
})
this.siteTitle = this.config.title
this.company = this.config.company
} catch (err) {
2019-01-13 03:33:30 +00:00
this.$store.commit('pushGraphError', err)
2018-12-24 06:03:10 +00:00
}
}
},
apollo: {
config: {
query: siteConfigQuery,
fetchPolicy: 'network-only',
update: (data) => _.cloneDeep(data.site.config),
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-site-refresh')
}
2018-09-04 04:46:24 +00:00
}
2018-02-28 05:54:09 +00:00
}
}
</script>
<style lang='scss'>
</style>