2018-08-28 22:50:22 +02:00
|
|
|
<template>
|
2019-11-03 13:44:40 +01:00
|
|
|
<div>
|
|
|
|
<div v-if="isOnline">
|
|
|
|
<!-- This is a workaround to get the sw to "see" the to-be-cached version of the offline background image -->
|
|
|
|
<div class="offline" style="height: 0;width: 0;"></div>
|
|
|
|
<nav class="navbar main-theme is-fixed-top" role="navigation" aria-label="main navigation"
|
2020-04-18 01:46:07 +02:00
|
|
|
v-if="user.authenticated && (userInfo && userInfo.type === authTypes.USER)">
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="navbar-brand">
|
|
|
|
<router-link :to="{name: 'home'}" class="navbar-item logo">
|
|
|
|
<img src="/images/logo-full.svg" alt="Vikunja"/>
|
|
|
|
</router-link>
|
|
|
|
</div>
|
|
|
|
<div class="navbar-end">
|
2019-12-18 22:30:20 +01:00
|
|
|
<div v-if="updateAvailable" class="update-notification">
|
|
|
|
<p>There is an update for Vikunja available!</p>
|
|
|
|
<a @click="refreshApp()" class="button is-primary noshadow">Update Now</a>
|
|
|
|
</div>
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="user">
|
2020-02-09 13:28:33 +01:00
|
|
|
<img :src="user.infos.getAvatarUrl()" class="avatar" alt=""/>
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="dropdown is-right is-active">
|
|
|
|
<div class="dropdown-trigger">
|
|
|
|
<button class="button noshadow" @click="userMenuActive = !userMenuActive">
|
|
|
|
<span class="username">{{user.infos.username}}</span>
|
|
|
|
<span class="icon is-small">
|
2019-04-23 21:50:37 +02:00
|
|
|
<icon icon="chevron-down"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<transition name="fade">
|
|
|
|
<div class="dropdown-menu" v-if="userMenuActive">
|
|
|
|
<div class="dropdown-content">
|
2020-04-17 22:46:50 +02:00
|
|
|
<router-link :to="{name: 'userSettings'}" class="dropdown-item">
|
|
|
|
Settings
|
|
|
|
</router-link>
|
2019-11-03 13:44:40 +01:00
|
|
|
<a @click="logout()" class="dropdown-item">
|
|
|
|
Logout
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2020-04-18 01:46:07 +02:00
|
|
|
<div v-if="user.authenticated && (userInfo && userInfo.type === authTypes.USER)">
|
2019-11-03 13:44:40 +01:00
|
|
|
<a @click="mobileMenuActive = true" class="mobilemenu-show-button" v-if="!mobileMenuActive">
|
|
|
|
<icon icon="bars"></icon>
|
|
|
|
</a>
|
|
|
|
<a @click="mobileMenuActive = false" class="mobilemenu-hide-button" v-if="mobileMenuActive">
|
|
|
|
<icon icon="times"></icon>
|
|
|
|
</a>
|
|
|
|
<div class="app-container">
|
|
|
|
<div class="namespace-container" :class="{'is-active': mobileMenuActive}">
|
|
|
|
<div class="menu top-menu">
|
2020-02-09 15:29:55 +01:00
|
|
|
<router-link :to="{name: 'home'}" class="logo">
|
|
|
|
<img src="/images/logo-full.svg" alt="Vikunja"/>
|
|
|
|
</router-link>
|
2019-11-03 13:44:40 +01:00
|
|
|
<ul class="menu-list">
|
|
|
|
<li>
|
|
|
|
<router-link :to="{ name: 'home'}">
|
2018-12-25 16:03:51 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="calendar"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
Overview
|
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
2020-02-14 17:38:48 +01:00
|
|
|
<router-link :to="{ name: 'showTasksInRange', params: {type: 'week'}}">
|
2018-12-25 23:41:55 +01:00
|
|
|
<span class="icon">
|
2020-02-14 17:38:48 +01:00
|
|
|
<icon icon="calendar-week"/>
|
2018-12-25 23:41:55 +01:00
|
|
|
</span>
|
2020-02-14 17:38:48 +01:00
|
|
|
Next Week
|
2019-11-03 13:44:40 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
2020-02-14 17:38:48 +01:00
|
|
|
<router-link :to="{ name: 'showTasksInRange', params: {type: 'month'}}">
|
2018-12-25 23:41:55 +01:00
|
|
|
<span class="icon">
|
2020-02-14 17:38:48 +01:00
|
|
|
<icon :icon="['far', 'calendar-alt']"/>
|
2018-12-25 23:41:55 +01:00
|
|
|
</span>
|
2020-02-14 17:38:48 +01:00
|
|
|
Next Month
|
2019-11-03 13:44:40 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link :to="{ name: 'listTeams'}">
|
2018-12-25 16:03:51 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="users"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
Teams
|
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link :to="{ name: 'newNamespace'}">
|
2018-12-25 16:03:51 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="layer-group"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
New Namespace
|
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link :to="{ name: 'listLabels'}">
|
2019-03-07 20:48:40 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="tags"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
Labels
|
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<aside class="menu namespaces-lists">
|
2020-04-01 22:13:57 +02:00
|
|
|
<fancycheckbox v-model="showArchived" @change="loadNamespaces()" class="show-archived-check">
|
|
|
|
Show Archived
|
|
|
|
</fancycheckbox>
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="spinner" :class="{ 'is-loading': namespaceService.loading}"></div>
|
|
|
|
<template v-for="n in namespaces">
|
|
|
|
<div :key="n.id">
|
|
|
|
<router-link v-tooltip.right="'Settings'"
|
|
|
|
:to="{name: 'editNamespace', params: {id: n.id} }" class="nsettings"
|
|
|
|
v-if="n.id > 0">
|
2018-12-25 16:03:51 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="cog"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
</router-link>
|
|
|
|
<router-link v-tooltip="'Add a new list in the ' + n.name + ' namespace'"
|
|
|
|
:to="{ name: 'newList', params: { id: n.id} }" class="nsettings"
|
|
|
|
:key="n.id + 'newList'" v-if="n.id > 0">
|
2018-12-25 16:03:51 +01:00
|
|
|
<span class="icon">
|
|
|
|
<icon icon="plus"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
</router-link>
|
|
|
|
<label class="menu-label" v-tooltip="n.name + ' (' + n.lists.length + ')'" :for="n.id + 'checker'">
|
2020-03-25 22:27:29 +01:00
|
|
|
<span class="name">
|
2020-04-12 23:54:46 +02:00
|
|
|
<span class="color-bubble" v-if="n.hexColor !== ''" :style="{ backgroundColor: n.hexColor }"></span>
|
2020-03-22 21:40:13 +01:00
|
|
|
{{n.name}} ({{n.lists.length}})
|
|
|
|
</span>
|
2020-04-12 23:54:46 +02:00
|
|
|
<span class="is-archived" v-if="n.isArchived">
|
2020-03-22 21:40:13 +01:00
|
|
|
Archived
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<input :key="n.id + 'checker'" type="checkbox" checked="checked" :id="n.id + 'checker'" class="checkinput"/>
|
|
|
|
<div class="more-container" :key="n.id + 'child'">
|
|
|
|
<ul class="menu-list can-be-hidden" >
|
|
|
|
<li v-for="l in n.lists" :key="l.id">
|
2020-04-30 12:49:42 +02:00
|
|
|
<router-link :to="{ name: 'list.index', params: { listId: l.id} }">
|
2020-03-25 22:27:29 +01:00
|
|
|
<span class="name">
|
2020-04-12 23:54:46 +02:00
|
|
|
<span class="color-bubble" v-if="l.hexColor !== ''" :style="{ backgroundColor: l.hexColor }"></span>
|
2020-03-25 22:27:29 +01:00
|
|
|
{{l.title}}
|
|
|
|
</span>
|
2020-04-12 23:54:46 +02:00
|
|
|
<span class="is-archived" v-if="l.isArchived">
|
2020-03-22 21:40:13 +01:00
|
|
|
Archived
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
</router-link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<label class="hidden-hint" :for="n.id + 'checker'">
|
|
|
|
Show hidden lists ({{n.lists.length}})...
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</aside>
|
2020-01-31 17:33:34 +01:00
|
|
|
<a class="menu-bottom-link" target="_blank" href="https://vikunja.io">Powered by Vikunja</a>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
<div class="app-content" :class="{'fullpage-overlay': fullpage}">
|
|
|
|
<a class="mobile-overlay" v-if="mobileMenuActive" @click="mobileMenuActive = false"></a>
|
|
|
|
<transition name="fade">
|
|
|
|
<router-view/>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- FIXME: This will only be triggered when the root component is already loaded before doing link share auth. Will "fix" itself once we use vuex. -->
|
2020-04-18 01:46:07 +02:00
|
|
|
<div v-else-if="user.authenticated && (userInfo && userInfo.type === authTypes.LINK_SHARE)">
|
2019-11-03 13:44:40 +01:00
|
|
|
<div class="container has-text-centered link-share-view">
|
|
|
|
<div class="column is-10 is-offset-1">
|
|
|
|
<img src="/images/logo-full.svg" alt="Vikunja" class="logo"/>
|
|
|
|
<div class="box has-text-left">
|
|
|
|
<div class="logout">
|
|
|
|
<a @click="logout()" class="button logout">
|
|
|
|
<span>Logout</span>
|
|
|
|
<span class="icon is-small">
|
2019-09-09 19:55:43 +02:00
|
|
|
<icon icon="sign-out-alt"/>
|
|
|
|
</span>
|
2019-11-03 13:44:40 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<router-view/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
|
|
|
<div class="container">
|
|
|
|
<div class="column is-4 is-offset-4">
|
|
|
|
<img src="/images/logo-full.svg" alt="Vikunja"/>
|
2019-12-25 17:38:49 +01:00
|
|
|
<div class="message is-info" v-if="motd !== ''">
|
|
|
|
<div class="message-header">
|
|
|
|
<p>Info</p>
|
|
|
|
</div>
|
|
|
|
<div class="message-body">
|
|
|
|
{{ motd }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-03 13:44:40 +01:00
|
|
|
<router-view/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-02 21:19:26 +01:00
|
|
|
<notification/>
|
2019-11-03 13:44:40 +01:00
|
|
|
</div>
|
|
|
|
<div class="app offline" v-else>
|
|
|
|
<div class="offline-message">
|
|
|
|
<h1>You are offline.</h1>
|
|
|
|
<p>Please check your network connection and try again.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-28 22:50:22 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-03-02 11:25:10 +01:00
|
|
|
import auth from './auth'
|
|
|
|
import router from './router'
|
2019-09-09 19:55:43 +02:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
import NamespaceService from './services/namespace'
|
2019-09-09 19:55:43 +02:00
|
|
|
import authTypes from './models/authTypes'
|
2018-09-07 08:42:17 +02:00
|
|
|
|
2019-12-18 22:30:20 +01:00
|
|
|
import swEvents from './ServiceWorker/events'
|
2020-04-01 22:13:57 +02:00
|
|
|
import Notification from './components/global/notification'
|
|
|
|
import Fancycheckbox from './components/global/fancycheckbox'
|
2019-12-18 22:30:20 +01:00
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
export default {
|
|
|
|
name: 'app',
|
2020-04-01 22:13:57 +02:00
|
|
|
components: {
|
|
|
|
Fancycheckbox,
|
|
|
|
Notification,
|
|
|
|
},
|
2019-03-02 11:25:10 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
user: auth.user,
|
|
|
|
namespaces: [],
|
2019-03-03 13:50:06 +01:00
|
|
|
namespaceService: NamespaceService,
|
2018-12-25 16:03:51 +01:00
|
|
|
mobileMenuActive: false,
|
|
|
|
fullpage: false,
|
2018-12-25 23:41:55 +01:00
|
|
|
currentDate: new Date(),
|
2019-04-23 21:50:37 +02:00
|
|
|
userMenuActive: false,
|
2019-09-09 19:55:43 +02:00
|
|
|
authTypes: authTypes,
|
2019-10-16 23:27:21 +02:00
|
|
|
isOnline: true,
|
2019-12-25 17:38:49 +01:00
|
|
|
motd: '',
|
2020-03-22 21:40:13 +01:00
|
|
|
showArchived: false,
|
2019-12-18 22:30:20 +01:00
|
|
|
|
|
|
|
// Service Worker stuff
|
|
|
|
updateAvailable: false,
|
|
|
|
registration: null,
|
|
|
|
refreshing: false,
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
},
|
2018-11-01 22:34:29 +01:00
|
|
|
beforeMount() {
|
2019-10-16 23:27:21 +02:00
|
|
|
// Check if the user is offline, show a message then
|
|
|
|
this.isOnline = navigator.onLine
|
|
|
|
window.addEventListener('online', () => this.isOnline = navigator.onLine);
|
|
|
|
window.addEventListener('offline', () => this.isOnline = navigator.onLine);
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
// Password reset
|
2019-10-16 23:27:21 +02:00
|
|
|
if (this.$route.query.userPasswordReset !== undefined) {
|
2018-11-01 22:34:29 +01:00
|
|
|
localStorage.removeItem('passwordResetToken') // Delete an eventually preexisting old token
|
|
|
|
localStorage.setItem('passwordResetToken', this.$route.query.userPasswordReset)
|
2019-03-02 11:25:10 +01:00
|
|
|
router.push({name: 'passwordReset'})
|
2018-11-01 22:34:29 +01:00
|
|
|
}
|
2019-03-02 11:25:10 +01:00
|
|
|
// Email verification
|
2019-10-16 23:27:21 +02:00
|
|
|
if (this.$route.query.userEmailConfirm !== undefined) {
|
2019-03-02 11:25:10 +01:00
|
|
|
localStorage.removeItem('emailConfirmToken') // Delete an eventually preexisting old token
|
|
|
|
localStorage.setItem('emailConfirmToken', this.$route.query.userEmailConfirm)
|
|
|
|
router.push({name: 'login'})
|
2018-11-01 23:58:59 +01:00
|
|
|
}
|
2018-11-01 22:34:29 +01:00
|
|
|
},
|
2019-03-02 11:25:10 +01:00
|
|
|
created() {
|
2019-09-09 19:59:58 +02:00
|
|
|
if (auth.user.authenticated && auth.user.infos.type === authTypes.USER && (this.$route.params.name === 'home' || this.namespaces.length === 0)) {
|
2019-03-02 11:25:10 +01:00
|
|
|
this.loadNamespaces()
|
2018-09-08 21:24:10 +02:00
|
|
|
}
|
2019-12-18 22:30:20 +01:00
|
|
|
|
|
|
|
// Service worker communication
|
|
|
|
document.addEventListener(swEvents.SW_UPDATED, this.showRefreshUI, { once: true })
|
|
|
|
|
|
|
|
navigator.serviceWorker.addEventListener(
|
|
|
|
'controllerchange', () => {
|
|
|
|
if (this.refreshing) return;
|
|
|
|
this.refreshing = true;
|
|
|
|
window.location.reload();
|
|
|
|
}
|
|
|
|
);
|
2019-12-19 21:50:07 +01:00
|
|
|
|
2020-04-04 18:29:36 +02:00
|
|
|
// Schedule a token renew every minute
|
2019-12-19 21:50:07 +01:00
|
|
|
setTimeout(() => {
|
|
|
|
auth.renewToken()
|
2020-04-04 18:29:36 +02:00
|
|
|
}, 1000 * 60)
|
2019-12-25 17:38:49 +01:00
|
|
|
|
|
|
|
// Set the motd
|
|
|
|
this.setMotd()
|
2019-03-02 11:25:10 +01:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
// call the method again if the route changes
|
2020-04-26 01:11:34 +02:00
|
|
|
'$route': 'doStuffAfterRoute',
|
2019-03-02 11:25:10 +01:00
|
|
|
},
|
2020-04-18 01:46:07 +02:00
|
|
|
computed: {
|
|
|
|
userInfo() {
|
|
|
|
return auth.getUserInfos()
|
|
|
|
}
|
|
|
|
},
|
2019-03-02 11:25:10 +01:00
|
|
|
methods: {
|
|
|
|
logout() {
|
|
|
|
auth.logout()
|
|
|
|
},
|
|
|
|
loadNamespaces() {
|
2019-03-07 20:48:55 +01:00
|
|
|
this.namespaceService = new NamespaceService()
|
2020-04-12 23:54:46 +02:00
|
|
|
this.namespaceService.getAll({}, {isArchived: this.showArchived})
|
2019-03-02 11:25:10 +01:00
|
|
|
.then(r => {
|
|
|
|
this.$set(this, 'namespaces', r)
|
|
|
|
})
|
|
|
|
.catch(e => {
|
2020-01-30 22:47:08 +01:00
|
|
|
this.error(e, this)
|
2019-03-02 11:25:10 +01:00
|
|
|
})
|
2018-09-09 17:23:06 +02:00
|
|
|
},
|
2019-10-16 23:27:21 +02:00
|
|
|
loadNamespacesIfNeeded(e) {
|
2020-04-18 01:46:07 +02:00
|
|
|
if (auth.user.authenticated && (this.userInfo && this.userInfo.type === authTypes.USER) && (e.name === 'home' || this.namespaces.length === 0)) {
|
2019-03-02 11:25:10 +01:00
|
|
|
this.loadNamespaces()
|
|
|
|
}
|
2018-09-09 16:17:56 +02:00
|
|
|
},
|
2018-12-25 16:03:51 +01:00
|
|
|
doStuffAfterRoute(e) {
|
|
|
|
this.fullpage = false;
|
|
|
|
this.loadNamespacesIfNeeded(e)
|
|
|
|
this.mobileMenuActive = false
|
2020-02-09 13:07:31 +01:00
|
|
|
this.userMenuActive = false
|
2018-12-25 16:03:51 +01:00
|
|
|
},
|
|
|
|
setFullPage() {
|
|
|
|
this.fullpage = true;
|
|
|
|
},
|
2019-12-18 22:30:20 +01:00
|
|
|
showRefreshUI (e) {
|
|
|
|
console.log('recieved refresh event', e)
|
|
|
|
this.registration = e.detail;
|
|
|
|
this.updateAvailable = true;
|
|
|
|
},
|
|
|
|
refreshApp () {
|
|
|
|
this.updateExists = false;
|
|
|
|
if (!this.registration || !this.registration.waiting) { return; }
|
|
|
|
// Notify the service worker to actually do the update
|
|
|
|
this.registration.waiting.postMessage('skipWaiting');
|
|
|
|
},
|
2019-12-25 17:38:49 +01:00
|
|
|
setMotd() {
|
|
|
|
let cancel = () => {};
|
|
|
|
// Since the config may not be initialized when we're calling this, we need to retry until it is ready.
|
|
|
|
if (typeof this.$config === 'undefined') {
|
|
|
|
cancel = setTimeout(() => {
|
|
|
|
this.setMotd()
|
|
|
|
}, 150)
|
|
|
|
} else {
|
|
|
|
cancel()
|
|
|
|
this.motd = this.$config.motd
|
|
|
|
}
|
|
|
|
},
|
2019-03-02 11:25:10 +01:00
|
|
|
},
|
|
|
|
}
|
2018-08-28 22:50:22 +02:00
|
|
|
</script>
|