97 lines
2.6 KiB
Vue
97 lines
2.6 KiB
Vue
|
<template>
|
||
|
<v-app>
|
||
|
<MyNav :user="user" :site_info="site_info" />
|
||
|
<v-main class="ma-4">
|
||
|
<router-view :site_info="site_info" :user_info="user_info"></router-view>
|
||
|
</v-main>
|
||
|
</v-app>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import MyNav from './components/MyNav.vue'
|
||
|
import axios from 'axios'
|
||
|
|
||
|
export default {
|
||
|
name: 'App',
|
||
|
components: {
|
||
|
MyNav,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
site_info: {
|
||
|
name: "Loading...",
|
||
|
features: {}
|
||
|
},
|
||
|
user: {
|
||
|
first_name: "",
|
||
|
last_name: "",
|
||
|
email: "",
|
||
|
token: "",
|
||
|
logged_in: false
|
||
|
},
|
||
|
user_info: {}
|
||
|
}
|
||
|
},
|
||
|
watch: {
|
||
|
'user.logged_in'(val) {
|
||
|
console.log("Login status is " + val)
|
||
|
},
|
||
|
'site_info.name'() {
|
||
|
document.title = this.site_info.name
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
checkLoginStatus() {
|
||
|
let url = this.$api_url + "/users/check_login"
|
||
|
console.log("Checking login status...")
|
||
|
axios
|
||
|
.post(url)
|
||
|
.then(resp => {
|
||
|
this.user.logged_in = resp.data.logged_in
|
||
|
this.user.first_name = resp.data.user.first_name
|
||
|
if (this.user.logged_in) {
|
||
|
console.log("Logged in.")
|
||
|
if (window.location.pathname == "/login") {
|
||
|
this.$router.push("/")
|
||
|
}
|
||
|
this.getUserInfo()
|
||
|
} else {
|
||
|
console.log("Not logged in.")
|
||
|
this.$router.push("/login")
|
||
|
}
|
||
|
})
|
||
|
.catch(error => {
|
||
|
console.log("Error checking login status..." + error)
|
||
|
this.$router.push("/login")
|
||
|
})
|
||
|
|
||
|
},
|
||
|
async getSiteInfo() {
|
||
|
axios
|
||
|
.get(this.$api_url + "/info")
|
||
|
.then(response => {this.site_info = response.data})
|
||
|
.catch(error => (console.log(error)))
|
||
|
|
||
|
},
|
||
|
async getUserInfo() {
|
||
|
let url = this.$api_url + "/users/info"
|
||
|
console.log(url)
|
||
|
axios.get(url)
|
||
|
.then(resp => {
|
||
|
this.user_info = resp.data
|
||
|
})
|
||
|
.catch(err => {
|
||
|
console.log(err)
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
this.getSiteInfo()
|
||
|
if (window.location.pathname != "/login") {
|
||
|
this.checkLoginStatus()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</script>
|