Re implement the navigation

Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
This commit is contained in:
Michael Weimann
2018-12-29 22:30:56 +01:00
parent 45be999245
commit 1fc0d64925
8 changed files with 504 additions and 146 deletions

View File

@@ -0,0 +1,76 @@
<!--
- @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
-
- @author John Molakvoæ <skjnldsv@protonmail.com>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<li id="deck-navigation-add"
:title="t('deck', 'Create new board')" :class="[{'icon-loading-small': loading, 'editing': editing}, classes]">
<a class="icon-add" href="#" @click.prevent.stop="startCreateBoard">
{{ t('deck', 'Create new board') }}
</a>
<!-- edit entry -->
<div v-if="editing" class="app-navigation-entry-edit">
<form @submit.prevent.stop="createBoard">
<input :placeholder="t('deck', 'New board title')" type="text">
<input type="submit" value="" class="icon-confirm">
<input type="submit" value="" class="icon-close"
@click.stop.prevent="cancelEdit">
</form>
</div>
</li>
</template>
<script>
export default {
name: 'AppNavigationAddBoard',
directives: {},
props: {},
data() {
return {
classes: [],
editing: false,
loading: false
}
},
computed: {},
watch: {},
mounted() {},
methods: {
startCreateBoard(e) {
this.editing = true
},
createBoard(e) {
const title = e.currentTarget.childNodes[0].value
this.$store.dispatch('createBoard', {
title: title,
hashedColor: '#000000',
color: '000000'
})
this.editing = false
},
cancelEdit(e) {
this.editing = false
this.item.edit.reset(e)
}
}
}
</script>