wikijs-fork/client/js/pages/all.js

40 lines
1021 B
JavaScript
Raw Normal View History

'use strict'
import $ from 'jquery'
2017-04-18 02:44:04 +00:00
import Vue from 'vue'
import _ from 'lodash'
module.exports = (alerts, socket) => {
if ($('#page-type-all').length) {
2017-04-18 02:44:04 +00:00
let vueAllPages = new Vue({ // eslint-disable-line no-unused-vars
el: '#page-type-all',
data: {
tree: []
},
methods: {
fetch: function (basePath) {
let self = this
$('#notifload').addClass('active')
Vue.nextTick(() => {
socket.emit('treeFetch', { basePath }, (data) => {
if (self.tree.length > 0) {
let curTree = _.last(self.tree)
curTree.hasChildren = true
_.find(curTree.pages, { _id: basePath }).isActive = true
}
self.tree.push({
hasChildren: false,
pages: data
})
$('#notifload').removeClass('active')
})
})
}
},
mounted: function () {
this.fetch('')
}
})
}
}