fee4f9add8
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
535 lines
18 KiB
Vue
535 lines
18 KiB
Vue
<template>
|
|
<nav
|
|
class="bg-white border-gray-200 px-2 sm:px-4 py-2.5 dark:bg-zinc-900"
|
|
id="navbar"
|
|
>
|
|
<div
|
|
class="container mx-auto flex flex-wrap items-center mx-auto gap-2 sm:gap-4"
|
|
>
|
|
<router-link
|
|
:to="{ name: RouteName.HOME }"
|
|
class="flex items-center"
|
|
:class="{ 'flex-1': !currentActor?.id }"
|
|
>
|
|
<MobilizonLogo class="w-40" />
|
|
</router-link>
|
|
<div class="flex items-center md:order-2 ml-auto" v-if="currentActor?.id">
|
|
<o-dropdown position="bottom-left">
|
|
<template #trigger>
|
|
<button
|
|
type="button"
|
|
class="flex sm:mr-3 text-sm rounded-full md:mr-0 focus:ring-4 focus:ring-gray-300 dark:focus:ring-gray-600"
|
|
id="user-menu-button"
|
|
aria-expanded="false"
|
|
>
|
|
<span class="sr-only">{{ t("Open user menu") }}</span>
|
|
<figure class="h-8 w-8" v-if="currentActor?.avatar">
|
|
<img
|
|
class="rounded-full w-full h-full object-cover"
|
|
alt=""
|
|
:src="currentActor?.avatar.url"
|
|
width="32"
|
|
height="32"
|
|
loading="lazy"
|
|
/>
|
|
</figure>
|
|
<AccountCircle v-else :size="32" />
|
|
</button>
|
|
</template>
|
|
|
|
<!-- Dropdown menu -->
|
|
<div
|
|
class="z-50 text-base list-none bg-white rounded divide-y divide-gray-100 dark:bg-zinc-700 dark:divide-gray-600 max-w-xs"
|
|
position="bottom-left"
|
|
>
|
|
<o-dropdown-item aria-role="listitem">
|
|
<div class="px-4">
|
|
<span class="block text-sm text-zinc-900 dark:text-white">{{
|
|
displayName(currentActor)
|
|
}}</span>
|
|
<span
|
|
class="block text-sm font-medium text-zinc-500 truncate dark:text-zinc-400"
|
|
v-if="currentUser?.role === ICurrentUserRole.ADMINISTRATOR"
|
|
>{{ t("Administrator") }}</span
|
|
>
|
|
<span
|
|
class="block text-sm font-medium text-zinc-500 truncate dark:text-zinc-400"
|
|
v-if="currentUser?.role === ICurrentUserRole.MODERATOR"
|
|
>{{ t("Moderator") }}</span
|
|
>
|
|
</div>
|
|
</o-dropdown-item>
|
|
<o-dropdown-item
|
|
v-for="identity in identities"
|
|
:active="identity.id === currentActor.id"
|
|
:key="identity.id"
|
|
tabindex="0"
|
|
@click="
|
|
setIdentity({
|
|
preferredUsername: identity.preferredUsername,
|
|
})
|
|
"
|
|
@keyup.enter="
|
|
setIdentity({
|
|
preferredUsername: identity.preferredUsername,
|
|
})
|
|
"
|
|
>
|
|
<div class="flex gap-1 items-center">
|
|
<div class="flex-none">
|
|
<figure class="" v-if="identity.avatar">
|
|
<img
|
|
class="rounded-full h-8 w-8"
|
|
loading="lazy"
|
|
:src="identity.avatar.url"
|
|
alt=""
|
|
height="32"
|
|
width="32"
|
|
/>
|
|
</figure>
|
|
<AccountCircle v-else :size="32" />
|
|
</div>
|
|
|
|
<div
|
|
class="text-base text-zinc-700 dark:text-zinc-100 flex flex-col flex-auto overflow-hidden items-start"
|
|
>
|
|
<p class="truncate">{{ displayName(identity) }}</p>
|
|
<p class="truncate text-sm" v-if="identity.name">
|
|
@{{ identity.preferredUsername }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</o-dropdown-item>
|
|
<o-dropdown-item
|
|
aria-role="listitem"
|
|
tag="router-link"
|
|
:to="{ name: RouteName.SETTINGS }"
|
|
>
|
|
<span
|
|
class="block py-2 px-4 text-sm text-zinc-700 dark:text-zinc-200 dark:hover:text-white"
|
|
>{{ t("My account") }}</span
|
|
>
|
|
</o-dropdown-item>
|
|
<o-dropdown-item
|
|
aria-role="listitem"
|
|
v-if="currentUser?.role === ICurrentUserRole.ADMINISTRATOR"
|
|
tag="router-link"
|
|
:to="{ name: RouteName.ADMIN_DASHBOARD }"
|
|
>
|
|
<span
|
|
class="block py-2 px-4 text-sm text-zinc-700 dark:text-zinc-200 dark:hover:text-white"
|
|
>{{ t("Administration") }}</span
|
|
>
|
|
</o-dropdown-item>
|
|
<o-dropdown-item
|
|
aria-role="listitem"
|
|
@click="logout"
|
|
@keyup.enter="logout"
|
|
>
|
|
<span
|
|
class="block py-2 px-4 text-sm text-zinc-700 dark:text-zinc-200 dark:hover:text-white"
|
|
>{{ t("Log out") }}</span
|
|
>
|
|
</o-dropdown-item>
|
|
</div>
|
|
</o-dropdown>
|
|
</div>
|
|
<button
|
|
@click="showMobileMenu = !showMobileMenu"
|
|
type="button"
|
|
class="inline-flex items-center p-2 ml-1 text-sm text-zinc-500 rounded-lg md:hidden hover:bg-zinc-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-zinc-400 dark:hover:bg-zinc-700 dark:focus:ring-gray-600"
|
|
aria-controls="mobile-menu-2"
|
|
aria-expanded="false"
|
|
>
|
|
<span class="sr-only">{{ t("Open main menu") }}</span>
|
|
<svg
|
|
class="w-6 h-6"
|
|
aria-hidden="true"
|
|
fill="currentColor"
|
|
viewBox="0 0 20 20"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
fill-rule="evenodd"
|
|
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
|
|
clip-rule="evenodd"
|
|
></path>
|
|
</svg>
|
|
</button>
|
|
<div
|
|
class="justify-between items-center w-full md:flex md:w-auto md:order-1"
|
|
id="mobile-menu-2"
|
|
:class="{ hidden: !showMobileMenu }"
|
|
>
|
|
<ul
|
|
class="flex flex-col md:flex-row md:space-x-8 mt-2 md:mt-0 md:font-lightbold"
|
|
>
|
|
<li v-if="currentActor?.id">
|
|
<router-link
|
|
:to="{ name: RouteName.MY_EVENTS }"
|
|
class="block py-2 pr-4 pl-3 text-zinc-700 border-b border-gray-100 hover:bg-zinc-50 md:hover:bg-transparent md:border-0 md:hover:text-mbz-purple-700 md:p-0 dark:text-zinc-400 md:dark:hover:text-white dark:hover:bg-zinc-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
|
|
>{{ t("My events") }}</router-link
|
|
>
|
|
</li>
|
|
<li v-if="currentActor?.id">
|
|
<router-link
|
|
:to="{ name: RouteName.MY_GROUPS }"
|
|
class="block py-2 pr-4 pl-3 text-zinc-700 border-b border-gray-100 hover:bg-zinc-50 md:hover:bg-transparent md:border-0 md:hover:text-mbz-purple-700 md:p-0 dark:text-zinc-400 md:dark:hover:text-white dark:hover:bg-zinc-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
|
|
>{{ t("My groups") }}</router-link
|
|
>
|
|
</li>
|
|
<li v-if="!currentActor?.id">
|
|
<router-link
|
|
:to="{ name: RouteName.LOGIN }"
|
|
class="block py-2 pr-4 pl-3 text-zinc-700 border-b border-gray-100 hover:bg-zinc-50 md:hover:bg-transparent md:border-0 md:hover:text-mbz-purple-700 md:p-0 dark:text-zinc-400 md:dark:hover:text-white dark:hover:bg-zinc-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
|
|
>{{ t("Login") }}</router-link
|
|
>
|
|
</li>
|
|
<li v-if="!currentActor?.id">
|
|
<router-link
|
|
:to="{ name: RouteName.REGISTER }"
|
|
class="block py-2 pr-4 pl-3 text-zinc-700 border-b border-gray-100 hover:bg-zinc-50 md:hover:bg-transparent md:border-0 md:hover:text-mbz-purple-700 md:p-0 dark:text-zinc-400 md:dark:hover:text-white dark:hover:bg-zinc-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
|
|
>{{ t("Register") }}</router-link
|
|
>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<!-- <o-navbar
|
|
id="navbar"
|
|
type="is-secondary"
|
|
wrapper-class="container mx-auto"
|
|
v-model:active="mobileNavbarActive"
|
|
>
|
|
<template #brand>
|
|
<o-navbar-item
|
|
tag="router-link"
|
|
:to="{ name: RouteName.HOME }"
|
|
:aria-label="$t('Home')"
|
|
>
|
|
<logo />
|
|
</o-navbar-item>
|
|
</template>
|
|
<template #start>
|
|
<o-navbar-item tag="router-link" :to="{ name: RouteName.SEARCH }">{{
|
|
$t("Explore")
|
|
}}</o-navbar-item>
|
|
<o-navbar-item
|
|
v-if="currentActor.id && currentUser?.isLoggedIn"
|
|
tag="router-link"
|
|
:to="{ name: RouteName.MY_EVENTS }"
|
|
>{{ $t("My events") }}</o-navbar-item
|
|
>
|
|
<o-navbar-item
|
|
tag="router-link"
|
|
:to="{ name: RouteName.MY_GROUPS }"
|
|
v-if="
|
|
config &&
|
|
config.features.groups &&
|
|
currentActor.id &&
|
|
currentUser?.isLoggedIn
|
|
"
|
|
>{{ $t("My groups") }}</o-navbar-item
|
|
>
|
|
<o-navbar-item
|
|
tag="span"
|
|
v-if="
|
|
config &&
|
|
config.features.eventCreation &&
|
|
currentActor.id &&
|
|
currentUser?.isLoggedIn
|
|
"
|
|
>
|
|
<o-button
|
|
v-if="!hideCreateEventsButton"
|
|
tag="router-link"
|
|
:to="{ name: RouteName.CREATE_EVENT }"
|
|
variant="primary"
|
|
>{{ $t("Create") }}</o-button
|
|
>
|
|
</o-navbar-item>
|
|
</template>
|
|
<template #end>
|
|
<o-navbar-item tag="div">
|
|
<search-field @navbar-search="mobileNavbarActive = false" />
|
|
</o-navbar-item>
|
|
|
|
<o-navbar-dropdown
|
|
v-if="currentActor.id && currentUser?.isLoggedIn"
|
|
right
|
|
collapsible
|
|
ref="user-dropdown"
|
|
tabindex="0"
|
|
tag="span"
|
|
@keyup.enter="toggleMenu"
|
|
>
|
|
<template #label v-if="currentActor">
|
|
<div class="identity-wrapper">
|
|
<div>
|
|
<figure class="image is-32x32" v-if="currentActor.avatar">
|
|
<img
|
|
class="is-rounded"
|
|
alt="avatarUrl"
|
|
:src="currentActor.avatar.url"
|
|
/>
|
|
</figure>
|
|
<o-icon v-else icon="account-circle" />
|
|
</div>
|
|
<div class="media-content is-hidden-desktop">
|
|
<span>{{ displayName(currentActor) }}</span>
|
|
<span class="has-text-grey-dark" v-if="currentActor.name"
|
|
>@{{ currentActor.preferredUsername }}</span
|
|
>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
No identities dropdown if no identities
|
|
<span v-if="identities.length <= 1"></span>
|
|
<o-navbar-item
|
|
tag="span"
|
|
v-for="identity in identities"
|
|
v-else
|
|
:active="identity.id === currentActor.id"
|
|
:key="identity.id"
|
|
tabindex="0"
|
|
@click="setIdentity({
|
|
preferredUsername: identity.preferredUsername,
|
|
})"
|
|
@keyup.enter="setIdentity({
|
|
preferredUsername: identity.preferredUsername,
|
|
})"
|
|
>
|
|
<span>
|
|
<div class="media-left">
|
|
<figure class="image is-32x32" v-if="identity.avatar">
|
|
<img
|
|
class="is-rounded"
|
|
loading="lazy"
|
|
:src="identity.avatar.url"
|
|
alt
|
|
/>
|
|
</figure>
|
|
<o-icon v-else size="is-medium" icon="account-circle" />
|
|
</div>
|
|
|
|
<div class="media-content">
|
|
<span>{{ displayName(identity) }}</span>
|
|
<span class="has-text-grey-dark" v-if="identity.name"
|
|
>@{{ identity.preferredUsername }}</span
|
|
>
|
|
</div>
|
|
</span>
|
|
|
|
<hr class="navbar-divider" role="presentation" />
|
|
</o-navbar-item>
|
|
|
|
<o-navbar-item
|
|
tag="router-link"
|
|
:to="{ name: RouteName.UPDATE_IDENTITY }"
|
|
>{{ $t("My account") }}</o-navbar-item
|
|
>
|
|
<o-navbar-item
|
|
v-if="currentUser.role === ICurrentUserRole.ADMINISTRATOR"
|
|
tag="router-link"
|
|
:to="{ name: RouteName.ADMIN_DASHBOARD }"
|
|
>{{ $t("Administration") }}</o-navbar-item
|
|
>
|
|
|
|
<o-navbar-item
|
|
tag="span"
|
|
tabindex="0"
|
|
@click="logout"
|
|
@keyup.enter="logout"
|
|
>
|
|
<span>{{ $t("Log out") }}</span>
|
|
</o-navbar-item>
|
|
</o-navbar-dropdown>
|
|
|
|
<o-navbar-item v-else tag="div">
|
|
<div class="buttons">
|
|
<router-link
|
|
class="button is-primary"
|
|
v-if="config && config.registrationsOpen"
|
|
:to="{ name: RouteName.REGISTER }"
|
|
>
|
|
<strong>{{ $t("Sign up") }}</strong>
|
|
</router-link>
|
|
|
|
<router-link
|
|
class="button is-light"
|
|
:to="{ name: RouteName.LOGIN }"
|
|
>{{ $t("Log in") }}</router-link
|
|
>
|
|
</div>
|
|
</o-navbar-item>
|
|
</template>
|
|
</o-navbar> -->
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import MobilizonLogo from "@/components/MobilizonLogo.vue";
|
|
import { ICurrentUserRole } from "@/types/enums";
|
|
import { logout } from "../utils/auth";
|
|
import { displayName } from "../types/actor";
|
|
import RouteName from "../router/name";
|
|
import { ref, watch } from "vue";
|
|
import { useRouter } from "vue-router";
|
|
import { useI18n } from "vue-i18n";
|
|
import AccountCircle from "vue-material-design-icons/AccountCircle.vue";
|
|
// import { useProgrammatic } from "@oruga-ui/oruga-next";
|
|
import { useCurrentUserClient } from "@/composition/apollo/user";
|
|
import {
|
|
useCurrentActorClient,
|
|
useCurrentUserIdentities,
|
|
} from "@/composition/apollo/actor";
|
|
import { useMutation } from "@vue/apollo-composable";
|
|
import { UPDATE_DEFAULT_ACTOR } from "@/graphql/actor";
|
|
import { changeIdentity } from "@/utils/identity";
|
|
// import { useRestrictions } from "@/composition/apollo/config";
|
|
|
|
const { currentUser } = useCurrentUserClient();
|
|
const { currentActor } = useCurrentActorClient();
|
|
// const { restrictions } = useRestrictions();
|
|
|
|
// const userDropdown = ref();
|
|
|
|
const router = useRouter();
|
|
// const route = useRoute();
|
|
|
|
const { identities } = useCurrentUserIdentities();
|
|
|
|
// const mobileNavbarActive = ref(false);
|
|
|
|
// const toggleMenu = (): void => {
|
|
// console.debug("called toggleMenu");
|
|
// userDropdown.value.showMenu();
|
|
// };
|
|
|
|
const { t } = useI18n({ useScope: "global" });
|
|
|
|
watch(identities, () => {
|
|
// If we don't have any identities, the user has validated their account,
|
|
// is logging for the first time but didn't create an identity somehow
|
|
if (identities.value && identities.value.length === 0) {
|
|
console.warn(
|
|
"We have no identities listed for current user",
|
|
identities.value
|
|
);
|
|
console.info("Pushing route to REGISTER_PROFILE");
|
|
router.push({
|
|
name: RouteName.REGISTER_PROFILE,
|
|
params: {
|
|
email: currentUser.value?.email,
|
|
userAlreadyActivated: "true",
|
|
},
|
|
});
|
|
}
|
|
});
|
|
|
|
// watch(loggedUser, () => {
|
|
// if (loggedUser.value?.locale) {
|
|
// console.debug("Setting locale from navbar");
|
|
// loadLanguageAsync(loggedUser.value?.locale);
|
|
// }
|
|
// });
|
|
|
|
// const handleErrors = async (errors: GraphQLError[]): Promise<void> => {
|
|
// if (
|
|
// errors.length > 0 &&
|
|
// errors[0].message ===
|
|
// "You need to be logged-in to view your list of identities"
|
|
// ) {
|
|
// await doLogout();
|
|
// }
|
|
// };
|
|
|
|
// const { oruga } = useProgrammatic();
|
|
|
|
// const doLogout = async (): Promise<void> => {
|
|
// await logout();
|
|
// oruga.notification.open({
|
|
// message: t("You have been disconnected"),
|
|
// variant: "success",
|
|
// position: "is-bottom-right",
|
|
// duration: 5000,
|
|
// });
|
|
|
|
// if (route.name === RouteName.HOME) return;
|
|
// await router.push({ name: RouteName.HOME });
|
|
// };
|
|
|
|
const { onDone, mutate: setIdentity } = useMutation<{
|
|
changeDefaultActor: { id: string; defaultActor: { id: string } };
|
|
}>(UPDATE_DEFAULT_ACTOR);
|
|
|
|
onDone(({ data }) => {
|
|
const identity = identities.value?.find(
|
|
({ id }) => id === data?.changeDefaultActor?.defaultActor?.id
|
|
);
|
|
if (!identity) return;
|
|
changeIdentity(identity);
|
|
});
|
|
|
|
// const hideCreateEventsButton = computed((): boolean => {
|
|
// return !!restrictions.value?.onlyGroupsCanCreateEvents;
|
|
// });
|
|
|
|
// @Component({
|
|
// apollo: {
|
|
// currentUser: CURRENT_USER_CLIENT,
|
|
// currentActor: CURRENT_ACTOR_CLIENT,
|
|
// // identities: {
|
|
// // query: IDENTITIES,
|
|
// // update: ({ identities }) =>
|
|
// // identities
|
|
// // ? identities.map((identity: IPerson) => new Person(identity))
|
|
// // : [],
|
|
// // skip() {
|
|
// // return this.currentUser.isLoggedIn === false;
|
|
// // },
|
|
// // error({ graphQLErrors }) {
|
|
// // this.handleErrors(graphQLErrors);
|
|
// // },
|
|
// // },
|
|
// config: CONFIG,
|
|
// loggedUser: {
|
|
// query: USER_SETTINGS,
|
|
// skip() {
|
|
// return !this.currentUser || this.currentUser.isLoggedIn === false;
|
|
// },
|
|
// },
|
|
// },
|
|
// })
|
|
// export default class NavBar extends Vue {
|
|
// currentActor!: IPerson;
|
|
|
|
// config!: IConfig;
|
|
|
|
// currentUser!: ICurrentUser;
|
|
|
|
// loggedUser!: IUser;
|
|
|
|
// ICurrentUserRole = ICurrentUserRole;
|
|
|
|
// identities: IPerson[] = [];
|
|
|
|
// RouteName = RouteName;
|
|
|
|
// mobileNavbarActive = false;
|
|
|
|
// displayName = displayName;
|
|
|
|
// // @Ref("user-dropdown") userDropDown!: any;
|
|
|
|
// // toggleMenu(): void {
|
|
// // console.debug("called toggleMenu");
|
|
// // this.userDropDown.showMenu();
|
|
// // }
|
|
|
|
// }
|
|
|
|
const showMobileMenu = ref(false);
|
|
</script>
|