2018-08-09 04:07:15 +00:00
|
|
|
<template lang="pug">
|
2018-12-02 04:03:14 +00:00
|
|
|
v-app(v-scroll='upBtnScroll', :dark='darkMode')
|
2018-08-09 04:07:15 +00:00
|
|
|
nav-header
|
2018-12-02 04:03:14 +00:00
|
|
|
v-navigation-drawer(
|
2019-08-05 03:53:21 +00:00
|
|
|
:class='darkMode ? `grey darken-4-d4` : `primary`'
|
2018-08-11 01:00:20 +00:00
|
|
|
dark
|
|
|
|
app
|
|
|
|
clipped
|
|
|
|
mobile-break-point='600'
|
2018-12-30 02:30:51 +00:00
|
|
|
:temporary='$vuetify.breakpoint.mdAndDown'
|
2018-08-11 01:00:20 +00:00
|
|
|
v-model='navShown'
|
2019-06-08 00:04:35 +00:00
|
|
|
:right='$vuetify.rtl'
|
2018-08-11 01:00:20 +00:00
|
|
|
)
|
2018-11-26 03:10:20 +00:00
|
|
|
vue-scroll(:ops='scrollStyle')
|
2019-08-05 03:53:21 +00:00
|
|
|
nav-sidebar(:color='darkMode ? `grey darken-4-d4` : `primary`', :items='sidebar')
|
2018-08-09 04:07:15 +00:00
|
|
|
|
2018-12-30 02:30:51 +00:00
|
|
|
v-fab-transition
|
|
|
|
v-btn(
|
|
|
|
fab
|
|
|
|
color='primary'
|
|
|
|
fixed
|
|
|
|
bottom
|
2019-06-08 00:04:35 +00:00
|
|
|
:right='$vuetify.rtl'
|
|
|
|
:left='!$vuetify.rtl'
|
2018-12-30 02:30:51 +00:00
|
|
|
small
|
|
|
|
@click='navShown = !navShown'
|
|
|
|
v-if='$vuetify.breakpoint.mdAndDown'
|
|
|
|
v-show='!navShown'
|
|
|
|
)
|
2019-08-04 17:54:23 +00:00
|
|
|
v-icon mdi-menu
|
2018-12-30 02:30:51 +00:00
|
|
|
|
2019-02-17 06:32:35 +00:00
|
|
|
v-content(ref='content')
|
2018-11-18 04:03:58 +00:00
|
|
|
template(v-if='path !== `home`')
|
2019-05-24 20:06:34 +00:00
|
|
|
v-toolbar(:color='darkMode ? `grey darken-4-d3` : `grey lighten-3`', flat, dense, v-if='$vuetify.breakpoint.smAndUp')
|
|
|
|
//- v-btn.pl-0(v-if='$vuetify.breakpoint.xsOnly', flat, @click='toggleNavigation')
|
|
|
|
//- v-icon(color='grey darken-2', left) menu
|
|
|
|
//- span Navigation
|
2018-11-18 04:03:58 +00:00
|
|
|
v-breadcrumbs.breadcrumbs-nav.pl-0(
|
|
|
|
:items='breadcrumbs'
|
|
|
|
divider='/'
|
|
|
|
)
|
|
|
|
template(slot='item', slot-scope='props')
|
2019-07-29 04:50:03 +00:00
|
|
|
v-icon(v-if='props.item.path === "/"', small, @click='goHome') mdi-home
|
|
|
|
v-btn.ma-0(v-else, :href='props.item.path', small, text) {{props.item.name}}
|
2018-11-18 04:03:58 +00:00
|
|
|
template(v-if='!isPublished')
|
|
|
|
v-spacer
|
2019-06-09 01:00:12 +00:00
|
|
|
.caption.red--text {{$t('common:page.unpublished')}}
|
2018-11-18 04:03:58 +00:00
|
|
|
status-indicator.ml-3(negative, pulse)
|
|
|
|
v-divider
|
2019-08-17 22:29:58 +00:00
|
|
|
v-container.grey.pa-0(fluid, :class='darkMode ? `darken-4-l3` : `lighten-4`')
|
|
|
|
v-row(no-gutters, align-content='center', style='height: 90px;')
|
2019-08-25 18:23:56 +00:00
|
|
|
v-col.pl-4.page-col-content(offset-xl='2', offset-lg='3')
|
2019-08-17 22:29:58 +00:00
|
|
|
.headline.grey--text(:class='darkMode ? `text--lighten-2` : `text--darken-3`') {{title}}
|
|
|
|
.caption.grey--text.text--darken-1 {{description}}
|
2019-07-29 04:50:03 +00:00
|
|
|
v-divider
|
2019-08-17 22:29:58 +00:00
|
|
|
v-container.pl-5.pt-4(fluid, grid-list-xl)
|
2019-07-29 04:50:03 +00:00
|
|
|
v-layout(row)
|
2019-08-17 22:29:58 +00:00
|
|
|
v-flex.page-col-sd(lg3, xl2, v-if='$vuetify.breakpoint.lgAndUp', style='margin-top: -90px;')
|
2019-08-25 18:23:56 +00:00
|
|
|
v-card.mb-5(v-if='toc.length')
|
2019-08-05 03:53:21 +00:00
|
|
|
.overline.pa-5.pb-0(:class='darkMode ? `blue--text text--lighten-2` : `primary--text`') {{$t('common:page.toc')}}
|
2019-07-29 04:50:03 +00:00
|
|
|
v-list.pb-3(dense, nav, :class='darkMode ? `darken-3-d3` : ``')
|
|
|
|
template(v-for='(tocItem, tocIdx) in toc')
|
|
|
|
v-list-item(@click='$vuetify.goTo(tocItem.anchor, scrollOpts)')
|
2019-08-11 04:12:07 +00:00
|
|
|
v-icon(color='grey', small) {{ $vuetify.rtl ? `mdi-chevron-left` : `mdi-chevron-right` }}
|
|
|
|
v-list-item-title.px-3 {{tocItem.title}}
|
2019-08-04 17:54:23 +00:00
|
|
|
//- v-divider(v-if='tocIdx < toc.length - 1 || tocItem.children.length')
|
2019-07-29 04:50:03 +00:00
|
|
|
template(v-for='tocSubItem in tocItem.children')
|
|
|
|
v-list-item(@click='$vuetify.goTo(tocSubItem.anchor, scrollOpts)')
|
2019-08-11 04:12:07 +00:00
|
|
|
v-icon.px-3(color='grey lighten-1', small) {{ $vuetify.rtl ? `mdi-chevron-left` : `mdi-chevron-right` }}
|
|
|
|
v-list-item-title.px-3.caption.grey--text(:class='darkMode ? `text--lighten-1` : `text--darken-1`') {{tocSubItem.title}}
|
2019-08-04 17:54:23 +00:00
|
|
|
//- v-divider(inset, v-if='tocIdx < toc.length - 1')
|
2018-09-04 04:46:24 +00:00
|
|
|
|
2019-08-25 18:23:56 +00:00
|
|
|
v-card.mb-5(v-if='tags.length > 0')
|
2019-07-29 04:50:03 +00:00
|
|
|
.pa-5
|
2019-08-05 03:53:21 +00:00
|
|
|
.overline.teal--text.pb-2(:class='$vuetify.theme.dark ? `text--lighten-3` : ``') Tags
|
2019-07-29 04:50:03 +00:00
|
|
|
v-chip.mr-1(
|
|
|
|
label
|
|
|
|
color='teal lighten-5'
|
|
|
|
v-for='(tag, idx) in tags'
|
2019-09-02 22:32:33 +00:00
|
|
|
:href='`/t/` + tag.tag'
|
2019-09-08 16:39:05 +00:00
|
|
|
:key='`tag-` + tag.tag'
|
2019-07-29 04:50:03 +00:00
|
|
|
)
|
2019-09-08 16:39:05 +00:00
|
|
|
v-icon(color='teal', left, small) mdi-tag
|
2019-09-02 22:32:33 +00:00
|
|
|
span.teal--text.text--darken-2 {{tag.title}}
|
2019-09-08 16:39:05 +00:00
|
|
|
v-chip.mr-1(
|
|
|
|
label
|
|
|
|
color='teal lighten-5'
|
|
|
|
:href='`/t/` + tags.map(t => t.tag).join(`/`)'
|
|
|
|
)
|
|
|
|
v-icon(color='teal', size='20') mdi-tag-multiple
|
2019-08-03 04:48:55 +00:00
|
|
|
|
2019-08-25 18:23:56 +00:00
|
|
|
v-card.mb-5
|
2019-08-25 02:19:35 +00:00
|
|
|
.pa-5
|
|
|
|
.overline.indigo--text.d-flex.align-center(:class='$vuetify.theme.dark ? `text--lighten-3` : ``')
|
|
|
|
span {{$t('common:page.lastEditedBy')}}
|
2019-09-08 16:39:05 +00:00
|
|
|
//- v-spacer
|
|
|
|
//- v-tooltip(top, v-if='isAuthenticated')
|
|
|
|
//- template(v-slot:activator='{ on }')
|
|
|
|
//- v-btn.btn-animate-edit(icon, :href='"/h/" + locale + "/" + path', v-on='on', x-small)
|
|
|
|
//- v-icon(color='grey', dense) mdi-history
|
|
|
|
//- span History
|
2019-08-25 02:19:35 +00:00
|
|
|
.body-2.grey--text(:class='darkMode ? `` : `text--darken-3`') {{ authorName }}
|
|
|
|
.caption.grey--text.text--darken-1 {{ updatedAt | moment('calendar') }}
|
|
|
|
|
2019-08-27 03:11:21 +00:00
|
|
|
//- v-card.mb-5
|
|
|
|
//- .pa-5
|
|
|
|
//- .overline.pb-2.yellow--text(:class='$vuetify.theme.dark ? `text--darken-3` : `text--darken-4`') Rating
|
|
|
|
//- .text-center
|
|
|
|
//- v-rating(
|
|
|
|
//- v-model='rating'
|
|
|
|
//- color='yellow darken-3'
|
|
|
|
//- background-color='grey lighten-1'
|
|
|
|
//- half-increments
|
|
|
|
//- hover
|
|
|
|
//- )
|
|
|
|
//- .caption.grey--text 5 votes
|
2019-08-25 02:19:35 +00:00
|
|
|
|
2019-08-25 18:23:56 +00:00
|
|
|
v-card(flat)
|
|
|
|
v-toolbar(:color='darkMode ? `grey darken-4-d3` : `grey lighten-3`', flat, dense)
|
2019-07-29 04:50:03 +00:00
|
|
|
v-spacer
|
|
|
|
v-tooltip(bottom)
|
|
|
|
template(v-slot:activator='{ on }')
|
2019-08-25 02:19:35 +00:00
|
|
|
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-bookmark
|
2019-07-29 04:50:03 +00:00
|
|
|
span {{$t('common:page.bookmark')}}
|
|
|
|
v-tooltip(bottom)
|
|
|
|
template(v-slot:activator='{ on }')
|
2019-08-25 02:19:35 +00:00
|
|
|
v-btn(icon, tile, v-on='on'): v-icon(color='grey') mdi-share-variant
|
2019-07-29 04:50:03 +00:00
|
|
|
span {{$t('common:page.share')}}
|
|
|
|
v-tooltip(bottom)
|
|
|
|
template(v-slot:activator='{ on }')
|
2019-08-25 18:23:56 +00:00
|
|
|
v-btn(icon, tile, v-on='on', @click='print'): v-icon(color='grey') mdi-printer
|
2019-07-29 04:50:03 +00:00
|
|
|
span {{$t('common:page.printFormat')}}
|
|
|
|
v-spacer
|
|
|
|
|
|
|
|
v-flex.page-col-content(xs12, lg9, xl10)
|
2019-08-11 04:12:07 +00:00
|
|
|
v-tooltip(:right='$vuetify.rtl', :left='!$vuetify.rtl', v-if='isAuthenticated')
|
2019-09-27 04:02:26 +00:00
|
|
|
template(v-slot:activator='{ on: onEditActivator }')
|
|
|
|
v-speed-dial(
|
|
|
|
v-model='pageEditFab'
|
|
|
|
direction='top'
|
|
|
|
open-on-hover
|
|
|
|
transition='scale-transition'
|
2019-08-11 04:12:07 +00:00
|
|
|
bottom
|
|
|
|
:right='!$vuetify.rtl'
|
|
|
|
:left='$vuetify.rtl'
|
|
|
|
fixed
|
|
|
|
dark
|
|
|
|
)
|
2019-09-27 04:02:26 +00:00
|
|
|
template(v-slot:activator)
|
|
|
|
v-btn.btn-animate-edit(
|
|
|
|
fab
|
|
|
|
color='primary'
|
|
|
|
v-model='pageEditFab'
|
|
|
|
@click='pageEdit'
|
|
|
|
v-on='onEditActivator'
|
|
|
|
)
|
|
|
|
v-icon mdi-pencil
|
|
|
|
v-tooltip(:right='$vuetify.rtl', :left='!$vuetify.rtl')
|
|
|
|
template(v-slot:activator='{ on }')
|
|
|
|
v-btn(
|
|
|
|
fab
|
|
|
|
small
|
|
|
|
color='white'
|
|
|
|
light
|
|
|
|
v-on='on'
|
|
|
|
@click='pageHistory'
|
|
|
|
)
|
|
|
|
v-icon(size='20') mdi-history
|
|
|
|
span History
|
|
|
|
v-tooltip(:right='$vuetify.rtl', :left='!$vuetify.rtl')
|
|
|
|
template(v-slot:activator='{ on }')
|
|
|
|
v-btn(
|
|
|
|
fab
|
|
|
|
small
|
|
|
|
color='white'
|
|
|
|
light
|
|
|
|
v-on='on'
|
|
|
|
@click='pageSource'
|
|
|
|
)
|
|
|
|
v-icon(size='20') mdi-code-tags
|
|
|
|
span View Source
|
|
|
|
v-tooltip(:right='$vuetify.rtl', :left='!$vuetify.rtl')
|
|
|
|
template(v-slot:activator='{ on }')
|
|
|
|
v-btn(
|
|
|
|
fab
|
|
|
|
small
|
|
|
|
color='white'
|
|
|
|
light
|
|
|
|
v-on='on'
|
|
|
|
@click='pageMove'
|
|
|
|
)
|
|
|
|
v-icon(size='20') mdi-content-save-move-outline
|
|
|
|
span Move / Rename
|
|
|
|
v-tooltip(:right='$vuetify.rtl', :left='!$vuetify.rtl')
|
|
|
|
template(v-slot:activator='{ on }')
|
|
|
|
v-btn(
|
|
|
|
fab
|
|
|
|
dark
|
|
|
|
small
|
|
|
|
color='red'
|
|
|
|
v-on='on'
|
|
|
|
@click='pageDelete'
|
|
|
|
)
|
|
|
|
v-icon(size='20') mdi-trash-can-outline
|
|
|
|
span Delete
|
|
|
|
v-tooltip(:right='$vuetify.rtl', :left='!$vuetify.rtl')
|
|
|
|
template(v-slot:activator='{ on }')
|
|
|
|
v-btn.mb-4(
|
|
|
|
fab
|
|
|
|
color='teal'
|
|
|
|
dark
|
|
|
|
v-on='on'
|
|
|
|
@click='pageHistory'
|
|
|
|
)
|
|
|
|
v-icon mdi-plus
|
|
|
|
span New Page
|
2019-08-04 17:54:23 +00:00
|
|
|
span {{$t('common:page.editPage')}}
|
2019-07-29 04:50:03 +00:00
|
|
|
.contents(ref='container')
|
|
|
|
slot(name='contents')
|
2018-08-09 04:07:15 +00:00
|
|
|
nav-footer
|
2019-04-22 04:44:24 +00:00
|
|
|
notify
|
2019-03-09 05:51:02 +00:00
|
|
|
search-results
|
2018-11-18 04:03:58 +00:00
|
|
|
v-fab-transition
|
2019-06-08 00:04:35 +00:00
|
|
|
v-btn(
|
|
|
|
v-if='upBtnShown'
|
|
|
|
fab
|
|
|
|
fixed
|
|
|
|
bottom
|
2019-08-04 17:54:23 +00:00
|
|
|
:right='$vuetify.rtl'
|
|
|
|
:left='!$vuetify.rtl'
|
2019-06-08 00:04:35 +00:00
|
|
|
small
|
2019-08-04 17:54:23 +00:00
|
|
|
depressed
|
2019-06-08 00:04:35 +00:00
|
|
|
@click='$vuetify.goTo(0, scrollOpts)'
|
|
|
|
color='primary'
|
2019-08-04 17:54:23 +00:00
|
|
|
dark
|
|
|
|
:style='$vuetify.rtl ? `right: 235px;` : `left: 235px;`'
|
2019-06-08 00:04:35 +00:00
|
|
|
)
|
2019-07-29 04:50:03 +00:00
|
|
|
v-icon mdi-arrow-up
|
2018-08-09 04:07:15 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-08-11 22:16:56 +00:00
|
|
|
import { StatusIndicator } from 'vue-status-indicator'
|
2019-07-13 03:56:44 +00:00
|
|
|
import Prism from 'prismjs'
|
2018-12-02 04:03:14 +00:00
|
|
|
import { get } from 'vuex-pathify'
|
2019-05-24 20:06:34 +00:00
|
|
|
import _ from 'lodash'
|
2018-08-11 22:16:56 +00:00
|
|
|
|
2019-07-29 04:50:03 +00:00
|
|
|
Prism.plugins.autoloader.languages_path = '/js/prism/'
|
|
|
|
Prism.plugins.NormalizeWhitespace.setDefaults({
|
|
|
|
'remove-trailing': true,
|
|
|
|
'remove-indent': true,
|
|
|
|
'left-trim': true,
|
|
|
|
'right-trim': true,
|
|
|
|
'break-lines': 160,
|
|
|
|
'remove-initial-line-feed': true,
|
|
|
|
'tabs-to-spaces': 2
|
|
|
|
})
|
|
|
|
|
2018-08-09 04:07:15 +00:00
|
|
|
export default {
|
2018-08-11 22:16:56 +00:00
|
|
|
components: {
|
|
|
|
StatusIndicator
|
|
|
|
},
|
2018-08-09 04:07:15 +00:00
|
|
|
props: {
|
2019-01-26 23:35:56 +00:00
|
|
|
pageId: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
2018-08-20 05:02:57 +00:00
|
|
|
locale: {
|
|
|
|
type: String,
|
|
|
|
default: 'en'
|
|
|
|
},
|
|
|
|
path: {
|
|
|
|
type: String,
|
|
|
|
default: 'home'
|
|
|
|
},
|
2018-08-09 04:07:15 +00:00
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
default: 'Untitled Page'
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
2018-08-20 05:02:57 +00:00
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
|
|
|
},
|
|
|
|
updatedAt: {
|
|
|
|
type: String,
|
|
|
|
default: ''
|
|
|
|
},
|
|
|
|
tags: {
|
|
|
|
type: Array,
|
|
|
|
default: () => ([])
|
|
|
|
},
|
|
|
|
authorName: {
|
|
|
|
type: String,
|
|
|
|
default: 'Unknown'
|
|
|
|
},
|
|
|
|
authorId: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
isPublished: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-11-18 04:03:58 +00:00
|
|
|
},
|
|
|
|
toc: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
2019-08-04 17:54:23 +00:00
|
|
|
},
|
|
|
|
sidebar: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
2018-08-09 04:07:15 +00:00
|
|
|
}
|
2018-08-11 01:00:20 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2018-12-30 02:30:51 +00:00
|
|
|
navShown: false,
|
|
|
|
navExpanded: false,
|
2018-11-18 04:03:58 +00:00
|
|
|
upBtnShown: false,
|
2019-09-27 04:02:26 +00:00
|
|
|
pageEditFab: false,
|
2018-11-18 04:03:58 +00:00
|
|
|
scrollOpts: {
|
|
|
|
duration: 1500,
|
2019-08-25 21:12:38 +00:00
|
|
|
offset: 0,
|
2018-11-18 04:03:58 +00:00
|
|
|
easing: 'easeInOutCubic'
|
|
|
|
},
|
2018-11-26 03:10:20 +00:00
|
|
|
scrollStyle: {
|
|
|
|
vuescroll: {},
|
|
|
|
scrollPanel: {
|
|
|
|
initialScrollX: 0.01, // fix scrollbar not disappearing on load
|
|
|
|
scrollingX: false,
|
|
|
|
speed: 50
|
|
|
|
},
|
|
|
|
rail: {
|
|
|
|
gutterOfEnds: '2px'
|
|
|
|
},
|
|
|
|
bar: {
|
|
|
|
onlyShowBarOnScroll: false,
|
|
|
|
background: '#42A5F5',
|
|
|
|
hoverStyle: {
|
|
|
|
background: '#64B5F6'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-11 01:00:20 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2018-12-02 04:03:14 +00:00
|
|
|
darkMode: get('site/dark'),
|
2019-07-14 17:51:30 +00:00
|
|
|
isAuthenticated: get('user/authenticated'),
|
2018-09-04 04:46:24 +00:00
|
|
|
rating: {
|
|
|
|
get () {
|
|
|
|
return 3.5
|
|
|
|
},
|
|
|
|
set (val) {
|
|
|
|
|
|
|
|
}
|
2019-05-24 20:06:34 +00:00
|
|
|
},
|
|
|
|
breadcrumbs() {
|
|
|
|
return [{ path: '/', name: 'Home' }].concat(_.reduce(this.path.split('/'), (result, value, key) => {
|
|
|
|
result.push({
|
|
|
|
path: _.map(result, 'path').join('/') + `/${value}`,
|
|
|
|
name: value
|
|
|
|
})
|
|
|
|
return result
|
|
|
|
}, []))
|
2018-08-11 01:00:20 +00:00
|
|
|
}
|
|
|
|
},
|
2018-10-29 02:09:58 +00:00
|
|
|
created() {
|
|
|
|
this.$store.commit('page/SET_AUTHOR_ID', this.authorId)
|
|
|
|
this.$store.commit('page/SET_AUTHOR_NAME', this.authorName)
|
|
|
|
this.$store.commit('page/SET_CREATED_AT', this.createdAt)
|
|
|
|
this.$store.commit('page/SET_DESCRIPTION', this.description)
|
|
|
|
this.$store.commit('page/SET_IS_PUBLISHED', this.isPublished)
|
2019-01-26 23:35:56 +00:00
|
|
|
this.$store.commit('page/SET_ID', this.pageId)
|
2018-10-29 02:09:58 +00:00
|
|
|
this.$store.commit('page/SET_LOCALE', this.locale)
|
|
|
|
this.$store.commit('page/SET_PATH', this.path)
|
|
|
|
this.$store.commit('page/SET_TAGS', this.tags)
|
|
|
|
this.$store.commit('page/SET_TITLE', this.title)
|
|
|
|
this.$store.commit('page/SET_UPDATED_AT', this.updatedAt)
|
2018-11-19 06:08:55 +00:00
|
|
|
|
|
|
|
this.$store.commit('page/SET_MODE', 'view')
|
2018-10-29 02:09:58 +00:00
|
|
|
},
|
2018-09-17 02:30:24 +00:00
|
|
|
mounted () {
|
|
|
|
Prism.highlightAllUnder(this.$refs.container)
|
2018-12-30 02:30:51 +00:00
|
|
|
this.navShown = this.$vuetify.breakpoint.smAndUp
|
2019-08-25 21:12:38 +00:00
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
if (window.location.hash && window.location.hash.length > 1) {
|
|
|
|
this.$vuetify.goTo(window.location.hash, this.scrollOpts)
|
|
|
|
}
|
2019-09-01 01:59:14 +00:00
|
|
|
|
|
|
|
this.$refs.container.querySelectorAll(`a[href^="#"], a[href^="${window.location.href.replace(window.location.hash, '')}#"]`).forEach(el => {
|
|
|
|
el.onclick = ev => {
|
|
|
|
ev.preventDefault()
|
|
|
|
ev.stopPropagation()
|
|
|
|
this.$vuetify.goTo(ev.target.hash, this.scrollOpts)
|
|
|
|
}
|
|
|
|
})
|
2019-08-25 21:12:38 +00:00
|
|
|
})
|
2018-09-17 02:30:24 +00:00
|
|
|
},
|
2018-08-11 01:00:20 +00:00
|
|
|
methods: {
|
2019-05-24 20:06:34 +00:00
|
|
|
goHome () {
|
|
|
|
window.location.assign('/')
|
|
|
|
},
|
2018-08-11 01:00:20 +00:00
|
|
|
toggleNavigation () {
|
|
|
|
this.navOpen = !this.navOpen
|
2018-11-18 04:03:58 +00:00
|
|
|
},
|
|
|
|
upBtnScroll () {
|
|
|
|
const scrollOffset = window.pageYOffset || document.documentElement.scrollTop
|
|
|
|
this.upBtnShown = scrollOffset > window.innerHeight * 0.33
|
2019-08-25 18:23:56 +00:00
|
|
|
},
|
|
|
|
print () {
|
|
|
|
window.print()
|
2019-09-27 04:02:26 +00:00
|
|
|
},
|
|
|
|
pageEdit () {
|
|
|
|
this.$root.$emit('pageEdit')
|
|
|
|
},
|
|
|
|
pageHistory () {
|
|
|
|
this.$root.$emit('pageHistory')
|
|
|
|
},
|
|
|
|
pageSource () {
|
|
|
|
this.$root.$emit('pageSource')
|
|
|
|
},
|
|
|
|
pageMove () {
|
|
|
|
this.$root.$emit('pageMove')
|
|
|
|
},
|
|
|
|
pageDelete () {
|
|
|
|
this.$root.$emit('pageDelete')
|
2018-08-11 01:00:20 +00:00
|
|
|
}
|
2018-08-09 04:07:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
2018-11-12 05:51:34 +00:00
|
|
|
.breadcrumbs-nav {
|
|
|
|
.v-btn {
|
|
|
|
min-width: 0;
|
|
|
|
&__content {
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.v-breadcrumbs__divider:nth-child(2n) {
|
|
|
|
padding: 0 6px;
|
|
|
|
}
|
|
|
|
.v-breadcrumbs__divider:nth-child(2) {
|
|
|
|
padding: 0 6px 0 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 04:07:15 +00:00
|
|
|
</style>
|