-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Bulk Operation for Group Binding in Spaces Admin UI - MEED-…
…7767 - Meeds-io/MIPs#160 (#4184) This change will allow to add group(s) as bound to a set of spaces by a single user selection.
- Loading branch information
Showing
8 changed files
with
124 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...apps/spaces-administration/components/bulk-action/SpacesAdministrationBulkSyncMembers.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!-- | ||
|
||
This file is part of the Meeds project (https://meeds.io/). | ||
|
||
Copyright (C) 2020 - 2024 Meeds Association contact@meeds.io | ||
|
||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser 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 | ||
Lesser General Public License for more details. | ||
|
||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
|
||
--> | ||
<template> | ||
<v-btn | ||
:disabled="$root.isBulkProcessing" | ||
color="primary" | ||
elevation="0" | ||
outlined | ||
@click="$root.$emit('space-administration-sync-members-drawer-open', $root.selectedSpaces, $root.allSpacesSelected ? $root.spacesSize : $root.selectedSpaces.length, syncMembers)"> | ||
<v-icon size="16" class="me-2">fa-users</v-icon> | ||
{{ $t('social.spaces.administration.manageSpaces.syncMembers') }} | ||
</v-btn> | ||
</template> | ||
<script> | ||
export default { | ||
data: () => ({ | ||
successMessage: null, | ||
}), | ||
methods: { | ||
syncMembers(groups) { | ||
// Workaround for context change, compute success message on processing start | ||
this.successMessage = this.$t('social.spaces.administration.manageSpaces.groupsBoundOnSpaces'); | ||
this.$root.applyOperationInBulk( | ||
async space => { | ||
let spaceBoundGroups = await this.$spaceBindingService.getGroupSpaceBindings(space.id); | ||
if (!spaceBoundGroups?.length) { | ||
spaceBoundGroups = groups; | ||
} else { | ||
spaceBoundGroups.push(...groups.filter(g => !spaceBoundGroups.find(g))); | ||
} | ||
await this.$spaceBindingService.saveGroupsSpaceBindings(space.id, spaceBoundGroups); | ||
}, | ||
null, | ||
() => { | ||
this.$root.$emit('alert-message', this.successMessage, 'success'); | ||
this.$root.$emit('spaces-administration-list-refresh'); | ||
}); | ||
}, | ||
}, | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters