summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyGroups.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-08-28 14:53:19 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-08-28 14:53:19 +0200
commit670493bd8a029d8e3b6ab75778cb2fd0cb16378a (patch)
tree2745cc445e21da851f20337cea12ee98fbf1db4c /src/components/Properties/PropertyGroups.vue
parent0b5f975b5288e1a9548260f9ac8f47453982f9a7 (diff)
Dav lib 1
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties/PropertyGroups.vue')
-rw-r--r--src/components/Properties/PropertyGroups.vue157
1 files changed, 157 insertions, 0 deletions
diff --git a/src/components/Properties/PropertyGroups.vue b/src/components/Properties/PropertyGroups.vue
new file mode 100644
index 00000000..56a6ce8e
--- /dev/null
+++ b/src/components/Properties/PropertyGroups.vue
@@ -0,0 +1,157 @@
+<!--
+ - @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>
+ <div v-if="propModel" class="grid-span-1 property">
+
+ <div class="property__row">
+ <div class="property__label">{{ propModel.readableName }}</div>
+ <!-- multiselect taggable groups with a limit to 3 groups shown -->
+ <multiselect v-model="localValue" :options="groups" :placeholder="t('contacts', 'Add contact in group')"
+ :limit="3" :multiple="true" :taggable="true"
+ :close-on-select="false" tag-placeholder="create" class="multiselect-vue property__value"
+ @tag="validateGroup" @select="addContactToGroup" @remove="removeContactToGroup">
+ <!-- show how many groups are hidden and add tooltip -->
+ <span v-tooltip.auto="formatGroupsTitle" slot="limit" class="multiselect__limit">+{{ localValue.length - 3 }}</span>
+ <span slot="noResult">{{ t('settings', 'No results') }}</span>
+ </multiselect>
+ </div>
+ </div>
+</template>
+
+<script>
+import Multiselect from 'vue-multiselect'
+import debounce from 'debounce'
+import Contact from '../../models/contact'
+
+export default {
+ name: 'PropertyGroups',
+
+ components: {
+ Multiselect
+ },
+
+ props: {
+ propModel: {
+ type: Object,
+ default: () => {},
+ required: true
+ },
+ value: {
+ type: Array,
+ default: () => [],
+ required: true
+ },
+ contact: {
+ type: Contact,
+ default: null,
+ required: true
+ }
+ },
+
+ data() {
+ return {
+ localValue: this.value
+ }
+ },
+
+ computed: {
+ groups() {
+ return this.$store.getters.getGroups.slice(0).map(group => group.name)
+ },
+
+ /**
+ * Format array of groups objects to a string for the popup
+ * Based on the ultiselect limit
+ */
+ formatGroupsTitle() {
+ return this.localValue.slice(3).join(', ')
+ }
+ },
+
+ watch: {
+ /**
+ * Since we're updating a local data based on the value prop,
+ * we need to make sure to update the local data on pop change
+ */
+ value: function() {
+ this.localValue = this.value
+ },
+ selectType: function() {
+ this.localType = this.selectType
+ }
+ },
+
+ methods: {
+
+ /**
+ * Debounce and send update event to parent
+ */
+ updateValue: debounce(function(e) {
+ // https://vuejs.org/v2/guide/components-custom-events.html#sync-Modifier
+ this.$emit('update:value', this.localValue)
+ }, 500),
+
+ /**
+ * Dispatch contact addition to group
+ *
+ * @param {String} groupName the group name
+ */
+ addContactToGroup(groupName) {
+ this.$store.dispatch('addContactToGroup', {
+ contact: this.contact,
+ groupName
+ })
+ },
+
+ /**
+ * Dispatch contact removal from group
+ *
+ * @param {String} groupName the group name
+ */
+ removeContactToGroup(groupName) {
+ this.$store.dispatch('removeContactToGroup', {
+ contact: this.contact,
+ groupName
+ })
+ },
+
+ /**
+ * Validate groupname and dispatch creation
+ *
+ * @param {String} groupName the group name
+ * @returns {Boolean}
+ */
+ validateGroup(groupName) {
+ // Only allow characters without vcard special chars
+ let groupRegex = /^[^;,:]+$/gmi
+ if (groupName.match(groupRegex)) {
+ this.addContactToGroup(groupName)
+ this.localValue.push(groupName)
+ return true
+ }
+ return false
+ }
+ }
+}
+
+</script>