2020-02-16 18:30:00 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import TopNav from './components/top-nav/top-nav.vue'
|
|
|
|
import SideNav from './components/side-nav/side-nav.vue'
|
|
|
|
import $ from 'jquery'
|
|
|
|
import { shell } from 'electron'
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
name: 'App',
|
|
|
|
components: {
|
|
|
|
TopNav,
|
|
|
|
SideNav
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
isOpen: function () {
|
|
|
|
return this.$store.getters.getIsSideNavOpen
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted: function () {
|
2020-02-27 03:10:56 +00:00
|
|
|
this.$store.dispatch('grabUserSettings')
|
|
|
|
|
|
|
|
const theme = localStorage.getItem('theme')
|
|
|
|
console.log(theme)
|
|
|
|
|
|
|
|
if (theme !== null) {
|
|
|
|
this.updateTheme(theme)
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
// Open links externally by default
|
|
|
|
$(document).on('click', 'a[href^="http"]', (event) => {
|
|
|
|
const el = event.currentTarget
|
|
|
|
console.log(el)
|
|
|
|
if (typeof (shell) !== 'undefined') {
|
|
|
|
event.preventDefault()
|
|
|
|
shell.openExternal(el.href)
|
|
|
|
}
|
|
|
|
})
|
2020-02-27 03:10:56 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
updateTheme: function (theme) {
|
|
|
|
console.log(theme)
|
|
|
|
const body = document.getElementsByTagName('body')[0]
|
|
|
|
body.className = theme
|
|
|
|
localStorage.setItem('theme', theme)
|
|
|
|
}
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
})
|