frontend/src/App.vue

105 lines
3.0 KiB
Vue
Raw Normal View History

2018-08-28 20:50:22 +00:00
<template>
2018-09-07 06:42:17 +00:00
<div id="app" class="container">
<div class="column is-centered" v-if="user.authenticated">
<button v-on:click="logout()" class="button is-right">Logout</button>
</div>
<div class="column is-centered">
<div class="box" v-if="user.authenticated">
<div class="container">
<div class="columns">
<div class="column is-3">
<aside class="menu">
2018-09-07 20:44:07 +00:00
<p class="menu-label" v-if="loading">Loading...</p>
2018-09-07 06:42:17 +00:00
<template v-for="n in namespaces">
2018-09-07 20:44:07 +00:00
<p class="menu-label" :key="n.id">
2018-09-07 06:42:17 +00:00
{{n.name}}
</p>
2018-09-07 20:44:07 +00:00
<ul class="menu-list" :key="n.id + 'child'">
<li v-for="l in n.lists" :key="l.id">
<a>{{l.title}}</a>
</li>
2018-09-07 06:42:17 +00:00
</ul>
</template>
</aside>
</div>
<div class="column is-9">
2018-09-07 20:44:07 +00:00
<button class="button is-success" v-on:click="loadNamespaces()">Load Namespaces</button>
2018-09-07 06:42:17 +00:00
<router-view/>
</div>
</div>
</div>
</div>
<div v-else>
<router-view/>
</div>
</div>
</div>
2018-08-28 20:50:22 +00:00
</template>
<script>
2018-09-07 06:42:17 +00:00
import auth from './auth'
import {HTTP} from './http-common'
export default {
2018-09-07 06:42:17 +00:00
name: 'app',
data() {
return {
user: auth.user,
loading: false,
namespaces: [],
}
},
created() {
if (this.user.authenticated) {
this.loadNamespaces()
}
2018-09-07 06:42:17 +00:00
},
methods: {
logout() {
auth.logout()
},
loadNamespaces() {
this.loading = true
this.namespaces = []
HTTP.get(`namespaces`, {headers: {'Authorization': 'Bearer ' + localStorage.getItem('token')}})
.then(response => {
2018-09-07 20:44:07 +00:00
let nps = response.data
2018-09-07 06:42:17 +00:00
2018-09-07 20:44:07 +00:00
// Loop through the namespaces and get their lists
for (const n in nps) {
2018-09-07 06:42:17 +00:00
2018-09-07 20:44:07 +00:00
this.namespaces.push(nps[n])
2018-09-07 06:42:17 +00:00
2018-09-07 20:44:07 +00:00
HTTP.get(`namespaces/` + nps[n].id + `/lists`, {headers: {'Authorization': 'Bearer ' + localStorage.getItem('token')}})
2018-09-07 06:42:17 +00:00
.then(response => {
2018-09-07 20:44:07 +00:00
// This adds a new element "list" to our object which contains all lists
this.$set(this.namespaces[n], 'lists', response.data)
2018-09-07 06:42:17 +00:00
})
.catch(e => {
this.loading = false
// eslint-disable-next-line
console.log(e)
})
}
this.loading = false
})
.catch(e => {
this.loading = false
// eslint-disable-next-line
console.log(e)
})
},
},
}
2018-08-28 20:50:22 +00:00
</script>
<style>
2018-09-06 18:15:49 +00:00
body {
background: #f5f5f5;
min-height: 100vh;
}
2018-08-28 20:50:22 +00:00
</style>