feat: katex + admin SSL UI (wip) + dev warning
This commit is contained in:
parent
d407312caa
commit
aa5368b2a1
@ -8,22 +8,22 @@
|
|||||||
v-navigation-drawer.pb-0.admin-sidebar(v-model='adminDrawerShown', app, fixed, clipped, :right='$vuetify.rtl', permanent, width='300')
|
v-navigation-drawer.pb-0.admin-sidebar(v-model='adminDrawerShown', app, fixed, clipped, :right='$vuetify.rtl', permanent, width='300')
|
||||||
vue-scroll(:ops='scrollStyle')
|
vue-scroll(:ops='scrollStyle')
|
||||||
v-list(dense, nav)
|
v-list(dense, nav)
|
||||||
v-list-item(to='/dashboard')
|
v-list-item(to='/dashboard', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-view-dashboard-variant
|
v-list-item-avatar(size='24'): v-icon mdi-view-dashboard-variant
|
||||||
v-list-item-title {{ $t('admin:dashboard.title') }}
|
v-list-item-title {{ $t('admin:dashboard.title') }}
|
||||||
template(v-if='hasPermission([`manage:system`, `manage:navigation`, `write:pages`, `manage:pages`, `delete:pages`])')
|
template(v-if='hasPermission([`manage:system`, `manage:navigation`, `write:pages`, `manage:pages`, `delete:pages`])')
|
||||||
v-divider.my-2
|
v-divider.my-2
|
||||||
v-subheader.pl-4 {{ $t('admin:nav.site') }}
|
v-subheader.pl-4 {{ $t('admin:nav.site') }}
|
||||||
v-list-item(to='/general', v-if='hasPermission(`manage:system`)')
|
v-list-item(to='/general', color='primary', v-if='hasPermission(`manage:system`)')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-widgets
|
v-list-item-avatar(size='24'): v-icon mdi-widgets
|
||||||
v-list-item-title {{ $t('admin:general.title') }}
|
v-list-item-title {{ $t('admin:general.title') }}
|
||||||
v-list-item(to='/locale', v-if='hasPermission(`manage:system`)')
|
v-list-item(to='/locale', color='primary', v-if='hasPermission(`manage:system`)')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-web
|
v-list-item-avatar(size='24'): v-icon mdi-web
|
||||||
v-list-item-title {{ $t('admin:locale.title') }}
|
v-list-item-title {{ $t('admin:locale.title') }}
|
||||||
v-list-item(to='/navigation', v-if='hasPermission([`manage:system`, `manage:navigation`])')
|
v-list-item(to='/navigation', color='primary', v-if='hasPermission([`manage:system`, `manage:navigation`])')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-near-me
|
v-list-item-avatar(size='24'): v-icon mdi-near-me
|
||||||
v-list-item-title {{ $t('admin:navigation.title') }}
|
v-list-item-title {{ $t('admin:navigation.title') }}
|
||||||
v-list-item(to='/pages', v-if='hasPermission([`manage:system`, `write:pages`, `manage:pages`, `delete:pages`])')
|
v-list-item(to='/pages', color='primary', v-if='hasPermission([`manage:system`, `write:pages`, `manage:pages`, `delete:pages`])')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-file-document-outline
|
v-list-item-avatar(size='24'): v-icon mdi-file-document-outline
|
||||||
v-list-item-title {{ $t('admin:pages.title') }}
|
v-list-item-title {{ $t('admin:pages.title') }}
|
||||||
v-list-item-action(style='min-width:auto;')
|
v-list-item-action(style='min-width:auto;')
|
||||||
@ -32,19 +32,19 @@
|
|||||||
v-list-item(to='/tags', v-if='hasPermission([`manage:system`])', disabled)
|
v-list-item(to='/tags', v-if='hasPermission([`manage:system`])', disabled)
|
||||||
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-tag-multiple
|
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-tag-multiple
|
||||||
v-list-item-title {{ $t('admin:tags.title') }}
|
v-list-item-title {{ $t('admin:tags.title') }}
|
||||||
v-list-item(to='/theme', v-if='hasPermission([`manage:system`, `manage:theme`])')
|
v-list-item(to='/theme', color='primary', v-if='hasPermission([`manage:system`, `manage:theme`])')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-palette-outline
|
v-list-item-avatar(size='24'): v-icon mdi-palette-outline
|
||||||
v-list-item-title {{ $t('admin:theme.title') }}
|
v-list-item-title {{ $t('admin:theme.title') }}
|
||||||
template(v-if='hasPermission([`manage:system`, `manage:groups`, `write:groups`, `manage:users`, `write:users`])')
|
template(v-if='hasPermission([`manage:system`, `manage:groups`, `write:groups`, `manage:users`, `write:users`])')
|
||||||
v-divider.my-2
|
v-divider.my-2
|
||||||
v-subheader.pl-4 {{ $t('admin:nav.users') }}
|
v-subheader.pl-4 {{ $t('admin:nav.users') }}
|
||||||
v-list-item(to='/groups', v-if='hasPermission([`manage:system`, `manage:groups`, `write:groups`])')
|
v-list-item(to='/groups', color='primary', v-if='hasPermission([`manage:system`, `manage:groups`, `write:groups`])')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-account-group
|
v-list-item-avatar(size='24'): v-icon mdi-account-group
|
||||||
v-list-item-title {{ $t('admin:groups.title') }}
|
v-list-item-title {{ $t('admin:groups.title') }}
|
||||||
v-list-item-action(style='min-width:auto;')
|
v-list-item-action(style='min-width:auto;')
|
||||||
v-chip(x-small, :color='darkMode ? `grey darken-3-d4` : `grey lighten-4`')
|
v-chip(x-small, :color='darkMode ? `grey darken-3-d4` : `grey lighten-4`')
|
||||||
.caption.grey--text {{ info.groupsTotal }}
|
.caption.grey--text {{ info.groupsTotal }}
|
||||||
v-list-item(to='/users', v-if='hasPermission([`manage:system`, `manage:groups`, `write:groups`, `manage:users`, `write:users`])')
|
v-list-item(to='/users', color='primary', v-if='hasPermission([`manage:system`, `manage:groups`, `write:groups`, `manage:users`, `write:users`])')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-account-box
|
v-list-item-avatar(size='24'): v-icon mdi-account-box
|
||||||
v-list-item-title {{ $t('admin:users.title') }}
|
v-list-item-title {{ $t('admin:users.title') }}
|
||||||
v-list-item-action(style='min-width:auto;')
|
v-list-item-action(style='min-width:auto;')
|
||||||
@ -53,10 +53,10 @@
|
|||||||
template(v-if='hasPermission(`manage:system`)')
|
template(v-if='hasPermission(`manage:system`)')
|
||||||
v-divider.my-2
|
v-divider.my-2
|
||||||
v-subheader.pl-4 {{ $t('admin:nav.modules') }}
|
v-subheader.pl-4 {{ $t('admin:nav.modules') }}
|
||||||
v-list-item(to='/analytics')
|
v-list-item(to='/analytics', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-chart-timeline-variant
|
v-list-item-avatar(size='24'): v-icon mdi-chart-timeline-variant
|
||||||
v-list-item-title {{ $t('admin:analytics.title') }}
|
v-list-item-title {{ $t('admin:analytics.title') }}
|
||||||
v-list-item(to='/auth')
|
v-list-item(to='/auth', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-lock-outline
|
v-list-item-avatar(size='24'): v-icon mdi-lock-outline
|
||||||
v-list-item-title {{ $t('admin:auth.title') }}
|
v-list-item-title {{ $t('admin:auth.title') }}
|
||||||
v-list-item(to='/comments', disabled)
|
v-list-item(to='/comments', disabled)
|
||||||
@ -68,13 +68,13 @@
|
|||||||
v-list-item(to='/logging', disabled)
|
v-list-item(to='/logging', disabled)
|
||||||
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-script-text-outline
|
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-script-text-outline
|
||||||
v-list-item-title {{ $t('admin:logging.title') }}
|
v-list-item-title {{ $t('admin:logging.title') }}
|
||||||
v-list-item(to='/rendering')
|
v-list-item(to='/rendering', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-cogs
|
v-list-item-avatar(size='24'): v-icon mdi-cogs
|
||||||
v-list-item-title {{ $t('admin:rendering.title') }}
|
v-list-item-title {{ $t('admin:rendering.title') }}
|
||||||
v-list-item(to='/search')
|
v-list-item(to='/search', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-cloud-search-outline
|
v-list-item-avatar(size='24'): v-icon mdi-cloud-search-outline
|
||||||
v-list-item-title {{ $t('admin:search.title') }}
|
v-list-item-title {{ $t('admin:search.title') }}
|
||||||
v-list-item(to='/storage')
|
v-list-item(to='/storage', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-harddisk
|
v-list-item-avatar(size='24'): v-icon mdi-harddisk
|
||||||
v-list-item-title {{ $t('admin:storage.title') }}
|
v-list-item-title {{ $t('admin:storage.title') }}
|
||||||
template(v-if='hasPermission([`manage:system`, `manage:api`])')
|
template(v-if='hasPermission([`manage:system`, `manage:api`])')
|
||||||
@ -83,13 +83,16 @@
|
|||||||
v-list-item(to='/api', v-if='hasPermission([`manage:system`, `manage:api`])', disabled)
|
v-list-item(to='/api', v-if='hasPermission([`manage:system`, `manage:api`])', disabled)
|
||||||
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-call-split
|
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-call-split
|
||||||
v-list-item-title {{ $t('admin:api.title') }}
|
v-list-item-title {{ $t('admin:api.title') }}
|
||||||
v-list-item(to='/mail', v-if='hasPermission(`manage:system`)')
|
v-list-item(to='/mail', color='primary', v-if='hasPermission(`manage:system`)')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-email-multiple-outline
|
v-list-item-avatar(size='24'): v-icon mdi-email-multiple-outline
|
||||||
v-list-item-title {{ $t('admin:mail.title') }}
|
v-list-item-title {{ $t('admin:mail.title') }}
|
||||||
v-list-item(to='/system', v-if='hasPermission(`manage:system`)')
|
v-list-item(to='/ssl', color='primary', v-if='hasPermission(`manage:system`)')
|
||||||
|
v-list-item-avatar(size='24'): v-icon mdi-cloud-lock-outline
|
||||||
|
v-list-item-title {{ $t('admin:ssl.title') }}
|
||||||
|
v-list-item(to='/system', color='primary', v-if='hasPermission(`manage:system`)')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-tune
|
v-list-item-avatar(size='24'): v-icon mdi-tune
|
||||||
v-list-item-title {{ $t('admin:system.title') }}
|
v-list-item-title {{ $t('admin:system.title') }}
|
||||||
v-list-item(to='/utilities', v-if='hasPermission(`manage:system`)')
|
v-list-item(to='/utilities', color='primary', v-if='hasPermission(`manage:system`)')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-wrench-outline
|
v-list-item-avatar(size='24'): v-icon mdi-wrench-outline
|
||||||
v-list-item-title {{ $t('admin:utilities.title') }}
|
v-list-item-title {{ $t('admin:utilities.title') }}
|
||||||
v-list-item(to='/webhooks', v-if='hasPermission(`manage:system`)', disabled)
|
v-list-item(to='/webhooks', v-if='hasPermission(`manage:system`)', disabled)
|
||||||
@ -104,16 +107,16 @@
|
|||||||
v-list-item-avatar(size='24'): v-icon mdi-dev-to
|
v-list-item-avatar(size='24'): v-icon mdi-dev-to
|
||||||
v-list-item-title {{ $t('admin:dev.title') }}
|
v-list-item-title {{ $t('admin:dev.title') }}
|
||||||
|
|
||||||
v-list-item(to='/dev-flags')
|
v-list-item(to='/dev-flags', color='primary')
|
||||||
v-list-item-title {{ $t('admin:dev.flags.title') }}
|
v-list-item-title {{ $t('admin:dev.flags.title') }}
|
||||||
v-list-item(href='/graphql')
|
v-list-item(href='/graphql', color='primary')
|
||||||
v-list-item-title GraphQL
|
v-list-item-title GraphQL
|
||||||
//- v-list-item(to='/dev-graphiql')
|
//- v-list-item(to='/dev-graphiql')
|
||||||
//- v-list-item-title {{ $t('admin:dev.graphiql.title') }}
|
//- v-list-item-title {{ $t('admin:dev.graphiql.title') }}
|
||||||
//- v-list-item(to='/dev-voyager')
|
//- v-list-item(to='/dev-voyager')
|
||||||
//- v-list-item-title {{ $t('admin:dev.voyager.title') }}
|
//- v-list-item-title {{ $t('admin:dev.voyager.title') }}
|
||||||
v-divider.my-2
|
v-divider.my-2
|
||||||
v-list-item(to='/contribute')
|
v-list-item(to='/contribute', color='primary')
|
||||||
v-list-item-avatar(size='24'): v-icon mdi-heart-outline
|
v-list-item-avatar(size='24'): v-icon mdi-heart-outline
|
||||||
v-list-item-title {{ $t('admin:contribute.title') }}
|
v-list-item-title {{ $t('admin:contribute.title') }}
|
||||||
|
|
||||||
@ -164,6 +167,7 @@ const router = new VueRouter({
|
|||||||
{ path: '/storage', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-storage.vue') },
|
{ path: '/storage', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-storage.vue') },
|
||||||
{ path: '/api', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-api.vue') },
|
{ path: '/api', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-api.vue') },
|
||||||
{ path: '/mail', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-mail.vue') },
|
{ path: '/mail', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-mail.vue') },
|
||||||
|
{ path: '/ssl', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-ssl.vue') },
|
||||||
{ path: '/system', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-system.vue') },
|
{ path: '/system', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-system.vue') },
|
||||||
{ path: '/utilities', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-utilities.vue') },
|
{ path: '/utilities', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-utilities.vue') },
|
||||||
{ path: '/webhooks', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-webhooks.vue') },
|
{ path: '/webhooks', component: () => import(/* webpackChunkName: "admin" */ './admin/admin-webhooks.vue') },
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
easing='easeOutQuint'
|
easing='easeOutQuint'
|
||||||
)
|
)
|
||||||
v-flex(xs12 md6 lg4 xl3 d-flex)
|
v-flex(xs12 md6 lg4 xl3 d-flex)
|
||||||
v-card.green.lighten-1.dashboard-card.animated.fadeInUp.wait-p2s(dark)
|
v-card.blue.darken-3.dashboard-card.animated.fadeInUp.wait-p2s(dark)
|
||||||
v-card-text
|
v-card-text
|
||||||
v-icon.dashboard-icon mdi-account
|
v-icon.dashboard-icon mdi-account
|
||||||
.overline {{$t('admin:dashboard.users')}}
|
.overline {{$t('admin:dashboard.users')}}
|
||||||
@ -30,7 +30,7 @@
|
|||||||
easing='easeOutQuint'
|
easing='easeOutQuint'
|
||||||
)
|
)
|
||||||
v-flex(xs12 md6 lg4 xl3 d-flex)
|
v-flex(xs12 md6 lg4 xl3 d-flex)
|
||||||
v-card.indigo.lighten-1.dashboard-card.animated.fadeInUp.wait-p4s(dark)
|
v-card.blue.darken-4.dashboard-card.animated.fadeInUp.wait-p4s(dark)
|
||||||
v-card-text
|
v-card-text
|
||||||
v-icon.dashboard-icon mdi-account-group
|
v-icon.dashboard-icon mdi-account-group
|
||||||
.overline {{$t('admin:dashboard.groups')}}
|
.overline {{$t('admin:dashboard.groups')}}
|
||||||
@ -42,11 +42,11 @@
|
|||||||
)
|
)
|
||||||
v-flex(xs12 md6 lg12 xl3 d-flex)
|
v-flex(xs12 md6 lg12 xl3 d-flex)
|
||||||
v-card.dashboard-card.animated.fadeInUp.wait-p6s(
|
v-card.dashboard-card.animated.fadeInUp.wait-p6s(
|
||||||
:class='isLatestVersion ? "teal lighten-2" : "red lighten-2"'
|
:class='isLatestVersion ? "green" : "red lighten-2"'
|
||||||
dark
|
dark
|
||||||
)
|
)
|
||||||
v-btn.btn-animate-wrench(fab, absolute, :right='!$vuetify.rtl', :left='$vuetify.rtl', top, small, light, to='system', v-if='hasPermission(`manage:system`)')
|
v-btn.btn-animate-wrench(fab, absolute, :right='!$vuetify.rtl', :left='$vuetify.rtl', top, small, light, to='system', v-if='hasPermission(`manage:system`)')
|
||||||
v-icon(:color='isLatestVersion ? `teal` : `red darken-4`', small) mdi-wrench
|
v-icon(:color='isLatestVersion ? `green` : `red darken-4`', small) mdi-wrench
|
||||||
v-card-text
|
v-card-text
|
||||||
v-icon.dashboard-icon mdi-blur
|
v-icon.dashboard-icon mdi-blur
|
||||||
.subtitle-1 Wiki.js {{info.currentVersion}}
|
.subtitle-1 Wiki.js {{info.currentVersion}}
|
||||||
|
@ -41,19 +41,26 @@
|
|||||||
persistent-hint
|
persistent-hint
|
||||||
)
|
)
|
||||||
v-divider
|
v-divider
|
||||||
.overline.grey--text.pa-4 {{$t('admin:general.logo')}} #[v-chip.ml-2(label, color='grey', small, outlined) coming soon]
|
.overline.grey--text.pa-4 {{$t('admin:general.logo')}}
|
||||||
v-card-text.pb-4.pl-5
|
.pt-2.pb-7.pl-10.pr-3
|
||||||
v-layout.px-3(row, align-center)
|
.d-flex.align-center
|
||||||
v-avatar(size='100', :color='$vuetify.theme.dark ? `grey darken-2` : `grey lighten-3`', :tile='config.logoIsSquare')
|
v-avatar(size='100', tile)
|
||||||
.ml-4
|
v-img(
|
||||||
v-btn.mr-3(color='teal', depressed, disabled)
|
:src='config.logoUrl'
|
||||||
v-icon(left) mdi-cloud-upload
|
lazy-src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNcWQ8AAdcBKrJda2oAAAAASUVORK5CYII='
|
||||||
span {{$t('admin:general.uploadLogo')}}
|
aspect-ratio='1'
|
||||||
v-btn(color='teal', depressed, disabled)
|
)
|
||||||
v-icon(left) mdi-close
|
.ml-4(style='flex: 1 1 auto;')
|
||||||
span {{$t('admin:general.uploadClear')}}
|
v-text-field(
|
||||||
.caption.mt-3.grey--text {{$t('admin:general.uploadSizeHint', { size: '120x120' })}}
|
outlined
|
||||||
.caption.grey--text {{$t('admin:general.uploadTypesHint', { typeList: 'SVG, PNG', lastType: 'JPG' })}}.
|
:label='$t(`admin:general.logoUrl`)'
|
||||||
|
v-model='config.logoUrl'
|
||||||
|
:hint='$t(`admin:general.logoUrlHint`)'
|
||||||
|
persistent-hint
|
||||||
|
append-icon='mdi-folder-image'
|
||||||
|
@click:append='browseLogo'
|
||||||
|
@keyup.enter='refreshLogo'
|
||||||
|
)
|
||||||
v-divider
|
v-divider
|
||||||
.overline.grey--text.pa-4 {{$t('admin:general.footerCopyright')}}
|
.overline.grey--text.pa-4 {{$t('admin:general.footerCopyright')}}
|
||||||
.px-3.pb-3
|
.px-3.pb-3
|
||||||
@ -236,6 +243,7 @@
|
|||||||
hint='One directive per line.'
|
hint='One directive per line.'
|
||||||
disabled
|
disabled
|
||||||
)
|
)
|
||||||
|
component(:is='activeModal')
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -245,7 +253,17 @@ import { get, sync } from 'vuex-pathify'
|
|||||||
import siteConfigQuery from 'gql/admin/site/site-query-config.gql'
|
import siteConfigQuery from 'gql/admin/site/site-query-config.gql'
|
||||||
import siteUpdateConfigMutation from 'gql/admin/site/site-mutation-save-config.gql'
|
import siteUpdateConfigMutation from 'gql/admin/site/site-mutation-save-config.gql'
|
||||||
|
|
||||||
|
import editorStore from '../../store/editor'
|
||||||
|
|
||||||
|
/* global WIKI */
|
||||||
|
|
||||||
|
WIKI.$store.registerModule('editor', editorStore)
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
i18nOptions: { namespaces: 'editor' },
|
||||||
|
components: {
|
||||||
|
editorModalMedia: () => import(/* webpackChunkName: "editor", webpackMode: "lazy" */ '../editor/editor-modal-media.vue')
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
analyticsServices: [
|
analyticsServices: [
|
||||||
@ -262,8 +280,7 @@ export default {
|
|||||||
analyticsService: '',
|
analyticsService: '',
|
||||||
analyticsId: '',
|
analyticsId: '',
|
||||||
company: '',
|
company: '',
|
||||||
hasLogo: false,
|
logoUrl: '',
|
||||||
logoIsSquare: false,
|
|
||||||
featureAnalytics: false,
|
featureAnalytics: false,
|
||||||
featurePageRatings: false,
|
featurePageRatings: false,
|
||||||
featurePageComments: false,
|
featurePageComments: false,
|
||||||
@ -297,7 +314,9 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
darkMode: get('site/dark'),
|
darkMode: get('site/dark'),
|
||||||
siteTitle: sync('site/title'),
|
siteTitle: sync('site/title'),
|
||||||
company: sync('site/company')
|
logoUrl: sync('site/logoUrl'),
|
||||||
|
company: sync('site/company'),
|
||||||
|
activeModal: sync('editor/activeModal')
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async save () {
|
async save () {
|
||||||
@ -312,8 +331,7 @@ export default {
|
|||||||
analyticsService: _.get(this.config, 'analyticsService', ''),
|
analyticsService: _.get(this.config, 'analyticsService', ''),
|
||||||
analyticsId: _.get(this.config, 'analyticsId', ''),
|
analyticsId: _.get(this.config, 'analyticsId', ''),
|
||||||
company: _.get(this.config, 'company', ''),
|
company: _.get(this.config, 'company', ''),
|
||||||
hasLogo: _.get(this.config, 'hasLogo', false),
|
logoUrl: _.get(this.config, 'logoUrl', ''),
|
||||||
logoIsSquare: _.get(this.config, 'logoIsSquare', false),
|
|
||||||
featurePageRatings: _.get(this.config, 'featurePageRatings', false),
|
featurePageRatings: _.get(this.config, 'featurePageRatings', false),
|
||||||
featurePageComments: _.get(this.config, 'featurePageComments', false),
|
featurePageComments: _.get(this.config, 'featurePageComments', false),
|
||||||
featurePersonalWikis: _.get(this.config, 'featurePersonalWikis', false),
|
featurePersonalWikis: _.get(this.config, 'featurePersonalWikis', false),
|
||||||
@ -337,11 +355,27 @@ export default {
|
|||||||
})
|
})
|
||||||
this.siteTitle = this.config.title
|
this.siteTitle = this.config.title
|
||||||
this.company = this.config.company
|
this.company = this.config.company
|
||||||
|
this.logoUrl = this.config.logoUrl
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.$store.commit('pushGraphError', err)
|
this.$store.commit('pushGraphError', err)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
browseLogo () {
|
||||||
|
this.$store.set('editor/editorKey', 'common')
|
||||||
|
this.activeModal = 'editorModalMedia'
|
||||||
|
},
|
||||||
|
refreshLogo () {
|
||||||
|
this.$forceUpdate()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mounted () {
|
||||||
|
this.$root.$on('editorInsert', opts => {
|
||||||
|
this.config.logoUrl = opts.path
|
||||||
|
})
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
this.$root.$off('editorInsert')
|
||||||
|
},
|
||||||
apollo: {
|
apollo: {
|
||||||
config: {
|
config: {
|
||||||
query: siteConfigQuery,
|
query: siteConfigQuery,
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
img.animated.fadeInUp(src='/svg/icon-process.svg', alt='Rendering', style='width: 80px;')
|
img.animated.fadeInUp(src='/svg/icon-process.svg', alt='Rendering', style='width: 80px;')
|
||||||
.admin-header-title
|
.admin-header-title
|
||||||
.headline.primary--text.animated.fadeInLeft Rendering
|
.headline.primary--text.animated.fadeInLeft Rendering
|
||||||
.subtitle-1.grey--text.animated.fadeInLeft.wait-p4s Configure how content is rendered #[v-chip(label, color='primary', small).white--text coming soon]
|
|
||||||
v-spacer
|
v-spacer
|
||||||
v-btn.mx-3.animated.fadeInDown.wait-p2s(outlined, color='grey', @click='refresh', large)
|
v-btn.mx-3.animated.fadeInDown.wait-p2s(outlined, color='grey', @click='refresh', large)
|
||||||
v-icon mdi-refresh
|
v-icon mdi-refresh
|
||||||
|
173
client/components/admin/admin-ssl.vue
Normal file
173
client/components/admin/admin-ssl.vue
Normal file
@ -0,0 +1,173 @@
|
|||||||
|
<template lang='pug'>
|
||||||
|
v-container(fluid, grid-list-lg)
|
||||||
|
v-layout(row wrap)
|
||||||
|
v-flex(xs12)
|
||||||
|
.admin-header
|
||||||
|
img.animated.fadeInUp(src='/svg/icon-validation.svg', alt='SSL', style='width: 80px;')
|
||||||
|
.admin-header-title
|
||||||
|
.headline.primary--text.animated.fadeInLeft {{ $t('admin:ssl.title') }}
|
||||||
|
.subtitle-1.grey--text.animated.fadeInLeft {{ $t('admin:ssl.subtitle') }}
|
||||||
|
v-spacer
|
||||||
|
v-btn.animated.fadeInDown(color='success', depressed, @click='save', large)
|
||||||
|
v-icon(left) mdi-check
|
||||||
|
span {{$t('common:actions.apply')}}
|
||||||
|
v-form.pt-3
|
||||||
|
v-layout(row wrap)
|
||||||
|
v-flex(lg6 xs12)
|
||||||
|
v-form
|
||||||
|
v-card.animated.fadeInUp
|
||||||
|
v-toolbar(color='primary', dark, dense, flat)
|
||||||
|
v-toolbar-title.subtitle-1 {{ $t('admin:ssl.provider') }}
|
||||||
|
v-card-text
|
||||||
|
v-select(
|
||||||
|
:items='providers'
|
||||||
|
outlined
|
||||||
|
:label='$t(`admin:ssl.provider`)'
|
||||||
|
required
|
||||||
|
:counter='255'
|
||||||
|
v-model='config.provider'
|
||||||
|
prepend-icon='mdi-handshake'
|
||||||
|
:hint='$t(`admin:ssl.providerHint`)'
|
||||||
|
persistent-hint
|
||||||
|
)
|
||||||
|
v-text-field.mt-3(
|
||||||
|
outlined
|
||||||
|
:label='$t(`admin:ssl.domain`)'
|
||||||
|
required
|
||||||
|
:counter='255'
|
||||||
|
v-model='config.domain'
|
||||||
|
prepend-icon='mdi-earth'
|
||||||
|
:hint='$t(`admin:ssl.domainHint`)'
|
||||||
|
persistent-hint
|
||||||
|
:disabled='config.provider === ``'
|
||||||
|
)
|
||||||
|
|
||||||
|
v-card.animated.fadeInUp.wait-p2s.mt-3(v-if='config.provider !== ``')
|
||||||
|
v-toolbar(color='primary', dark, dense, flat)
|
||||||
|
v-toolbar-title.subtitle-1 {{$t('admin:ssl.providerOptions')}}
|
||||||
|
v-card-text ---
|
||||||
|
|
||||||
|
v-flex(lg6 xs12)
|
||||||
|
v-card.animated.fadeInUp.wait-p2s
|
||||||
|
v-toolbar(color='primary', dark, dense, flat)
|
||||||
|
v-toolbar-title.subtitle-1 {{ $t('admin:ssl.ports') }}
|
||||||
|
v-card-text
|
||||||
|
v-row
|
||||||
|
v-col(cols='6')
|
||||||
|
v-text-field(
|
||||||
|
outlined
|
||||||
|
:label='$t(`admin:ssl.httpPort`)'
|
||||||
|
v-model='config.httpPort'
|
||||||
|
prepend-icon='mdi-lock-open-variant-outline'
|
||||||
|
:hint='$t(`admin:ssl.httpPortHint`)'
|
||||||
|
persistent-hint
|
||||||
|
)
|
||||||
|
v-col(cols='6')
|
||||||
|
v-checkbox(
|
||||||
|
:label='$t(`admin:ssl.httpPortRedirect`)'
|
||||||
|
v-model='config.httpRedirect'
|
||||||
|
:hint='$t(`admin:ssl.httpPortRedirectHint`)'
|
||||||
|
:disabled='config.provider === ``'
|
||||||
|
persistent-hint
|
||||||
|
color='primary'
|
||||||
|
)
|
||||||
|
v-col(cols='6')
|
||||||
|
v-text-field(
|
||||||
|
outlined
|
||||||
|
:label='$t(`admin:ssl.httpsPort`)'
|
||||||
|
v-model='config.httpsPort'
|
||||||
|
prepend-icon='mdi-lock'
|
||||||
|
:hint='$t(`admin:ssl.httpsPortHint`)'
|
||||||
|
persistent-hint
|
||||||
|
:disabled='config.provider === ``'
|
||||||
|
)
|
||||||
|
v-card-text.grey(:class='$vuetify.theme.dark ? `darken-4-l5` : `lighten-4`')
|
||||||
|
.caption {{$t(`admin:ssl.writableConfigFileWarning`)}}
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import _ from 'lodash'
|
||||||
|
import siteConfigQuery from 'gql/admin/site/site-query-config.gql'
|
||||||
|
import siteUpdateConfigMutation from 'gql/admin/site/site-mutation-save-config.gql'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
config: {
|
||||||
|
provider: '',
|
||||||
|
domain: '',
|
||||||
|
httpPort: 3000,
|
||||||
|
httpPortRedirect: true,
|
||||||
|
httpsPort: 443
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
providers () {
|
||||||
|
return [
|
||||||
|
{ text: this.$t('admin:ssl.providerDisabled'), value: '' },
|
||||||
|
{ text: this.$t('admin:ssl.providerLetsEncrypt'), value: 'letsencrypt' },
|
||||||
|
{ text: this.$t('admin:ssl.providerCustomCertificate'), value: 'custom' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async save () {
|
||||||
|
try {
|
||||||
|
await this.$apollo.mutate({
|
||||||
|
mutation: siteUpdateConfigMutation,
|
||||||
|
variables: {
|
||||||
|
host: _.get(this.config, 'host', ''),
|
||||||
|
title: _.get(this.config, 'title', ''),
|
||||||
|
description: _.get(this.config, 'description', ''),
|
||||||
|
robots: _.get(this.config, 'robots', []),
|
||||||
|
analyticsService: _.get(this.config, 'analyticsService', ''),
|
||||||
|
analyticsId: _.get(this.config, 'analyticsId', ''),
|
||||||
|
company: _.get(this.config, 'company', ''),
|
||||||
|
hasLogo: _.get(this.config, 'hasLogo', false),
|
||||||
|
logoIsSquare: _.get(this.config, 'logoIsSquare', false),
|
||||||
|
featurePageRatings: _.get(this.config, 'featurePageRatings', false),
|
||||||
|
featurePageComments: _.get(this.config, 'featurePageComments', false),
|
||||||
|
featurePersonalWikis: _.get(this.config, 'featurePersonalWikis', false),
|
||||||
|
securityIframe: _.get(this.config, 'securityIframe', false),
|
||||||
|
securityReferrerPolicy: _.get(this.config, 'securityReferrerPolicy', false),
|
||||||
|
securityTrustProxy: _.get(this.config, 'securityTrustProxy', false),
|
||||||
|
securitySRI: _.get(this.config, 'securitySRI', false),
|
||||||
|
securityHSTS: _.get(this.config, 'securityHSTS', false),
|
||||||
|
securityHSTSDuration: _.get(this.config, 'securityHSTSDuration', 0),
|
||||||
|
securityCSP: _.get(this.config, 'securityCSP', false),
|
||||||
|
securityCSPDirectives: _.get(this.config, 'securityCSPDirectives', '')
|
||||||
|
},
|
||||||
|
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) {
|
||||||
|
this.$store.commit('pushGraphError', err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 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')
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang='scss'>
|
||||||
|
|
||||||
|
</style>
|
@ -19,28 +19,30 @@
|
|||||||
v-layout(row)
|
v-layout(row)
|
||||||
v-flex(xs6, md4)
|
v-flex(xs6, md4)
|
||||||
v-toolbar.nav-header-inner.pl-3(color='black', dark, flat)
|
v-toolbar.nav-header-inner.pl-3(color='black', dark, flat)
|
||||||
v-menu(open-on-hover, offset-y, bottom, left, min-width='250', transition='slide-y-transition')
|
v-avatar(tile, size='34', @click='goHome')
|
||||||
template(v-slot:activator='{ on }')
|
v-img.org-logo(:src='logoUrl')
|
||||||
v-app-bar-nav-icon.btn-animate-app(v-on='on', :class='$vuetify.rtl ? `mx-0` : ``')
|
//- v-menu(open-on-hover, offset-y, bottom, left, min-width='250', transition='slide-y-transition')
|
||||||
v-icon mdi-menu
|
//- template(v-slot:activator='{ on }')
|
||||||
v-list(nav, :light='!$vuetify.theme.dark', :dark='$vuetify.theme.dark', :class='$vuetify.theme.dark ? `grey darken-4` : ``')
|
//- v-app-bar-nav-icon.btn-animate-app(v-on='on', :class='$vuetify.rtl ? `mx-0` : ``')
|
||||||
v-list-item.pl-4(href='/')
|
//- v-icon mdi-menu
|
||||||
v-list-item-avatar(size='24'): v-icon(color='blue') mdi-home
|
//- v-list(nav, :light='!$vuetify.theme.dark', :dark='$vuetify.theme.dark', :class='$vuetify.theme.dark ? `grey darken-4` : ``')
|
||||||
v-list-item-title.body-2 {{$t('common:header.home')}}
|
//- v-list-item.pl-4(href='/')
|
||||||
v-list-item.pl-4(@click='')
|
//- v-list-item-avatar(size='24'): v-icon(color='blue') mdi-home
|
||||||
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-file-tree
|
//- v-list-item-title.body-2 {{$t('common:header.home')}}
|
||||||
v-list-item-content
|
//- v-list-item.pl-4(@click='')
|
||||||
v-list-item-title.body-2.grey--text.text--ligten-2 {{$t('common:header.siteMap')}}
|
//- v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-file-tree
|
||||||
v-list-item-subtitle.overline.grey--text.text--lighten-2 Coming soon
|
//- v-list-item-content
|
||||||
v-list-item.pl-4(href='/t')
|
//- v-list-item-title.body-2.grey--text.text--ligten-2 {{$t('common:header.siteMap')}}
|
||||||
v-list-item-avatar(size='24'): v-icon(color='teal') mdi-tag-multiple
|
//- v-list-item-subtitle.overline.grey--text.text--lighten-2 Coming soon
|
||||||
v-list-item-title.body-2 {{$t('common:header.browseTags')}}
|
//- v-list-item.pl-4(href='/t')
|
||||||
v-list-item.pl-4(@click='assets')
|
//- v-list-item-avatar(size='24'): v-icon(color='teal') mdi-tag-multiple
|
||||||
v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-folder-multiple-image
|
//- v-list-item-title.body-2 {{$t('common:header.browseTags')}}
|
||||||
v-list-item-content
|
//- v-list-item.pl-4(@click='assets')
|
||||||
v-list-item-title.body-2.grey--text.text--ligten-2 {{$t('common:header.imagesFiles')}}
|
//- v-list-item-avatar(size='24'): v-icon(color='grey lighten-2') mdi-folder-multiple-image
|
||||||
v-list-item-subtitle.overline.grey--text.text--lighten-2 Coming soon
|
//- v-list-item-content
|
||||||
v-toolbar-title(:class='{ "mx-2": $vuetify.breakpoint.mdAndUp, "mx-0": $vuetify.breakpoint.smAndDown }')
|
//- v-list-item-title.body-2.grey--text.text--ligten-2 {{$t('common:header.imagesFiles')}}
|
||||||
|
//- v-list-item-subtitle.overline.grey--text.text--lighten-2 Coming soon
|
||||||
|
v-toolbar-title(:class='{ "mx-3": $vuetify.breakpoint.mdAndUp, "mx-0": $vuetify.breakpoint.smAndDown }')
|
||||||
span.subheading {{title}}
|
span.subheading {{title}}
|
||||||
v-flex(md4, v-if='$vuetify.breakpoint.mdAndUp')
|
v-flex(md4, v-if='$vuetify.breakpoint.mdAndUp')
|
||||||
v-toolbar.nav-header-inner(color='black', dark, flat)
|
v-toolbar.nav-header-inner(color='black', dark, flat)
|
||||||
@ -197,6 +199,12 @@
|
|||||||
page-selector(mode='create', v-model='newPageModal', :open-handler='pageNewCreate', :locale='locale')
|
page-selector(mode='create', v-model='newPageModal', :open-handler='pageNewCreate', :locale='locale')
|
||||||
page-selector(mode='move', v-model='movePageModal', :open-handler='pageMoveRename', :path='path', :locale='locale')
|
page-selector(mode='move', v-model='movePageModal', :open-handler='pageMoveRename', :path='path', :locale='locale')
|
||||||
page-delete(v-model='deletePageModal', v-if='path && path.length')
|
page-delete(v-model='deletePageModal', v-if='path && path.length')
|
||||||
|
|
||||||
|
.nav-header-dev(v-if='isDevMode')
|
||||||
|
v-icon mdi-alert
|
||||||
|
div
|
||||||
|
.overline DEVELOPMENT VERSION
|
||||||
|
.overline This code base is NOT for production use!
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -206,7 +214,7 @@ import Cookies from 'js-cookie'
|
|||||||
|
|
||||||
import movePageMutation from 'gql/common/common-pages-mutation-move.gql'
|
import movePageMutation from 'gql/common/common-pages-mutation-move.gql'
|
||||||
|
|
||||||
/* global siteLangs */
|
/* global siteConfig, siteLangs */
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@ -230,7 +238,8 @@ export default {
|
|||||||
newPageModal: false,
|
newPageModal: false,
|
||||||
movePageModal: false,
|
movePageModal: false,
|
||||||
deletePageModal: false,
|
deletePageModal: false,
|
||||||
locales: siteLangs
|
locales: siteLangs,
|
||||||
|
isDevMode: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -241,6 +250,7 @@ export default {
|
|||||||
searchRestrictPath: sync('site/searchRestrictPath'),
|
searchRestrictPath: sync('site/searchRestrictPath'),
|
||||||
isLoading: get('isLoading'),
|
isLoading: get('isLoading'),
|
||||||
title: get('site/title'),
|
title: get('site/title'),
|
||||||
|
logoUrl: get('site/logoUrl'),
|
||||||
path: get('page/path'),
|
path: get('page/path'),
|
||||||
locale: get('page/locale'),
|
locale: get('page/locale'),
|
||||||
mode: get('page/mode'),
|
mode: get('page/mode'),
|
||||||
@ -292,6 +302,7 @@ export default {
|
|||||||
this.$root.$on('pageDelete', () => {
|
this.$root.$on('pageDelete', () => {
|
||||||
this.pageDelete()
|
this.pageDelete()
|
||||||
})
|
})
|
||||||
|
this.isDevMode = siteConfig.devMode === true
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
searchFocus () {
|
searchFocus () {
|
||||||
@ -388,6 +399,9 @@ export default {
|
|||||||
logout () {
|
logout () {
|
||||||
Cookies.remove('jwt')
|
Cookies.remove('jwt')
|
||||||
window.location.assign('/')
|
window.location.assign('/')
|
||||||
|
},
|
||||||
|
goHome () {
|
||||||
|
window.location.assign('/')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -410,6 +424,10 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.org-logo {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
&-inner {
|
&-inner {
|
||||||
.v-toolbar__content {
|
.v-toolbar__content {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -439,6 +457,24 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-dev {
|
||||||
|
background-color: mc('red', '600');
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 255px;
|
||||||
|
padding: 5px 15px;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.v-icon {
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overline:nth-child(2) {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navHeaderSearch {
|
.navHeaderSearch {
|
||||||
|
@ -578,6 +578,20 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.is-editor-common {
|
||||||
|
top: 64px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100vh - 64px);
|
||||||
|
|
||||||
|
@include until($tablet) {
|
||||||
|
top: 56px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100vh - 56px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.filepond--root {
|
.filepond--root {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,7 @@ mutation (
|
|||||||
$analyticsService: String!
|
$analyticsService: String!
|
||||||
$analyticsId: String!
|
$analyticsId: String!
|
||||||
$company: String!
|
$company: String!
|
||||||
$hasLogo: Boolean!
|
$logoUrl: String!
|
||||||
$logoIsSquare: Boolean!
|
|
||||||
$featurePageRatings: Boolean!
|
$featurePageRatings: Boolean!
|
||||||
$featurePageComments: Boolean!
|
$featurePageComments: Boolean!
|
||||||
$featurePersonalWikis: Boolean!
|
$featurePersonalWikis: Boolean!
|
||||||
@ -29,8 +28,7 @@ mutation (
|
|||||||
analyticsService: $analyticsService,
|
analyticsService: $analyticsService,
|
||||||
analyticsId: $analyticsId,
|
analyticsId: $analyticsId,
|
||||||
company: $company,
|
company: $company,
|
||||||
hasLogo: $hasLogo,
|
logoUrl: $logoUrl,
|
||||||
logoIsSquare: $logoIsSquare,
|
|
||||||
featurePageRatings: $featurePageRatings,
|
featurePageRatings: $featurePageRatings,
|
||||||
featurePageComments: $featurePageComments,
|
featurePageComments: $featurePageComments,
|
||||||
featurePersonalWikis: $featurePersonalWikis,
|
featurePersonalWikis: $featurePersonalWikis,
|
||||||
|
@ -8,8 +8,7 @@
|
|||||||
analyticsService
|
analyticsService
|
||||||
analyticsId
|
analyticsId
|
||||||
company
|
company
|
||||||
hasLogo
|
logoUrl
|
||||||
logoIsSquare
|
|
||||||
featurePageRatings
|
featurePageRatings
|
||||||
featurePageComments
|
featurePageComments
|
||||||
featurePersonalWikis
|
featurePersonalWikis
|
||||||
|
@ -5,8 +5,10 @@
|
|||||||
@import "base/animation";
|
@import "base/animation";
|
||||||
|
|
||||||
@import '~vuescroll/dist/vuescroll.css';
|
@import '~vuescroll/dist/vuescroll.css';
|
||||||
|
@import '~katex/dist/katex.min.css';
|
||||||
@import '~diff2html/dist/diff2html.min.css';
|
@import '~diff2html/dist/diff2html.min.css';
|
||||||
|
|
||||||
|
@import 'components/katex';
|
||||||
@import 'components/v-btn';
|
@import 'components/v-btn';
|
||||||
@import 'components/v-data-table';
|
@import 'components/v-data-table';
|
||||||
@import 'components/v-dialog';
|
@import 'components/v-dialog';
|
||||||
|
4
client/scss/components/katex.scss
Normal file
4
client/scss/components/katex.scss
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.v-application .katex .accent {
|
||||||
|
background-color: inherit !important;
|
||||||
|
border-color: inherit !important;
|
||||||
|
}
|
1
client/static/svg/icon-validation.svg
Normal file
1
client/static/svg/icon-validation.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="96px" height="96px"><linearGradient id="K7gJwCzSKQrggg~9x8k6Ya" x1="29" x2="29" y1="5.5" y2="54.82" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#1a6dff"/><stop offset="1" stop-color="#c822ff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Ya)" d="M12,49V29c0-1.654,1.346-3,3-3h28c1.654,0,3,1.346,3,3v12h2V29c0-2.757-2.243-5-5-5h-3v-1 c0-1.654-1.346-3-3-3v-6c0-4.411-3.589-8-8-8s-8,3.589-8,8v6c-1.654,0-3,1.346-3,3v1h-3c-2.757,0-5,2.243-5,5v20 c0,2.757,2.243,5,5,5h23v-2H15C13.346,52,12,50.654,12,49z M38,23v1h-4v-1c0-0.552,0.448-1,1-1h2C37.552,22,38,22.448,38,23z M23,14 c0-3.309,2.691-6,6-6s6,2.691,6,6v6c-1.654,0-3,1.346-3,3v1h-6v-1c0-1.654-1.346-3-3-3V14z M20,23c0-0.552,0.448-1,1-1h2 c0.552,0,1,0.448,1,1v1h-4V23z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yb" x1="45.001" x2="45.001" y1="5.5" y2="54.82" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#1a6dff"/><stop offset="1" stop-color="#c822ff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yb)" d="M48.788 45.189L43.984 49.993 41.191 47.282 39.799 48.718 44.006 52.8 50.202 46.604z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yc" x1="26" x2="26" y1="5.5" y2="54.82" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#1a6dff"/><stop offset="1" stop-color="#c822ff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yc)" d="M15 48H37V50H15z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yd" x1="19" x2="19" y1="5.5" y2="54.82" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#1a6dff"/><stop offset="1" stop-color="#c822ff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yd)" d="M23,39c0-2.206-1.794-4-4-4s-4,1.794-4,4s1.794,4,4,4S23,41.206,23,39z M17,39 c0-1.103,0.897-2,2-2s2,0.897,2,2s-0.897,2-2,2S17,40.103,17,39z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Ye" x1="29" x2="29" y1="5.5" y2="54.82" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#1a6dff"/><stop offset="1" stop-color="#c822ff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Ye)" d="M29,35c-2.206,0-4,1.794-4,4s1.794,4,4,4s4-1.794,4-4S31.206,35,29,35z M29,41 c-1.103,0-2-0.897-2-2s0.897-2,2-2s2,0.897,2,2S30.103,41,29,41z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yf" x1="39" x2="39" y1="5.5" y2="54.82" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#1a6dff"/><stop offset="1" stop-color="#c822ff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yf)" d="M43,39c0-2.206-1.794-4-4-4s-4,1.794-4,4s1.794,4,4,4S43,41.206,43,39z M39,41 c-1.103,0-2-0.897-2-2s0.897-2,2-2s2,0.897,2,2S40.103,41,39,41z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yg" x1="45" x2="45" y1="39.667" y2="58.252" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#6dc7ff"/><stop offset="1" stop-color="#e6abff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yg)" d="M45,58c-4.963,0-9-4.037-9-9s4.037-9,9-9s9,4.037,9,9S49.963,58,45,58z M45,42 c-3.859,0-7,3.141-7,7s3.141,7,7,7s7-3.141,7-7S48.859,42,45,42z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yh" x1="22" x2="22" y1="21.583" y2="24.172" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#6dc7ff"/><stop offset="1" stop-color="#e6abff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yh)" d="M24,24h-4v-1c0-0.552,0.448-1,1-1h2c0.552,0,1,0.448,1,1V24z"/><linearGradient id="K7gJwCzSKQrggg~9x8k6Yi" x1="36" x2="36" y1="21.583" y2="24.172" gradientUnits="userSpaceOnUse" spreadMethod="reflect"><stop offset="0" stop-color="#6dc7ff"/><stop offset="1" stop-color="#e6abff"/></linearGradient><path fill="url(#K7gJwCzSKQrggg~9x8k6Yi)" d="M38,24h-4v-1c0-0.552,0.448-1,1-1h2c0.552,0,1,0.448,1,1V24z"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
@ -7,6 +7,7 @@ const state = {
|
|||||||
dark: siteConfig.darkMode,
|
dark: siteConfig.darkMode,
|
||||||
mascot: true,
|
mascot: true,
|
||||||
title: siteConfig.title,
|
title: siteConfig.title,
|
||||||
|
logoUrl: siteConfig.logoUrl,
|
||||||
search: '',
|
search: '',
|
||||||
searchIsFocused: false,
|
searchIsFocused: false,
|
||||||
searchIsLoading: false,
|
searchIsLoading: false,
|
||||||
|
@ -29,7 +29,13 @@ html(lang=siteConfig.lang)
|
|||||||
|
|
||||||
//- Site Properties
|
//- Site Properties
|
||||||
script.
|
script.
|
||||||
var siteConfig = !{JSON.stringify(siteConfig)}; var siteLangs = !{JSON.stringify(langs)}
|
var siteConfig = !{JSON.stringify(siteConfig)}
|
||||||
|
var siteLangs = !{JSON.stringify(langs)}
|
||||||
|
|
||||||
|
//- Dev Mode Warning
|
||||||
|
if devMode
|
||||||
|
script.
|
||||||
|
siteConfig.devMode = true
|
||||||
|
|
||||||
//- Icon Set
|
//- Icon Set
|
||||||
if config.theming.iconset === 'fa'
|
if config.theming.iconset === 'fa'
|
||||||
|
72
package.json
72
package.json
@ -4,6 +4,7 @@
|
|||||||
"releaseDate": "2019-01-01T01:01:01.000Z",
|
"releaseDate": "2019-01-01T01:01:01.000Z",
|
||||||
"description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
|
"description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
|
||||||
"main": "wiki.js",
|
"main": "wiki.js",
|
||||||
|
"dev": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server",
|
"start": "node server",
|
||||||
"dev": "node dev",
|
"dev": "node dev",
|
||||||
@ -39,10 +40,10 @@
|
|||||||
"@exlinc/keycloak-passport": "1.0.2",
|
"@exlinc/keycloak-passport": "1.0.2",
|
||||||
"algoliasearch": "3.35.1",
|
"algoliasearch": "3.35.1",
|
||||||
"apollo-fetch": "0.7.0",
|
"apollo-fetch": "0.7.0",
|
||||||
"apollo-server": "2.9.12",
|
"apollo-server": "2.9.13",
|
||||||
"apollo-server-express": "2.9.12",
|
"apollo-server-express": "2.9.13",
|
||||||
"auto-load": "3.0.4",
|
"auto-load": "3.0.4",
|
||||||
"aws-sdk": "2.580.0",
|
"aws-sdk": "2.590.0",
|
||||||
"azure-search-client": "3.1.5",
|
"azure-search-client": "3.1.5",
|
||||||
"bcryptjs-then": "1.0.1",
|
"bcryptjs-then": "1.0.1",
|
||||||
"bluebird": "3.7.2",
|
"bluebird": "3.7.2",
|
||||||
@ -57,7 +58,7 @@
|
|||||||
"cookie-parser": "1.4.4",
|
"cookie-parser": "1.4.4",
|
||||||
"cors": "2.8.5",
|
"cors": "2.8.5",
|
||||||
"custom-error-instance": "2.1.1",
|
"custom-error-instance": "2.1.1",
|
||||||
"dependency-graph": "0.8.0",
|
"dependency-graph": "0.8.1",
|
||||||
"diff": "4.0.1",
|
"diff": "4.0.1",
|
||||||
"diff2html": "2.12.1",
|
"diff2html": "2.12.1",
|
||||||
"dotize": "0.3.0",
|
"dotize": "0.3.0",
|
||||||
@ -77,17 +78,18 @@
|
|||||||
"graphql-subscriptions": "1.1.0",
|
"graphql-subscriptions": "1.1.0",
|
||||||
"graphql-tools": "4.0.6",
|
"graphql-tools": "4.0.6",
|
||||||
"he": "1.2.0",
|
"he": "1.2.0",
|
||||||
"highlight.js": "9.16.2",
|
"highlight.js": "9.17.1",
|
||||||
"i18next": "19.0.1",
|
"i18next": "19.0.2",
|
||||||
"i18next-express-middleware": "1.8.2",
|
"i18next-express-middleware": "1.9.1",
|
||||||
"i18next-node-fs-backend": "2.1.3",
|
"i18next-node-fs-backend": "2.1.3",
|
||||||
"image-size": "0.8.3",
|
"image-size": "0.8.3",
|
||||||
"js-base64": "2.5.1",
|
"js-base64": "2.5.1",
|
||||||
"js-binary": "1.2.0",
|
"js-binary": "1.2.0",
|
||||||
"js-yaml": "3.13.1",
|
"js-yaml": "3.13.1",
|
||||||
"jsonwebtoken": "8.5.1",
|
"jsonwebtoken": "8.5.1",
|
||||||
|
"katex": "0.11.1",
|
||||||
"klaw": "3.0.0",
|
"klaw": "3.0.0",
|
||||||
"knex": "0.20.3",
|
"knex": "0.20.4",
|
||||||
"lodash": "4.17.15",
|
"lodash": "4.17.15",
|
||||||
"markdown-it": "10.0.0",
|
"markdown-it": "10.0.0",
|
||||||
"markdown-it-abbr": "1.0.4",
|
"markdown-it-abbr": "1.0.4",
|
||||||
@ -106,17 +108,17 @@
|
|||||||
"mime-types": "2.1.25",
|
"mime-types": "2.1.25",
|
||||||
"moment": "2.24.0",
|
"moment": "2.24.0",
|
||||||
"moment-timezone": "0.5.27",
|
"moment-timezone": "0.5.27",
|
||||||
"mongodb": "3.3.5",
|
"mongodb": "3.4.0",
|
||||||
"mssql": "6.0.1",
|
"mssql": "6.0.1",
|
||||||
"multer": "1.4.2",
|
"multer": "1.4.2",
|
||||||
"mysql2": "2.0.1",
|
"mysql2": "2.0.2",
|
||||||
"nanoid": "2.1.7",
|
"nanoid": "2.1.7",
|
||||||
"node-2fa": "1.1.2",
|
"node-2fa": "1.1.2",
|
||||||
"node-cache": "5.0.2",
|
"node-cache": "5.1.0",
|
||||||
"nodemailer": "6.3.1",
|
"nodemailer": "6.4.2",
|
||||||
"objection": "1.6.11",
|
"objection": "1.6.11",
|
||||||
"passport": "0.4.0",
|
"passport": "0.4.1",
|
||||||
"passport-auth0": "1.3.0",
|
"passport-auth0": "1.3.1",
|
||||||
"passport-azure-ad": "4.2.0",
|
"passport-azure-ad": "4.2.0",
|
||||||
"passport-cas": "0.1.1",
|
"passport-cas": "0.1.1",
|
||||||
"passport-discord": "0.1.3",
|
"passport-discord": "0.1.3",
|
||||||
@ -150,9 +152,9 @@
|
|||||||
"scim-query-filter-parser": "2.0.2",
|
"scim-query-filter-parser": "2.0.2",
|
||||||
"semver": "6.3.0",
|
"semver": "6.3.0",
|
||||||
"serve-favicon": "2.5.0",
|
"serve-favicon": "2.5.0",
|
||||||
"simple-git": "1.126.0",
|
"simple-git": "1.129.0",
|
||||||
"solr-node": "1.2.1",
|
"solr-node": "1.2.1",
|
||||||
"sqlite3": "4.1.0",
|
"sqlite3": "4.1.1",
|
||||||
"striptags": "3.1.1",
|
"striptags": "3.1.1",
|
||||||
"subscriptions-transport-ws": "0.9.16",
|
"subscriptions-transport-ws": "0.9.16",
|
||||||
"tar-fs": "2.0.0",
|
"tar-fs": "2.0.0",
|
||||||
@ -165,8 +167,8 @@
|
|||||||
"yargs": "15.0.2"
|
"yargs": "15.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.7.4",
|
"@babel/cli": "^7.7.5",
|
||||||
"@babel/core": "^7.7.4",
|
"@babel/core": "^7.7.5",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
"@babel/plugin-proposal-class-properties": "^7.7.4",
|
||||||
"@babel/plugin-proposal-decorators": "^7.7.4",
|
"@babel/plugin-proposal-decorators": "^7.7.4",
|
||||||
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
|
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
|
||||||
@ -177,22 +179,22 @@
|
|||||||
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
||||||
"@babel/plugin-syntax-import-meta": "^7.7.4",
|
"@babel/plugin-syntax-import-meta": "^7.7.4",
|
||||||
"@babel/polyfill": "^7.7.0",
|
"@babel/polyfill": "^7.7.0",
|
||||||
"@babel/preset-env": "^7.7.4",
|
"@babel/preset-env": "^7.7.6",
|
||||||
"@mdi/font": "4.6.95",
|
"@mdi/font": "4.7.95",
|
||||||
"@panter/vue-i18next": "0.15.1",
|
"@panter/vue-i18next": "0.15.1",
|
||||||
"@requarks/ckeditor5": "12.4.0-wiki.14",
|
"@requarks/ckeditor5": "12.4.0-wiki.14",
|
||||||
"@vue/babel-preset-app": "4.1.1",
|
"@vue/babel-preset-app": "4.1.1",
|
||||||
"animate-sass": "0.8.2",
|
"animate-sass": "0.8.2",
|
||||||
"animated-number-vue": "1.0.0",
|
"animated-number-vue": "1.0.0",
|
||||||
"apollo-cache-inmemory": "1.6.3",
|
"apollo-cache-inmemory": "1.6.5",
|
||||||
"apollo-client": "2.6.4",
|
"apollo-client": "2.6.8",
|
||||||
"apollo-link": "1.2.13",
|
"apollo-link": "1.2.13",
|
||||||
"apollo-link-batch-http": "1.2.13",
|
"apollo-link-batch-http": "1.2.13",
|
||||||
"apollo-link-error": "1.1.12",
|
"apollo-link-error": "1.1.12",
|
||||||
"apollo-link-http": "1.5.16",
|
"apollo-link-http": "1.5.16",
|
||||||
"apollo-link-persisted-queries": "0.2.2",
|
"apollo-link-persisted-queries": "0.2.2",
|
||||||
"apollo-link-ws": "1.0.19",
|
"apollo-link-ws": "1.0.19",
|
||||||
"apollo-utilities": "1.3.2",
|
"apollo-utilities": "1.3.3",
|
||||||
"autoprefixer": "9.7.3",
|
"autoprefixer": "9.7.3",
|
||||||
"babel-eslint": "10.0.3",
|
"babel-eslint": "10.0.3",
|
||||||
"babel-jest": "24.9.0",
|
"babel-jest": "24.9.0",
|
||||||
@ -206,26 +208,26 @@
|
|||||||
"clean-webpack-plugin": "3.0.0",
|
"clean-webpack-plugin": "3.0.0",
|
||||||
"clipboard": "2.0.4",
|
"clipboard": "2.0.4",
|
||||||
"codemirror": "5.49.2",
|
"codemirror": "5.49.2",
|
||||||
"copy-webpack-plugin": "5.0.5",
|
"copy-webpack-plugin": "5.1.1",
|
||||||
"core-js": "3.4.5",
|
"core-js": "3.5.0",
|
||||||
"css-loader": "3.2.0",
|
"css-loader": "3.3.2",
|
||||||
"cssnano": "4.1.10",
|
"cssnano": "4.1.10",
|
||||||
"duplicate-package-checker-webpack-plugin": "3.0.0",
|
"duplicate-package-checker-webpack-plugin": "3.0.0",
|
||||||
"epic-spinners": "1.1.0",
|
"epic-spinners": "1.1.0",
|
||||||
"eslint": "6.7.2",
|
"eslint": "6.7.2",
|
||||||
"eslint-config-requarks": "1.0.7",
|
"eslint-config-requarks": "1.0.7",
|
||||||
"eslint-config-standard": "14.1.0",
|
"eslint-config-standard": "14.1.0",
|
||||||
"eslint-plugin-import": "2.18.2",
|
"eslint-plugin-import": "2.19.1",
|
||||||
"eslint-plugin-node": "10.0.0",
|
"eslint-plugin-node": "10.0.0",
|
||||||
"eslint-plugin-promise": "4.2.1",
|
"eslint-plugin-promise": "4.2.1",
|
||||||
"eslint-plugin-standard": "4.0.1",
|
"eslint-plugin-standard": "4.0.1",
|
||||||
"eslint-plugin-vue": "6.0.1",
|
"eslint-plugin-vue": "6.0.1",
|
||||||
"fibers": "4.0.2",
|
"fibers": "4.0.2",
|
||||||
"file-loader": "5.0.2",
|
"file-loader": "5.0.2",
|
||||||
"filepond": "4.7.4",
|
"filepond": "4.9.2",
|
||||||
"filepond-plugin-file-validate-type": "1.2.4",
|
"filepond-plugin-file-validate-type": "1.2.4",
|
||||||
"filesize.js": "2.0.0",
|
"filesize.js": "2.0.0",
|
||||||
"graphql-persisted-document-loader": "1.0.1",
|
"graphql-persisted-document-loader": "2.0.0",
|
||||||
"graphql-tag": "^2.10.1",
|
"graphql-tag": "^2.10.1",
|
||||||
"hammerjs": "2.0.8",
|
"hammerjs": "2.0.8",
|
||||||
"html-webpack-plugin": "4.0.0-beta.8",
|
"html-webpack-plugin": "4.0.0-beta.8",
|
||||||
@ -259,12 +261,12 @@
|
|||||||
"script-ext-html-webpack-plugin": "2.1.4",
|
"script-ext-html-webpack-plugin": "2.1.4",
|
||||||
"simple-progress-webpack-plugin": "1.1.2",
|
"simple-progress-webpack-plugin": "1.1.2",
|
||||||
"style-loader": "1.0.1",
|
"style-loader": "1.0.1",
|
||||||
"terser": "4.4.0",
|
"terser": "4.4.2",
|
||||||
"twemoji-awesome": "1.0.6",
|
"twemoji-awesome": "1.0.6",
|
||||||
"url-loader": "3.0.0",
|
"url-loader": "3.0.0",
|
||||||
"velocity-animate": "1.5.2",
|
"velocity-animate": "1.5.2",
|
||||||
"viz.js": "2.1.2",
|
"viz.js": "2.1.2",
|
||||||
"vue": "2.6.10",
|
"vue": "2.6.11",
|
||||||
"vue-apollo": "3.0.2",
|
"vue-apollo": "3.0.2",
|
||||||
"vue-chartjs": "3.5.0",
|
"vue-chartjs": "3.5.0",
|
||||||
"vue-clipboards": "1.3.0",
|
"vue-clipboards": "1.3.0",
|
||||||
@ -274,12 +276,12 @@
|
|||||||
"vue-moment": "4.0.0",
|
"vue-moment": "4.0.0",
|
||||||
"vue-router": "3.1.3",
|
"vue-router": "3.1.3",
|
||||||
"vue-status-indicator": "1.2.1",
|
"vue-status-indicator": "1.2.1",
|
||||||
"vue-template-compiler": "2.6.10",
|
"vue-template-compiler": "2.6.11",
|
||||||
"vue2-animate": "2.1.3",
|
"vue2-animate": "2.1.3",
|
||||||
"vuedraggable": "2.23.2",
|
"vuedraggable": "2.23.2",
|
||||||
"vuescroll": "4.14.4",
|
"vuescroll": "4.14.4",
|
||||||
"vuetify": "2.1.12",
|
"vuetify": "2.1.14",
|
||||||
"vuetify-loader": "1.4.2",
|
"vuetify-loader": "1.4.3",
|
||||||
"vuex": "3.1.2",
|
"vuex": "3.1.2",
|
||||||
"vuex-pathify": "1.4.0",
|
"vuex-pathify": "1.4.0",
|
||||||
"vuex-persistedstate": "2.7.0",
|
"vuex-persistedstate": "2.7.0",
|
||||||
@ -293,7 +295,7 @@
|
|||||||
"webpackbar": "4.0.0",
|
"webpackbar": "4.0.0",
|
||||||
"whatwg-fetch": "3.0.0",
|
"whatwg-fetch": "3.0.0",
|
||||||
"write-file-webpack-plugin": "4.5.1",
|
"write-file-webpack-plugin": "4.5.1",
|
||||||
"xterm": "4.2.0",
|
"xterm": "4.3.0",
|
||||||
"zxcvbn": "4.4.2"
|
"zxcvbn": "4.4.2"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
|
@ -38,6 +38,7 @@ defaults:
|
|||||||
clientId: ''
|
clientId: ''
|
||||||
isEnabled: false
|
isEnabled: false
|
||||||
title: Wiki.js
|
title: Wiki.js
|
||||||
|
logoUrl: https://static.requarks.io/logo/wikijs-butterfly.svg
|
||||||
theming:
|
theming:
|
||||||
theme: 'default'
|
theme: 'default'
|
||||||
iconset: 'md'
|
iconset: 'md'
|
||||||
|
@ -74,6 +74,7 @@ module.exports = {
|
|||||||
WIKI.data = appdata
|
WIKI.data = appdata
|
||||||
WIKI.version = packageInfo.version
|
WIKI.version = packageInfo.version
|
||||||
WIKI.releaseDate = packageInfo.releaseDate
|
WIKI.releaseDate = packageInfo.releaseDate
|
||||||
|
WIKI.devMode = (packageInfo.dev === true)
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -15,8 +15,8 @@ module.exports = {
|
|||||||
host: WIKI.config.host,
|
host: WIKI.config.host,
|
||||||
title: WIKI.config.title,
|
title: WIKI.config.title,
|
||||||
company: WIKI.config.company,
|
company: WIKI.config.company,
|
||||||
|
logoUrl: WIKI.config.logoUrl,
|
||||||
...WIKI.config.seo,
|
...WIKI.config.seo,
|
||||||
...WIKI.config.logo,
|
|
||||||
...WIKI.config.features,
|
...WIKI.config.features,
|
||||||
...WIKI.config.security
|
...WIKI.config.security
|
||||||
}
|
}
|
||||||
@ -34,10 +34,7 @@ module.exports = {
|
|||||||
analyticsService: args.analyticsService,
|
analyticsService: args.analyticsService,
|
||||||
analyticsId: args.analyticsId
|
analyticsId: args.analyticsId
|
||||||
}
|
}
|
||||||
WIKI.config.logo = {
|
WIKI.config.logoUrl = args.logoUrl
|
||||||
hasLogo: args.hasLogo,
|
|
||||||
logoIsSquare: args.logoIsSquare
|
|
||||||
}
|
|
||||||
WIKI.config.features = {
|
WIKI.config.features = {
|
||||||
featurePageRatings: args.featurePageRatings,
|
featurePageRatings: args.featurePageRatings,
|
||||||
featurePageComments: args.featurePageComments,
|
featurePageComments: args.featurePageComments,
|
||||||
@ -53,7 +50,7 @@ module.exports = {
|
|||||||
securityCSP: args.securityCSP,
|
securityCSP: args.securityCSP,
|
||||||
securityCSPDirectives: args.securityCSPDirectives
|
securityCSPDirectives: args.securityCSPDirectives
|
||||||
}
|
}
|
||||||
await WIKI.configSvc.saveToDb(['host', 'title', 'company', 'seo', 'logo', 'features', 'security'])
|
await WIKI.configSvc.saveToDb(['host', 'title', 'company', 'seo', 'logoUrl', 'features', 'security'])
|
||||||
|
|
||||||
if (WIKI.config.security.securityTrustProxy) {
|
if (WIKI.config.security.securityTrustProxy) {
|
||||||
WIKI.app.enable('trust proxy')
|
WIKI.app.enable('trust proxy')
|
||||||
|
@ -31,8 +31,7 @@ type SiteMutation {
|
|||||||
analyticsService: String!
|
analyticsService: String!
|
||||||
analyticsId: String!
|
analyticsId: String!
|
||||||
company: String!
|
company: String!
|
||||||
hasLogo: Boolean!
|
logoUrl: String!
|
||||||
logoIsSquare: Boolean!
|
|
||||||
featurePageRatings: Boolean!
|
featurePageRatings: Boolean!
|
||||||
featurePageComments: Boolean!
|
featurePageComments: Boolean!
|
||||||
featurePersonalWikis: Boolean!
|
featurePersonalWikis: Boolean!
|
||||||
@ -59,8 +58,7 @@ type SiteConfig {
|
|||||||
analyticsService: String!
|
analyticsService: String!
|
||||||
analyticsId: String!
|
analyticsId: String!
|
||||||
company: String!
|
company: String!
|
||||||
hasLogo: Boolean!
|
logoUrl: String!
|
||||||
logoIsSquare: Boolean!
|
|
||||||
featurePageRatings: Boolean!
|
featurePageRatings: Boolean!
|
||||||
featurePageComments: Boolean!
|
featurePageComments: Boolean!
|
||||||
featurePersonalWikis: Boolean!
|
featurePersonalWikis: Boolean!
|
||||||
|
@ -113,6 +113,7 @@ module.exports = async () => {
|
|||||||
image: '',
|
image: '',
|
||||||
url: '/'
|
url: '/'
|
||||||
}
|
}
|
||||||
|
app.locals.devMode = WIKI.devMode
|
||||||
|
|
||||||
// ----------------------------------------
|
// ----------------------------------------
|
||||||
// HMR (Dev Mode Only)
|
// HMR (Dev Mode Only)
|
||||||
@ -151,7 +152,8 @@ module.exports = async () => {
|
|||||||
darkMode: WIKI.config.theming.darkMode,
|
darkMode: WIKI.config.theming.darkMode,
|
||||||
lang: WIKI.config.lang.code,
|
lang: WIKI.config.lang.code,
|
||||||
rtl: WIKI.config.lang.rtl,
|
rtl: WIKI.config.lang.rtl,
|
||||||
company: WIKI.config.company
|
company: WIKI.config.company,
|
||||||
|
logoUrl: WIKI.config.logoUrl
|
||||||
}
|
}
|
||||||
res.locals.langs = await WIKI.models.locales.getNavLocales({ cache: true })
|
res.locals.langs = await WIKI.models.locales.getNavLocales({ cache: true })
|
||||||
res.locals.analyticsCode = await WIKI.models.analytics.getCode({ cache: true })
|
res.locals.analyticsCode = await WIKI.models.analytics.getCode({ cache: true })
|
||||||
|
@ -6,31 +6,35 @@ module.exports = {
|
|||||||
input = xss(input, {
|
input = xss(input, {
|
||||||
whiteList: {
|
whiteList: {
|
||||||
...xss.whiteList,
|
...xss.whiteList,
|
||||||
a: ['class', 'id', 'href', 'target', 'title'],
|
a: ['class', 'id', 'href', 'style', 'target', 'title'],
|
||||||
blockquote: ['class', 'id'],
|
blockquote: ['class', 'id', 'style'],
|
||||||
code: ['class'],
|
code: ['class', 'style'],
|
||||||
div: ['class', 'id'],
|
div: ['class', 'id', 'style'],
|
||||||
em: ['class'],
|
em: ['class', 'style'],
|
||||||
h1: ['class', 'id'],
|
h1: ['class', 'id', 'style'],
|
||||||
h2: ['class', 'id'],
|
h2: ['class', 'id', 'style'],
|
||||||
h3: ['class', 'id'],
|
h3: ['class', 'id', 'style'],
|
||||||
h4: ['class', 'id'],
|
h4: ['class', 'id', 'style'],
|
||||||
h5: ['class', 'id'],
|
h5: ['class', 'id', 'style'],
|
||||||
h6: ['class', 'id'],
|
h6: ['class', 'id', 'style'],
|
||||||
img: ['alt', 'class', 'draggable', 'height', 'src', 'width'],
|
img: ['alt', 'class', 'draggable', 'height', 'src', 'style', 'width'],
|
||||||
li: ['class'],
|
li: ['class', 'style'],
|
||||||
ol: ['class'],
|
ol: ['class', 'style'],
|
||||||
p: ['class'],
|
p: ['class', 'style'],
|
||||||
pre: ['class'],
|
path: ['d', 'style'],
|
||||||
strong: ['class'],
|
pre: ['class', 'style'],
|
||||||
table: ['border', 'class', 'id', 'width'],
|
span: ['class', 'style'],
|
||||||
tbody: ['class'],
|
strong: ['class', 'style'],
|
||||||
td: ['align', 'class', 'colspan', 'rowspan', 'valign'],
|
svg: ['width', 'height', 'viewBox', 'preserveAspectRatio', 'style'],
|
||||||
th: ['align', 'class', 'colspan', 'rowspan', 'valign'],
|
table: ['border', 'class', 'id', 'style', 'width'],
|
||||||
thead: ['class'],
|
tbody: ['class', 'style'],
|
||||||
tr: ['class', 'rowspan', 'align', 'valign'],
|
td: ['align', 'class', 'colspan', 'rowspan', 'style', 'valign'],
|
||||||
ul: ['class']
|
th: ['align', 'class', 'colspan', 'rowspan', 'style', 'valign'],
|
||||||
}
|
thead: ['class', 'style'],
|
||||||
|
tr: ['class', 'rowspan', 'style', 'align', 'valign'],
|
||||||
|
ul: ['class', 'style']
|
||||||
|
},
|
||||||
|
css: false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return input
|
return input
|
||||||
|
20
server/modules/rendering/markdown-katex/definition.yml
Normal file
20
server/modules/rendering/markdown-katex/definition.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
key: markdownKatex
|
||||||
|
title: Katex
|
||||||
|
description: LaTeX Math Typesetting Renderer
|
||||||
|
author: requarks.io
|
||||||
|
icon: mdi-math-integral
|
||||||
|
enabledDefault: true
|
||||||
|
dependsOn: markdownCore
|
||||||
|
props:
|
||||||
|
useInline:
|
||||||
|
type: Boolean
|
||||||
|
default: true
|
||||||
|
title: Inline TeX
|
||||||
|
hint: Process inline TeX expressions surrounded by $ symbols.
|
||||||
|
order: 1
|
||||||
|
useBlocks:
|
||||||
|
type: Boolean
|
||||||
|
default: true
|
||||||
|
title: TeX Blocks
|
||||||
|
hint: Process TeX blocks enclosed by $$ symbols.
|
||||||
|
order: 2
|
181
server/modules/rendering/markdown-katex/renderer.js
Normal file
181
server/modules/rendering/markdown-katex/renderer.js
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
const katex = require('katex')
|
||||||
|
|
||||||
|
/* global WIKI */
|
||||||
|
|
||||||
|
// ------------------------------------
|
||||||
|
// Markdown - KaTeX Renderer
|
||||||
|
// ------------------------------------
|
||||||
|
//
|
||||||
|
// Includes code from https://github.com/liradb2000/markdown-it-katex
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
init (mdinst, conf) {
|
||||||
|
if (conf.useInline) {
|
||||||
|
mdinst.inline.ruler.after('escape', 'katex_inline', katexInline)
|
||||||
|
mdinst.renderer.rules.katex_inline = (tokens, idx) => {
|
||||||
|
try {
|
||||||
|
return katex.renderToString(tokens[idx].content, {
|
||||||
|
displayMode: false
|
||||||
|
})
|
||||||
|
} catch (err) {
|
||||||
|
WIKI.logger.warn(err)
|
||||||
|
return tokens[idx].content
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (conf.useBlocks) {
|
||||||
|
mdinst.block.ruler.after('blockquote', 'katex_block', katexBlock, {
|
||||||
|
alt: [ 'paragraph', 'reference', 'blockquote', 'list' ]
|
||||||
|
})
|
||||||
|
mdinst.renderer.rules.katex_block = (tokens, idx) => {
|
||||||
|
try {
|
||||||
|
return `<p>` + katex.renderToString(tokens[idx].content, {
|
||||||
|
displayMode: true
|
||||||
|
}) + `</p>`
|
||||||
|
} catch (err) {
|
||||||
|
WIKI.logger.warn(err)
|
||||||
|
return tokens[idx].content
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test if potential opening or closing delimieter
|
||||||
|
// Assumes that there is a "$" at state.src[pos]
|
||||||
|
function isValidDelim (state, pos) {
|
||||||
|
let prevChar
|
||||||
|
let nextChar
|
||||||
|
let max = state.posMax
|
||||||
|
let canOpen = true
|
||||||
|
let canClose = true
|
||||||
|
|
||||||
|
prevChar = pos > 0 ? state.src.charCodeAt(pos - 1) : -1
|
||||||
|
nextChar = pos + 1 <= max ? state.src.charCodeAt(pos + 1) : -1
|
||||||
|
|
||||||
|
// Check non-whitespace conditions for opening and closing, and
|
||||||
|
// check that closing delimeter isn't followed by a number
|
||||||
|
if (prevChar === 0x20/* " " */ || prevChar === 0x09/* \t */ ||
|
||||||
|
(nextChar >= 0x30/* "0" */ && nextChar <= 0x39/* "9" */)) {
|
||||||
|
canClose = false
|
||||||
|
}
|
||||||
|
if (nextChar === 0x20/* " " */ || nextChar === 0x09/* \t */) {
|
||||||
|
canOpen = false
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
canOpen: canOpen,
|
||||||
|
canClose: canClose
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function katexInline (state, silent) {
|
||||||
|
let start, match, token, res, pos
|
||||||
|
|
||||||
|
if (state.src[state.pos] !== '$') { return false }
|
||||||
|
|
||||||
|
res = isValidDelim(state, state.pos)
|
||||||
|
if (!res.canOpen) {
|
||||||
|
if (!silent) { state.pending += '$' }
|
||||||
|
state.pos += 1
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// First check for and bypass all properly escaped delimieters
|
||||||
|
// This loop will assume that the first leading backtick can not
|
||||||
|
// be the first character in state.src, which is known since
|
||||||
|
// we have found an opening delimieter already.
|
||||||
|
start = state.pos + 1
|
||||||
|
match = start
|
||||||
|
while ((match = state.src.indexOf('$', match)) !== -1) {
|
||||||
|
// Found potential $, look for escapes, pos will point to
|
||||||
|
// first non escape when complete
|
||||||
|
pos = match - 1
|
||||||
|
while (state.src[pos] === '\\') { pos -= 1 }
|
||||||
|
|
||||||
|
// Even number of escapes, potential closing delimiter found
|
||||||
|
if (((match - pos) % 2) === 1) { break }
|
||||||
|
match += 1
|
||||||
|
}
|
||||||
|
|
||||||
|
// No closing delimter found. Consume $ and continue.
|
||||||
|
if (match === -1) {
|
||||||
|
if (!silent) { state.pending += '$' }
|
||||||
|
state.pos = start
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if we have empty content, ie: $$. Do not parse.
|
||||||
|
if (match - start === 0) {
|
||||||
|
if (!silent) { state.pending += '$$' }
|
||||||
|
state.pos = start + 1
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for valid closing delimiter
|
||||||
|
res = isValidDelim(state, match)
|
||||||
|
if (!res.canClose) {
|
||||||
|
if (!silent) { state.pending += '$' }
|
||||||
|
state.pos = start
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!silent) {
|
||||||
|
token = state.push('katex_inline', 'math', 0)
|
||||||
|
token.markup = '$'
|
||||||
|
token.content = state.src.slice(start, match)
|
||||||
|
}
|
||||||
|
|
||||||
|
state.pos = match + 1
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
function katexBlock (state, start, end, silent) {
|
||||||
|
let firstLine; let lastLine; let next; let lastPos; let found = false; let token
|
||||||
|
let pos = state.bMarks[start] + state.tShift[start]
|
||||||
|
let max = state.eMarks[start]
|
||||||
|
|
||||||
|
if (pos + 2 > max) { return false }
|
||||||
|
if (state.src.slice(pos, pos + 2) !== '$$') { return false }
|
||||||
|
|
||||||
|
pos += 2
|
||||||
|
firstLine = state.src.slice(pos, max)
|
||||||
|
|
||||||
|
if (silent) { return true }
|
||||||
|
if (firstLine.trim().slice(-2) === '$$') {
|
||||||
|
// Single line expression
|
||||||
|
firstLine = firstLine.trim().slice(0, -2)
|
||||||
|
found = true
|
||||||
|
}
|
||||||
|
|
||||||
|
for (next = start; !found;) {
|
||||||
|
next++
|
||||||
|
|
||||||
|
if (next >= end) { break }
|
||||||
|
|
||||||
|
pos = state.bMarks[next] + state.tShift[next]
|
||||||
|
max = state.eMarks[next]
|
||||||
|
|
||||||
|
if (pos < max && state.tShift[next] < state.blkIndent) {
|
||||||
|
// non-empty line with negative indent should stop the list:
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.src.slice(pos, max).trim().slice(-2) === '$$') {
|
||||||
|
lastPos = state.src.slice(0, max).lastIndexOf('$$')
|
||||||
|
lastLine = state.src.slice(pos, lastPos)
|
||||||
|
found = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
state.line = next + 1
|
||||||
|
|
||||||
|
token = state.push('katex_block', 'math', 0)
|
||||||
|
token.block = true
|
||||||
|
token.content = (firstLine && firstLine.trim() ? firstLine + '\n' : '') +
|
||||||
|
state.getLines(start + 1, next, state.tShift[start], true) +
|
||||||
|
(lastLine && lastLine.trim() ? lastLine : '')
|
||||||
|
token.map = [ start, state.line ]
|
||||||
|
token.markup = '$$'
|
||||||
|
return true
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user