2018-01-09 16:52:26 +00:00
|
|
|
<template>
|
2019-01-21 14:08:22 +00:00
|
|
|
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
|
2019-04-03 15:29:03 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="navbar-brand">
|
|
|
|
<router-link class="navbar-item" :to="{ name: 'Home' }"><logo /></router-link>
|
2019-01-18 13:47:10 +00:00
|
|
|
|
2019-04-03 15:29:03 +00:00
|
|
|
<a
|
|
|
|
role="button"
|
|
|
|
class="navbar-burger burger"
|
|
|
|
aria-label="menu"
|
|
|
|
aria-expanded="false"
|
|
|
|
data-target="navbarBasicExample"
|
|
|
|
@click="showNavbar = !showNavbar" :class="{ 'is-active': showNavbar }"
|
|
|
|
>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="navbar-menu" :class="{ 'is-active': showNavbar }">
|
|
|
|
<div class="navbar-end">
|
|
|
|
<div class="navbar-item">
|
|
|
|
<search-field />
|
|
|
|
</div>
|
|
|
|
<div class="navbar-item" v-if="!currentUser.isLoggedIn">
|
|
|
|
<div class="buttons">
|
|
|
|
<router-link class="button is-primary" v-if="config && config.registrationsOpen" :to="{ name: 'Register' }">
|
|
|
|
<strong>
|
|
|
|
<translate>Sign up</translate>
|
|
|
|
</strong>
|
|
|
|
</router-link>
|
|
|
|
<router-link class="button is-primary" :to="{ name: 'Login' }">
|
|
|
|
<translate>Log in</translate>
|
|
|
|
</router-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="navbar-item has-dropdown is-hoverable" v-else>
|
|
|
|
<router-link
|
|
|
|
class="navbar-link"
|
|
|
|
v-if="currentUser.isLoggedIn && loggedPerson"
|
|
|
|
:to="{ name: 'Profile', params: { name: loggedPerson.preferredUsername} }"
|
|
|
|
>
|
|
|
|
<figure class="image is-24x24">
|
|
|
|
<img :src="loggedPerson.avatarUrl">
|
|
|
|
</figure>
|
|
|
|
<span>{{ loggedPerson.preferredUsername }}</span>
|
|
|
|
</router-link>
|
2019-04-01 09:49:54 +00:00
|
|
|
|
2019-04-03 15:29:03 +00:00
|
|
|
<div class="navbar-dropdown">
|
|
|
|
<a class="navbar-item"><translate>My account</translate></a>
|
|
|
|
<a class="navbar-item" v-on:click="logout()"><translate>Log out</translate></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-21 14:08:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2018-01-09 16:52:26 +00:00
|
|
|
</template>
|
|
|
|
|
2018-12-21 14:41:34 +00:00
|
|
|
<script lang="ts">
|
2019-03-22 09:57:14 +00:00
|
|
|
import { Component, Vue, Watch } from 'vue-property-decorator';
|
2019-04-01 09:49:54 +00:00
|
|
|
import { CURRENT_USER_CLIENT, UPDATE_CURRENT_USER_CLIENT } from '@/graphql/user';
|
2019-03-22 09:57:14 +00:00
|
|
|
import { onLogout } from '@/vue-apollo';
|
|
|
|
import { deleteUserData } from '@/utils/auth';
|
|
|
|
import { LOGGED_PERSON } from '@/graphql/actor';
|
2019-04-03 15:29:03 +00:00
|
|
|
import { IPerson } from '@/types/actor.model';
|
2019-03-22 12:58:19 +00:00
|
|
|
import { CONFIG } from '@/graphql/config';
|
|
|
|
import { IConfig } from '@/types/config.model';
|
2019-04-03 15:29:03 +00:00
|
|
|
import { ICurrentUser } from '@/types/current-user.model';
|
|
|
|
import Logo from '@/components/Logo.vue';
|
|
|
|
import SearchField from '@/components/SearchField.vue';
|
2018-12-21 14:41:34 +00:00
|
|
|
|
2019-01-24 14:57:45 +00:00
|
|
|
@Component({
|
2018-12-21 16:10:39 +00:00
|
|
|
apollo: {
|
2019-01-18 13:47:10 +00:00
|
|
|
currentUser: {
|
2019-03-22 09:57:14 +00:00
|
|
|
query: CURRENT_USER_CLIENT,
|
2019-01-21 14:08:22 +00:00
|
|
|
},
|
2019-03-22 12:58:19 +00:00
|
|
|
config: {
|
|
|
|
query: CONFIG,
|
2019-03-21 19:23:42 +00:00
|
|
|
},
|
|
|
|
},
|
2019-04-03 15:29:03 +00:00
|
|
|
components: {
|
|
|
|
Logo,
|
|
|
|
SearchField,
|
|
|
|
},
|
2018-12-21 16:10:39 +00:00
|
|
|
})
|
|
|
|
export default class NavBar extends Vue {
|
|
|
|
notifications = [
|
2019-03-22 09:57:14 +00:00
|
|
|
{ header: 'Coucou' },
|
|
|
|
{ title: "T'as une notification", subtitle: 'Et elle est cool' },
|
2018-12-21 16:10:39 +00:00
|
|
|
];
|
2019-04-01 09:49:54 +00:00
|
|
|
loggedPerson: IPerson | null = null;
|
2019-03-22 12:58:19 +00:00
|
|
|
config!: IConfig;
|
2019-04-01 09:49:54 +00:00
|
|
|
currentUser!: ICurrentUser;
|
2019-04-03 15:29:03 +00:00
|
|
|
showNavbar: boolean = false;
|
2018-12-21 14:41:34 +00:00
|
|
|
|
2019-04-01 09:49:54 +00:00
|
|
|
@Watch('currentUser')
|
|
|
|
async onCurrentUserChanged() {
|
|
|
|
// Refresh logged person object
|
|
|
|
if (this.currentUser.isLoggedIn) {
|
|
|
|
const result = await this.$apollo.query({
|
|
|
|
query: LOGGED_PERSON,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.loggedPerson = result.data.loggedPerson;
|
|
|
|
} else {
|
|
|
|
this.loggedPerson = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async logout() {
|
|
|
|
await this.$apollo.mutate({
|
|
|
|
mutation: UPDATE_CURRENT_USER_CLIENT,
|
|
|
|
variables: {
|
|
|
|
id: null,
|
|
|
|
email: null,
|
|
|
|
isLoggedIn: false,
|
|
|
|
},
|
|
|
|
});
|
2019-01-18 13:47:10 +00:00
|
|
|
|
|
|
|
deleteUserData();
|
|
|
|
|
2019-04-03 15:29:03 +00:00
|
|
|
onLogout(this.$apollo);
|
2019-04-01 09:49:54 +00:00
|
|
|
|
2019-04-03 15:29:03 +00:00
|
|
|
return this.$router.push({ path: '/' });
|
2019-01-18 13:47:10 +00:00
|
|
|
}
|
2018-12-21 16:10:39 +00:00
|
|
|
}
|
2018-12-21 14:41:34 +00:00
|
|
|
</script>
|
2019-04-03 15:29:03 +00:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "../variables.scss";
|
|
|
|
|
|
|
|
nav {
|
|
|
|
border-bottom: solid 1px #0a0a0a;
|
|
|
|
}
|
|
|
|
</style>
|