wikijs-fork/client/components/history.vue

305 lines
9.5 KiB
Vue
Raw Normal View History

2018-10-29 02:09:58 +00:00
<template lang='pug'>
v-app(:dark='darkMode').history
nav-header
v-content
v-toolbar(color='primary', dark)
.subheading Viewing history of page #[strong /{{path}}]
v-spacer
.caption.blue--text.text--lighten-3.mr-4 Trail Length: {{total}}
.caption.blue--text.text--lighten-3 ID: {{pageId}}
2018-10-29 02:09:58 +00:00
v-btn.ml-4(depressed, color='blue darken-1', @click='goLive') Return to Live Version
v-container(fluid, grid-list-xl)
v-layout(row, wrap)
2020-02-24 02:22:45 +00:00
v-flex(xs12, md4)
v-chip.my-0.ml-6(
2018-10-29 02:09:58 +00:00
label
small
:color='darkMode ? `grey darken-2` : `grey lighten-2`'
:class='darkMode ? `grey--text text--lighten-2` : `grey--text text--darken-2`'
2018-10-29 02:09:58 +00:00
)
span Live
v-timeline(
dense
)
v-timeline-item.pb-2(
v-for='(ph, idx) in trail'
2018-11-25 06:28:20 +00:00
:key='ph.versionId'
:small='ph.actionType === `edit`'
:color='trailColor(ph.actionType)'
:icon='trailIcon(ph.actionType)'
:class='idx >= trail.length - 1 ? `pb-4` : `pb-2`'
2018-10-29 02:09:58 +00:00
)
2018-11-25 06:28:20 +00:00
v-card.radius-7(flat, :class='trailBgColor(ph.actionType)')
v-toolbar(flat, :color='trailBgColor(ph.actionType)', height='40')
2020-02-24 02:22:45 +00:00
.caption(:title='$options.filters.moment(ph.createdAt, `LLL`)') {{ ph.createdAt | moment('ll') }}
v-divider.mx-3(vertical)
.caption(v-if='ph.actionType === `edit`') Edited by #[strong {{ ph.authorName }}]
.caption(v-else-if='ph.actionType === `move`') Moved from #[strong {{ph.valueBefore}}] to #[strong {{ph.valueAfter}}] by #[strong {{ ph.authorName }}]
.caption(v-else-if='ph.actionType === `initial`') Created by #[strong {{ ph.authorName }}]
.caption(v-else) Unknown Action by #[strong {{ ph.authorName }}]
2018-11-25 06:28:20 +00:00
v-spacer
v-menu(offset-x, left)
2019-08-25 18:23:56 +00:00
template(v-slot:activator='{ on }')
2020-02-24 02:22:45 +00:00
v-btn.mr-2.radius-4(icon, v-on='on', small, tile): v-icon mdi-dots-horizontal
2019-08-25 18:23:56 +00:00
v-list(dense, nav).history-promptmenu
2019-07-29 04:50:03 +00:00
v-list-item(@click='setDiffTarget(ph.versionId)')
2019-08-25 18:23:56 +00:00
v-list-item-avatar(size='24'): v-icon mdi-call-received
2020-02-24 02:22:45 +00:00
v-list-item-title Set as Differencing Target (B)
2019-07-29 04:50:03 +00:00
v-list-item(@click='setDiffSource(ph.versionId)')
2019-08-25 18:23:56 +00:00
v-list-item-avatar(size='24'): v-icon mdi-call-made
2020-02-24 02:22:45 +00:00
v-list-item-title Set as Differencing Source (A)
2019-07-29 04:50:03 +00:00
v-list-item
2019-08-25 18:23:56 +00:00
v-list-item-avatar(size='24'): v-icon mdi-code-tags
2019-07-29 04:50:03 +00:00
v-list-item-title View Source
v-list-item
2019-08-25 18:23:56 +00:00
v-list-item-avatar(size='24'): v-icon mdi-cloud-download-outline
2019-07-29 04:50:03 +00:00
v-list-item-title Download Version
v-list-item
2019-08-25 18:23:56 +00:00
v-list-item-avatar(size='24'): v-icon mdi-history
2019-07-29 04:50:03 +00:00
v-list-item-title Restore
v-list-item
2019-08-25 18:23:56 +00:00
v-list-item-avatar(size='24'): v-icon mdi-source-branch
2019-07-29 04:50:03 +00:00
v-list-item-title Branch off from here
2020-02-24 02:22:45 +00:00
v-btn.mr-2.radius-4(
@click='setDiffSource(ph.versionId)'
icon
small
depressed
tile
:class='diffSource === ph.versionId ? `pink white--text` : `grey lighten-2`'
): strong A
v-btn.mr-0.radius-4(
@click='setDiffTarget(ph.versionId)'
icon
small
depressed
tile
:class='diffTarget === ph.versionId ? `pink white--text` : `grey lighten-2`'
): strong B
2018-10-29 02:09:58 +00:00
v-btn.ma-0.radius-7(
v-if='total > trail.length'
block
color='grey darken-2'
@click='loadMore'
)
.caption.white--text Load More...
v-chip.ma-0(
v-else
2018-10-29 02:09:58 +00:00
label
small
:color='darkMode ? `grey darken-2` : `grey lighten-2`'
:class='darkMode ? `grey--text text--lighten-2` : `grey--text text--darken-2`'
2018-11-25 06:28:20 +00:00
) End of history trail
2018-10-29 02:09:58 +00:00
2020-02-24 02:22:45 +00:00
v-flex(xs12, md8)
2018-10-29 02:09:58 +00:00
v-card.radius-7
v-card-text
v-card.grey.radius-7(flat, :class='darkMode ? `darken-2` : `lighten-4`')
2020-02-24 02:22:45 +00:00
v-row(no-gutters, align='center')
v-col(cols='11')
v-card-text
.subheading {{target.title}}
.caption {{target.description}}
v-col.text-right.py-3
v-btn.mr-3(color='primary', small, dark, outlined, @click='toggleViewMode')
v-icon(left) mdi-eye
.overline View Mode
v-card.mt-3(light, v-html='diffHTML', flat)
2018-10-29 02:09:58 +00:00
nav-footer
notify
search-results
2018-10-29 02:09:58 +00:00
</template>
<script>
2020-02-24 02:22:45 +00:00
import * as Diff2Html from 'diff2html'
2018-11-25 06:28:20 +00:00
import { createPatch } from 'diff'
2018-12-02 04:03:14 +00:00
import { get } from 'vuex-pathify'
2018-11-25 06:28:20 +00:00
import _ from 'lodash'
import historyTrailQuery from 'gql/history/history-trail-query.gql'
2018-10-29 02:09:58 +00:00
export default {
props: {
2018-11-25 06:28:20 +00:00
pageId: {
2018-10-29 02:09:58 +00:00
type: Number,
default: 0
},
locale: {
type: String,
default: 'en'
},
path: {
type: String,
default: 'home'
2018-11-25 06:28:20 +00:00
},
liveContent: {
type: String,
default: ''
2018-10-29 02:09:58 +00:00
}
},
data() {
2018-11-25 06:28:20 +00:00
return {
2020-02-24 02:22:45 +00:00
source: {
content: '',
title: '',
description: ''
},
target: {
content: '',
title: '',
description: ''
},
2018-11-25 06:28:20 +00:00
trail: [],
diffSource: 0,
diffTarget: 0,
offsetPage: 0,
2020-02-24 02:22:45 +00:00
total: 0,
viewMode: 'line-by-line'
2018-11-25 06:28:20 +00:00
}
2018-10-29 02:09:58 +00:00
},
computed: {
2018-12-02 04:03:14 +00:00
darkMode: get('site/dark'),
2018-11-25 06:28:20 +00:00
diffs() {
2020-02-24 02:22:45 +00:00
return createPatch(`/${this.path}`, this.source.content, this.target.content)
2018-11-25 06:28:20 +00:00
},
diffHTML() {
2020-02-24 02:22:45 +00:00
return Diff2Html.html(this.diffs, {
2018-11-25 06:28:20 +00:00
inputFormat: 'diff',
2020-02-24 02:22:45 +00:00
drawFileList: false,
2018-11-25 06:28:20 +00:00
matching: 'lines',
2020-02-24 02:22:45 +00:00
outputFormat: this.viewMode
2018-11-25 06:28:20 +00:00
})
}
},
watch: {
trail(newValue, oldValue) {
if (newValue && newValue.length > 0) {
this.diffTarget = _.get(_.head(newValue), 'versionId', 0)
this.diffSource = _.get(_.nth(newValue, 1), 'versionId', 0)
}
}
2018-10-29 02:09:58 +00:00
},
created () {
this.$store.commit('page/SET_ID', this.id)
this.$store.commit('page/SET_LOCALE', this.locale)
this.$store.commit('page/SET_PATH', this.path)
this.$store.commit('page/SET_MODE', 'history')
2018-11-25 06:28:20 +00:00
2020-02-24 02:22:45 +00:00
this.target.content = this.liveContent
2018-10-29 02:09:58 +00:00
},
methods: {
2020-02-24 02:22:45 +00:00
toggleViewMode () {
this.viewMode = (this.viewMode === 'line-by-line') ? 'side-by-side' : 'line-by-line'
},
2018-10-29 02:09:58 +00:00
goLive() {
window.location.assign(`/${this.path}`)
2018-11-25 06:28:20 +00:00
},
setDiffSource(versionId) {
this.diffSource = versionId
},
setDiffTarget(versionId) {
this.diffTarget = versionId
},
loadMore() {
this.offsetPage++
this.$apollo.queries.trail.fetchMore({
variables: {
id: this.pageId,
offsetPage: this.offsetPage,
offsetSize: 25
},
updateQuery: (previousResult, { fetchMoreResult }) => {
return {
pages: {
history: {
total: previousResult.pages.history.total,
trail: [...previousResult.pages.history.trail, ...fetchMoreResult.pages.history.trail],
__typename: previousResult.pages.history.__typename
},
__typename: previousResult.pages.__typename
}
}
}
})
},
2018-11-25 06:28:20 +00:00
trailColor(actionType) {
switch (actionType) {
case 'edit':
return 'primary'
case 'move':
return 'purple'
case 'initial':
return 'teal'
default:
return 'grey'
}
},
trailIcon(actionType) {
switch (actionType) {
case 'edit':
2020-02-24 02:22:45 +00:00
return '' // 'mdi-pencil'
2018-11-25 06:28:20 +00:00
case 'move':
return 'forward'
case 'initial':
2019-08-25 18:23:56 +00:00
return 'mdi-plus'
2018-11-25 06:28:20 +00:00
default:
return 'warning'
}
},
trailBgColor(actionType) {
switch (actionType) {
case 'move':
return this.darkMode ? 'purple' : 'purple lighten-5'
2018-11-25 06:28:20 +00:00
case 'initial':
return this.darkMode ? 'teal darken-3' : 'teal lighten-5'
2018-11-25 06:28:20 +00:00
default:
2020-02-24 02:22:45 +00:00
return this.darkMode ? 'grey darken-3' : 'grey lighten-4'
2018-11-25 06:28:20 +00:00
}
}
},
apollo: {
trail: {
query: historyTrailQuery,
variables() {
return {
id: this.pageId,
offsetPage: 0,
offsetSize: 25
2018-11-25 06:28:20 +00:00
}
},
manual: true,
result({ data, loading, networkStatus }) {
this.total = data.pages.history.total
this.trail = data.pages.history.trail
},
2018-11-25 06:28:20 +00:00
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'history-trail-refresh')
}
2018-10-29 02:09:58 +00:00
}
}
}
</script>
<style lang='scss'>
2018-11-25 06:28:20 +00:00
.history {
&-promptmenu {
border-top: 5px solid mc('blue', '700');
}
2020-02-24 02:22:45 +00:00
.d2h-file-wrapper {
border: 1px solid #EEE;
border-left: none;
}
.d2h-file-header {
display: none;
}
2018-11-25 06:28:20 +00:00
}
2018-10-29 02:09:58 +00:00
</style>