Add keyboard shortcuts

This commit is contained in:
kolaente 2021-05-30 17:55:52 +02:00
parent 4566624df2
commit 4dcc377243
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
5 changed files with 136 additions and 108 deletions

View File

@ -37,6 +37,14 @@
<div class="navbar-end"> <div class="navbar-end">
<update/> <update/>
<a
@click="openQuickActions"
class="trigger-button pr-0"
@shortkey="openQuickActions"
v-shortkey="['ctrl', 'k']"
>
<icon icon="search"/>
</a>
<notifications/> <notifications/>
<div class="user"> <div class="user">
<img :src="userAvatar" alt="" class="avatar"/> <img :src="userAvatar" alt="" class="avatar"/>
@ -83,7 +91,7 @@
<script> <script>
import {mapState} from 'vuex' import {mapState} from 'vuex'
import {CURRENT_LIST} from '@/store/mutation-types' import {CURRENT_LIST, QUICK_ACTIONS_ACTIVE} from '@/store/mutation-types'
import Rights from '@/models/rights.json' import Rights from '@/models/rights.json'
import Update from '@/components/home/update' import Update from '@/components/home/update'
import ListSettingsDropdown from '@/components/list/list-settings-dropdown' import ListSettingsDropdown from '@/components/list/list-settings-dropdown'
@ -113,6 +121,9 @@ export default {
this.$store.dispatch('auth/logout') this.$store.dispatch('auth/logout')
this.$router.push({name: 'user.login'}) this.$router.push({name: 'user.login'})
}, },
openQuickActions() {
this.$store.commit(QUICK_ACTIONS_ACTIVE, true)
},
}, },
} }
</script> </script>

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="notifications"> <div class="notifications">
<a @click.stop="showNotifications = !showNotifications" class="trigger"> <a @click.stop="showNotifications = !showNotifications" class="trigger-button">
<span class="unread-indicator" v-if="unreadNotifications > 0"></span> <span class="unread-indicator" v-if="unreadNotifications > 0"></span>
<icon icon="bell"/> <icon icon="bell"/>
</a> </a>

View File

@ -1,5 +1,5 @@
<template> <template>
<modal v-if="active" class="quick-actions"> <modal v-if="active" class="quick-actions" @close="closeQuickActions">
<div class="card"> <div class="card">
<div class="action-input" :class="{'has-active-cmd': selectedCmd !== null}"> <div class="action-input" :class="{'has-active-cmd': selectedCmd !== null}">
<div class="active-cmd tag" v-if="selectedCmd !== null"> <div class="active-cmd tag" v-if="selectedCmd !== null">
@ -16,6 +16,7 @@
@keydown.down.prevent="() => select(0, 0)" @keydown.down.prevent="() => select(0, 0)"
@keyup.prevent.delete="unselectCmd" @keyup.prevent.delete="unselectCmd"
@keyup.prevent.enter="doCmd" @keyup.prevent.enter="doCmd"
@keyup.prevent.esc="closeQuickActions"
/> />
</div> </div>
@ -58,7 +59,7 @@ import TaskModel from '@/models/task'
import NamespaceModel from '@/models/namespace' import NamespaceModel from '@/models/namespace'
import TeamModel from '@/models/team' import TeamModel from '@/models/team'
import {CURRENT_LIST} from '@/store/mutation-types' import {CURRENT_LIST, QUICK_ACTIONS_ACTIVE} from '@/store/mutation-types'
import ListModel from '@/models/list' import ListModel from '@/models/list'
const TYPE_LIST = 'list' const TYPE_LIST = 'list'
@ -90,7 +91,13 @@ export default {
} }
}, },
computed: { computed: {
active: () => true, // TODO: use state + keyboard shortcut active() {
const active = this.$store.state[QUICK_ACTIONS_ACTIVE]
if (!active) {
this.reset()
}
return active
},
results() { results() {
const lists = (Object.values(this.$store.state.lists).filter(l => { const lists = (Object.values(this.$store.state.lists).filter(l => {
return l.title.toLowerCase().includes(this.query.toLowerCase()) return l.title.toLowerCase().includes(this.query.toLowerCase())
@ -150,7 +157,7 @@ export default {
hintText() { hintText() {
let namespace let namespace
if (this.selectedCmd !== null) { if (this.selectedCmd !== null && this.currentList !== null) {
switch (this.selectedCmd.action) { switch (this.selectedCmd.action) {
case CMD_NEW_TASK: case CMD_NEW_TASK:
return `Create a task in the current list (${this.currentList.title})` return `Create a task in the current list (${this.currentList.title})`
@ -221,6 +228,9 @@ export default {
}) })
}, 150) }, 150)
}, },
closeQuickActions() {
this.$store.commit(QUICK_ACTIONS_ACTIVE, false)
},
doAction(type, item) { doAction(type, item) {
switch (type) { switch (type) {
case TYPE_LIST: case TYPE_LIST:
@ -358,6 +368,10 @@ export default {
this.selectedCmd = null this.selectedCmd = null
}, },
reset() {
this.query = ''
this.selectedCmd = null
}
}, },
} }
</script> </script>

View File

@ -1,13 +1,6 @@
.notifications { .notifications {
width: 50px; width: 50px;
.trigger {
cursor: pointer;
color: $grey-400;
padding: 1rem;
font-size: 1.25rem;
position: relative;
.unread-indicator { .unread-indicator {
position: absolute; position: absolute;
top: 1rem; top: 1rem;
@ -19,7 +12,6 @@
border-radius: 100%; border-radius: 100%;
border: 2px solid $white; border: 2px solid $white;
} }
}
.notifications-list { .notifications-list {
position: fixed; position: fixed;

View File

@ -318,11 +318,21 @@
display: inline-block; display: inline-block;
} }
} }
} }
} }
} }
.navbar .user { .navbar {
.trigger-button {
cursor: pointer;
color: $grey-400;
padding: 1rem;
font-size: 1.25rem;
position: relative;
}
.user {
span { span {
font-family: $vikunja-font; font-family: $vikunja-font;
} }
@ -353,9 +363,9 @@
box-shadow: none !important; box-shadow: none !important;
} }
} }
} }
.menu-hide-button, .menu-show-button { .menu-hide-button, .menu-show-button {
display: none; display: none;
z-index: 31; z-index: 31;
font-weight: bold; font-weight: bold;
@ -366,21 +376,21 @@
&:hover, &:focus { &:hover, &:focus {
color: $grey-900; color: $grey-900;
} }
} }
.menu-hide-button { .menu-hide-button {
position: fixed; position: fixed;
&:hover, &:focus { &:hover, &:focus {
color: $text; color: $text;
} }
} }
.navbar-brand .menu-show-button { .navbar-brand .menu-show-button {
display: block; display: block;
} }
.mobile-overlay { .mobile-overlay {
display: none; display: none;
position: fixed; position: fixed;
top: 0; top: 0;
@ -391,9 +401,9 @@
z-index: 5; z-index: 5;
opacity: 0; opacity: 0;
transition: all $transition; transition: all $transition;
} }
@media screen and (max-width: $tablet) { @media screen and (max-width: $tablet) {
.menu-hide-button { .menu-hide-button {
display: block; display: block;
top: $hamburger-menu-icon-spacing; top: $hamburger-menu-icon-spacing;
@ -413,17 +423,18 @@
.navbar.is-dark .navbar-brand > .navbar-item { .navbar.is-dark .navbar-brand > .navbar-item {
margin: 0 auto; margin: 0 auto;
} }
} }
.logout-icon { .logout-icon {
margin-right: 0.85rem !important; margin-right: 0.85rem !important;
} }
.menu-bottom-link { .menu-bottom-link {
width: 100%; width: 100%;
color: $grey-300; color: $grey-300;
text-align: center; text-align: center;
display: block; display: block;
margin: 1rem 0; margin: 1rem 0;
font-size: .8rem; font-size: .8rem;
}
} }