vikunja-frontend/src/components/Home.vue

42 lines
1 KiB
Vue
Raw Normal View History

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 {{userInfo.username}}!</h2>
2018-09-09 16:22:02 +02:00
<p>Click on a list or namespace on the left to get started.</p>
<router-link
class="button is-primary is-right noshadow is-outlined"
:to="{name: 'migrateStart'}"
v-if="migratorsEnabled"
>
Import your data into Vikunja
</router-link>
<TaskOverview :show-all="true"/>
2018-09-06 19:46:38 +02:00
</div>
</template>
<script>
import router from '../router'
import {mapState} from 'vuex'
2018-09-06 19:46:38 +02:00
export default {
name: "Home",
data() {
return {
2018-11-06 15:54:25 +01:00
loading: false,
currentDate: new Date(),
2018-11-06 15:54:25 +01:00
tasks: []
}
},
beforeMount() {
// Check if the user is already logged in, if so, redirect him to the homepage
if (!this.authenticated) {
router.push({name: 'login'})
}
},
computed: mapState({
migratorsEnabled: state => state.config.availableMigrators !== null && state.config.availableMigrators.length > 0,
authenticated: state => state.auth.authenticated,
userInfo: state => state.auth.info,
}),
}
2018-09-06 19:46:38 +02:00
</script>