2018-09-06 19:46:38 +02:00
|
|
|
<template>
|
2018-09-09 16:22:02 +02:00
|
|
|
<div class="content has-text-centered">
|
|
|
|
<h2>Hi {{user.infos.username}}!</h2>
|
|
|
|
<p>Click on a list or namespace on the left to get started.</p>
|
2018-12-25 23:41:55 +01:00
|
|
|
<TaskOverview :show-all="true"/>
|
2018-09-06 19:46:38 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import auth from '../auth'
|
|
|
|
import router from '../router'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Home",
|
2018-09-09 16:22:02 +02:00
|
|
|
data() {
|
2018-09-06 19:46:38 +02:00
|
|
|
return {
|
2018-11-06 15:54:25 +01:00
|
|
|
user: auth.user,
|
|
|
|
loading: false,
|
2018-12-25 23:41:55 +01:00
|
|
|
currentDate: new Date(),
|
2018-11-06 15:54:25 +01:00
|
|
|
tasks: []
|
2018-09-06 19:46:38 +02:00
|
|
|
}
|
2018-09-09 16:22:02 +02:00
|
|
|
},
|
2018-09-06 19:46:38 +02:00
|
|
|
beforeMount() {
|
|
|
|
// Check if the user is already logged in, if so, redirect him to the homepage
|
2018-11-01 22:34:29 +01:00
|
|
|
if (!auth.user.authenticated) {
|
2018-09-06 19:46:38 +02:00
|
|
|
router.push({name: 'login'})
|
|
|
|
}
|
|
|
|
},
|
2018-09-06 20:01:03 +02:00
|
|
|
methods: {
|
2018-09-09 16:22:02 +02:00
|
|
|
logout() {
|
2018-09-06 20:01:03 +02:00
|
|
|
auth.logout()
|
2018-11-06 15:54:25 +01:00
|
|
|
},
|
2018-09-06 20:01:03 +02:00
|
|
|
},
|
2018-09-06 19:46:38 +02:00
|
|
|
}
|
|
|
|
</script>
|