Merge branch 'dashboard' into 'master'

Add link to event and group creation on dashboard

See merge request framasoft/mobilizon!161
This commit is contained in:
Thomas Citharel 2019-07-23 18:53:03 +02:00
commit 845d6ff857
1 changed files with 16 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="container">
<section class="hero is-link" v-if="!currentUser.id || !loggedPerson">
<div class="hero-body">
<div class="container">
@ -21,6 +21,20 @@
>Welcome back %{username}</translate>
</h1>
</section>
<b-dropdown aria-role="list">
<button class="button is-primary" slot="trigger">
<span>Create</span>
<b-icon icon="menu-down"></b-icon>
</button>
<b-dropdown-item aria-role="listitem">
<router-link :to="{ name: RouteName.CREATE_EVENT }">Event</router-link>
</b-dropdown-item>
<b-dropdown-item aria-role="listitem">
<router-link :to="{ name: RouteName.CREATE_GROUP }">Group</router-link>
</b-dropdown-item>
<b-dropdown-item aria-role="listitem">Something else</b-dropdown-item>
</b-dropdown>
<section v-if="loggedPerson" class="container">
<span class="events-nearby title"><translate>Events you're going at</translate></span>
<b-loading :active.sync="$apollo.loading"></b-loading>
@ -126,6 +140,7 @@ export default class Home extends Vue {
loggedPerson: IPerson = new Person();
currentUser!: ICurrentUser;
config: IConfig = { description: '', name: '', registrationsOpen: false };
RouteName = RouteName;
// get displayed_name() {
// return this.loggedPerson && this.loggedPerson.name === null