2020-10-25 23:59:03 +01:00
|
|
|
<template>
|
|
|
|
<div class="columns is-centered">
|
2020-11-24 14:17:41 +01:00
|
|
|
<div class="form-column column is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-third-fullhd">
|
2020-10-25 23:59:03 +01:00
|
|
|
<h1 class="title">
|
|
|
|
{{ $t('groups.groups') }}
|
|
|
|
</h1>
|
2020-11-25 21:56:04 +01:00
|
|
|
<div class="is-size-7-mobile">
|
2020-10-25 23:59:03 +01:00
|
|
|
{{ $t('groups.manage_groups_legend')}}
|
2020-11-25 21:56:04 +01:00
|
|
|
</div>
|
|
|
|
<div class="mt-3 mb-6">
|
|
|
|
<router-link class="is-link mt-5" :to="{ name: 'createGroup' }">
|
|
|
|
<font-awesome-icon :icon="['fas', 'plus-circle']" /> Create new group
|
|
|
|
</router-link>
|
|
|
|
</div>
|
2020-11-26 12:59:29 +01:00
|
|
|
<div v-if="groups.length > 0">
|
|
|
|
<div v-for="group in groups" :key="group.id" class="group-item has-text-light is-size-5 is-size-6-mobile">
|
|
|
|
{{ group.name }}
|
2020-11-26 13:25:46 +01:00
|
|
|
<!-- delete icon -->
|
2020-11-26 12:59:29 +01:00
|
|
|
<a class="has-text-grey is-pulled-right" @click="deleteGroup(group.id)">
|
|
|
|
<font-awesome-icon :icon="['fas', 'trash']" />
|
|
|
|
</a>
|
2020-11-26 13:25:46 +01:00
|
|
|
<!-- edit link -->
|
|
|
|
<router-link :to="{ name: 'editGroup', params: { id: group.id, name: group.name }}" class="tag is-dark">
|
2020-11-26 12:59:29 +01:00
|
|
|
{{ $t('commons.rename') }}
|
|
|
|
</router-link>
|
2021-10-09 19:23:24 +02:00
|
|
|
<span class="is-family-primary is-size-6 is-size-7-mobile has-text-grey">{{ group.twofaccounts_count }} {{ $t('twofaccounts.accounts') }}</span>
|
2020-11-26 12:59:29 +01:00
|
|
|
</div>
|
|
|
|
<div class="mt-2 is-size-7 is-pulled-right" v-if="groups.length > 0">
|
|
|
|
{{ $t('groups.deleting_group_does_not_delete_accounts')}}
|
|
|
|
</div>
|
2020-10-25 23:59:03 +01:00
|
|
|
</div>
|
2020-11-29 18:57:17 +01:00
|
|
|
<div v-if="isFetching && groups.length === 0" class="has-text-centered">
|
2020-11-26 12:59:29 +01:00
|
|
|
<span class="is-size-4">
|
|
|
|
<font-awesome-icon :icon="['fas', 'spinner']" spin />
|
|
|
|
</span>
|
2020-11-25 21:56:04 +01:00
|
|
|
</div>
|
2020-10-25 23:59:03 +01:00
|
|
|
<!-- footer -->
|
|
|
|
<vue-footer :showButtons="true">
|
|
|
|
<!-- close button -->
|
|
|
|
<p class="control">
|
2021-10-09 19:23:24 +02:00
|
|
|
<router-link :to="{ name: 'accounts', params: { toRefresh: true } }" class="button is-dark is-rounded">{{ $t('commons.close') }}</router-link>
|
2020-10-25 23:59:03 +01:00
|
|
|
</p>
|
|
|
|
</vue-footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
groups : [],
|
2020-11-27 13:54:54 +01:00
|
|
|
TheAllGroup : null,
|
2020-11-29 18:57:17 +01:00
|
|
|
isFetching: false,
|
2020-10-25 23:59:03 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2020-11-26 20:41:02 +01:00
|
|
|
// Load groups for localstorage at first to avoid latency
|
|
|
|
const groups = this.$storage.get('groups', null) // use null as fallback if localstorage is empty
|
|
|
|
|
2020-11-27 13:54:54 +01:00
|
|
|
// We don't want the pseudo group 'All' to be managed so we shift it
|
|
|
|
if( groups ) {
|
|
|
|
this.groups = groups
|
|
|
|
this.TheAllGroup = this.groups.shift()
|
|
|
|
}
|
|
|
|
|
|
|
|
// we refresh the collection whatever
|
2020-10-25 23:59:03 +01:00
|
|
|
this.fetchGroups()
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
2021-10-09 19:23:24 +02:00
|
|
|
/**
|
|
|
|
* Get all groups from backend
|
|
|
|
*/
|
2020-10-25 23:59:03 +01:00
|
|
|
async fetchGroups() {
|
|
|
|
|
2020-11-29 18:57:17 +01:00
|
|
|
this.isFetching = true
|
|
|
|
|
2020-10-25 23:59:03 +01:00
|
|
|
await this.axios.get('api/groups').then(response => {
|
2020-11-26 20:41:02 +01:00
|
|
|
const groups = []
|
|
|
|
|
2020-10-25 23:59:03 +01:00
|
|
|
response.data.forEach((data) => {
|
2021-10-09 19:23:24 +02:00
|
|
|
groups.push(data)
|
2020-10-25 23:59:03 +01:00
|
|
|
})
|
2020-11-26 20:41:02 +01:00
|
|
|
|
2021-10-09 19:23:24 +02:00
|
|
|
// Remove the 'All' pseudo group from the collection
|
|
|
|
// and push it the TheAllGroup
|
2020-11-27 13:54:54 +01:00
|
|
|
this.TheAllGroup = groups.shift()
|
|
|
|
|
2020-11-26 20:41:02 +01:00
|
|
|
this.groups = groups
|
2020-10-25 23:59:03 +01:00
|
|
|
})
|
2020-11-29 18:57:17 +01:00
|
|
|
|
|
|
|
this.isFetching = false
|
2020-10-25 23:59:03 +01:00
|
|
|
},
|
|
|
|
|
2021-10-09 19:23:24 +02:00
|
|
|
/**
|
|
|
|
* Delete a group (after confirmation)
|
|
|
|
*/
|
2020-10-25 23:59:03 +01:00
|
|
|
deleteGroup(id) {
|
|
|
|
if(confirm(this.$t('groups.confirm.delete'))) {
|
|
|
|
this.axios.delete('/api/groups/' + id)
|
|
|
|
|
|
|
|
// Remove the deleted group from the collection
|
|
|
|
this.groups = this.groups.filter(a => a.id !== id)
|
2020-12-01 07:03:45 +01:00
|
|
|
|
|
|
|
// Reset persisted group filter to 'All' (groupId=0)
|
2021-10-09 19:23:24 +02:00
|
|
|
// (backend will save to change automatically)
|
2020-12-01 07:03:45 +01:00
|
|
|
if( parseInt(this.$root.appSettings.activeGroup) === id ) {
|
2021-10-09 19:23:24 +02:00
|
|
|
this.$root.appSettings.activeGroup = 0
|
2020-12-01 07:03:45 +01:00
|
|
|
}
|
2020-10-25 23:59:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2020-11-26 20:41:02 +01:00
|
|
|
beforeRouteLeave(to, from, next) {
|
2021-10-09 19:23:24 +02:00
|
|
|
// reinject the 'All' pseudo group before refreshing the localstorage
|
2020-11-27 13:54:54 +01:00
|
|
|
this.groups.unshift(this.TheAllGroup)
|
2020-11-26 20:41:02 +01:00
|
|
|
this.$storage.set('groups', this.groups)
|
|
|
|
|
|
|
|
next()
|
|
|
|
}
|
|
|
|
|
2020-10-25 23:59:03 +01:00
|
|
|
}
|
|
|
|
</script>
|