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

239 lines
8.8 KiB
Vue
Raw Normal View History

<template lang='pug'>
v-container.admin-system(fluid, grid-list-lg)
v-layout(row, wrap)
v-flex(xs12)
.admin-header
img.animated.fadeInUp(src='/_assets/svg/icon-tune.svg', alt='System Info', style='width: 80px;')
.admin-header-title
2019-03-17 17:39:58 +00:00
.headline.primary--text.animated.fadeInLeft {{ $t('admin:system.title') }}
2019-08-03 04:48:55 +00:00
.subtitle-1.grey--text.animated.fadeInLeft.wait-p2s {{ $t('admin:system.subtitle') }}
v-layout.mt-3(row wrap)
v-flex(lg6 xs12)
2019-03-17 17:39:58 +00:00
v-card.animated.fadeInUp
v-btn.animated.fadeInLeft.wait-p2s.btn-animate-rotate(fab, absolute, :right='!$vuetify.rtl', :left='$vuetify.rtl', top, small, light, @click='refresh'): v-icon(color='grey') mdi-refresh
2019-08-03 04:48:55 +00:00
v-subheader Wiki.js
v-list(two-line, dense)
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue.white--text mdi-application-export
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.currentVersion') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.currentVersion }}
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue.white--text mdi-inbox-arrow-up
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.latestVersion') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.latestVersion }}
2019-07-29 04:50:03 +00:00
v-list-item-action
v-list-item-action-text {{ $t('admin:system.published') }} {{ info.latestVersionReleaseDate | moment('from') }}
v-card-actions(v-if='info.upgradeCapable && !isLatestVersion && info.platform === `docker`', :class='$vuetify.theme.dark ? `grey darken-3-d5` : `indigo lighten-5`')
2019-09-22 20:32:39 +00:00
.caption.indigo--text.pl-3(:class='$vuetify.theme.dark ? `text--lighten-4` : ``') Wiki.js can perform the upgrade to the latest version for you.
v-spacer
v-btn.px-3(
color='indigo'
dark
@click='performUpgrade'
)
v-icon(left) mdi-upload
span Perform Upgrade
2019-08-25 18:23:56 +00:00
v-card.mt-4.animated.fadeInUp.wait-p2s
2019-08-03 04:48:55 +00:00
v-subheader {{ $t('admin:system.hostInfo') }}
v-list(two-line, dense)
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
v-avatar.blue-grey(size='40')
2019-08-03 04:48:55 +00:00
v-icon(color='white') {{platformLogo}}
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.os') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ (info.platform === 'docker') ? 'Docker Container (Linux)' : info.operatingSystem }}
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue-grey.white--text mdi-desktop-classic
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.hostname') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.hostname }}
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue-grey.white--text mdi-cpu-64-bit
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.cpuCores') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.cpuCores }}
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue-grey.white--text mdi-memory
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.totalRAM') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.ramTotal }}
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue-grey.white--text mdi-iframe-outline
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.workingDirectory') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.workingDirectory }}
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
2019-08-03 04:48:55 +00:00
v-icon.blue-grey.white--text mdi-card-bulleted-settings-outline
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ $t('admin:system.configFile') }}
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.configFile }}
v-flex(lg6 xs12)
2019-03-17 17:39:58 +00:00
v-card.pb-3.animated.fadeInUp.wait-p4s
2019-08-03 04:48:55 +00:00
v-subheader Node.js
v-list(dense)
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
v-avatar.light-green(size='40')
2019-08-03 04:48:55 +00:00
v-icon(color='white') mdi-nodejs
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title {{ info.nodeVersion }}
2019-08-03 04:48:55 +00:00
v-divider.mt-3
v-subheader {{ info.dbType }}
v-list(dense)
v-list-item
2019-07-29 04:50:03 +00:00
v-list-item-avatar
v-avatar.indigo.darken-1(size='40')
2019-08-03 04:48:55 +00:00
v-icon(color='white') mdi-database
2019-07-29 04:50:03 +00:00
v-list-item-content
v-list-item-title(v-html='dbVersion')
2019-08-03 04:48:55 +00:00
v-list-item-subtitle {{ info.dbHost }}
2019-08-03 04:48:55 +00:00
v-alert.mt-3.mx-4(:value='isDbLimited', color='deep-orange darken-2', icon='mdi-alert', dark) {{ $t('admin:system.dbPartialSupport') }}
2019-09-22 20:32:39 +00:00
v-dialog(
v-model='isUpgrading'
persistent
width='450'
)
v-card.blue.darken-5(dark)
v-card-text.text-center.pa-10
self-building-square-spinner(
:animation-duration='4000'
:size='40'
color='#FFF'
style='margin: 0 auto;'
)
.body-2.mt-5.blue--text.text--lighten-4 Your Wiki.js container is being upgraded...
.caption.blue--text.text--lighten-2 Please wait
v-progress-linear.mt-5(
color='blue lighten-2'
:value='upgradeProgress'
:buffer-value='upgradeProgress'
rounded
:stream='isUpgradingStarted'
query
:indeterminate='!isUpgradingStarted'
)
</template>
<script>
2018-09-08 19:49:36 +00:00
import _ from 'lodash'
2019-09-22 20:32:39 +00:00
import { SelfBuildingSquareSpinner } from 'epic-spinners'
import systemInfoQuery from 'gql/admin/system/system-query-info.gql'
2019-09-22 20:32:39 +00:00
import performUpgradeMutation from 'gql/admin/system/system-mutation-upgrade.gql'
export default {
2019-09-22 20:32:39 +00:00
components: {
SelfBuildingSquareSpinner
},
data () {
2018-03-18 04:34:32 +00:00
return {
2019-09-22 20:32:39 +00:00
isUpgrading: false,
isUpgradingStarted: false,
upgradeProgress: 0,
info: {}
2018-03-18 04:34:32 +00:00
}
},
2018-09-08 19:49:36 +00:00
computed: {
2019-09-22 20:32:39 +00:00
dbVersion () {
2018-09-08 19:49:36 +00:00
return _.get(this.info, 'dbVersion', '').replace(/(?:\r\n|\r|\n)/g, '<br />')
},
2019-09-22 20:32:39 +00:00
platformLogo () {
switch (this.info.platform) {
case 'docker':
2019-08-03 04:48:55 +00:00
return 'mdi-docker'
case 'darwin':
2019-08-03 04:48:55 +00:00
return 'mdi-apple'
case 'linux':
2019-08-03 04:48:55 +00:00
if (this.info.operatingSystem.indexOf('Ubuntu')) {
return 'mdi-ubuntu'
} else {
return 'mdi-linux'
}
case 'win32':
return 'mdi-microsoft-windows'
default:
return ''
}
},
2019-09-22 20:32:39 +00:00
isDbLimited () {
return this.info.dbType === 'MySQL' && this.dbVersion.indexOf('5.') === 0
2019-09-22 20:32:39 +00:00
},
isLatestVersion () {
return this.info.currentVersion === this.info.latestVersion
2018-09-08 19:49:36 +00:00
}
},
2018-03-18 04:34:32 +00:00
methods: {
2019-09-22 20:32:39 +00:00
async refresh () {
2018-03-18 04:34:32 +00:00
await this.$apollo.queries.info.refetch()
this.$store.commit('showNotification', {
2019-06-05 03:39:30 +00:00
message: this.$t('admin:system.refreshSuccess'),
style: 'success',
icon: 'cached'
})
2019-09-22 20:32:39 +00:00
},
async performUpgrade () {
this.isUpgrading = true
this.isUpgradingStarted = false
this.upgradeProgress = 0
this.$store.commit(`loadingStart`, 'admin-system-upgrade')
try {
const respRaw = await this.$apollo.mutate({
mutation: performUpgradeMutation
})
const resp = _.get(respRaw, 'data.system.performUpgrade.responseResult', {})
if (resp.succeeded) {
this.isUpgradingStarted = true
let progressInterval = setInterval(() => {
this.upgradeProgress += 0.83
}, 500)
_.delay(() => {
clearInterval(progressInterval)
window.location.reload(true)
}, 60000)
} else {
throw new Error(resp.message)
}
} catch (err) {
this.$store.commit('pushGraphError', err)
this.$store.commit(`loadingStop`, 'admin-system-upgrade')
this.isUpgrading = false
}
}
},
apollo: {
info: {
query: systemInfoQuery,
2018-06-04 04:41:29 +00:00
fetchPolicy: 'network-only',
update: (data) => data.system.info,
watchLoading (isLoading) {
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-system-refresh')
}
2018-03-18 04:34:32 +00:00
}
}
}
</script>
<style lang='scss'>
.admin-system {
.v-list-item-title, .v-list-item__subtitle {
user-select: text;
}
}
</style>