main/view/vue/header.vue

49 lines
1.2 KiB
Vue
Raw Normal View History

<template>
<div id='HEADER'>
2017-12-01 14:47:14 +00:00
<!-- Header Icon+Title -->
<div id='header-icon' @click='gstore.func.toggleMenuSize'>
2017-12-01 14:47:14 +00:00
<div class='header-title'>{{ gstore.header_title }}</div>
</div>
<!-- Header Info -->
2017-12-03 15:02:18 +00:00
<div id='header-info' v-show='gstore.info.active' :class='gstore.info.type'>{{ gstore.info.message }}</div>
2017-12-01 14:47:14 +00:00
<!-- Header Notif -->
<div id='header-notif'>
<div v-for='(notif, link) in gstore.notif' @click='show_notif(link)' :class='"hnotif " + notif.class' :data-count='notif.count'></div>
<div v-if='!is_connected' @click='show_login()' class='hnotif login'></div>
<div v-if='is_connected' @click='logout()' class='hnotif logout'></div>
2017-12-01 14:47:14 +00:00
</div>
</div>
</template>
<script>
export default {
2017-12-01 14:47:14 +00:00
name: 'HEADER',
data(){
return {
gstore: gstore.data,
is_connected: _SERVER.session.connected
};
},
2017-12-03 15:02:18 +00:00
methods: {
show_notif(uri){
this.gstore.func.nav(this.$router, uri);
},
show_login() {
this.gstore.signupform = false;
this.gstore.loginform = !this.gstore.loginform;
},
logout() {
api.call('DELETE user/logout', null, function() {
document.location = '';
});
2017-12-03 15:02:18 +00:00
}
}
}
</script>