2018-12-18 23:22:01 +01:00
|
|
|
<template>
|
2019-05-18 13:36:33 +02:00
|
|
|
<div class="ivrbakop">
|
|
|
|
<ui-container v-if="group">
|
|
|
|
<template #header><fa :icon="faUsers"/> {{ group.name }}</template>
|
2018-12-18 23:22:01 +01:00
|
|
|
|
|
|
|
<section>
|
2019-05-18 13:36:33 +02:00
|
|
|
<ui-margin>
|
|
|
|
<ui-button @click="rename"><fa :icon="faICursor"/> {{ $t('rename') }}</ui-button>
|
|
|
|
<ui-button @click="del"><fa :icon="faTrashAlt"/> {{ $t('delete') }}</ui-button>
|
|
|
|
</ui-margin>
|
2018-12-18 23:22:01 +01:00
|
|
|
</section>
|
2019-05-18 13:36:33 +02:00
|
|
|
</ui-container>
|
2018-12-18 23:22:01 +01:00
|
|
|
|
2019-05-18 13:36:33 +02:00
|
|
|
<ui-container>
|
|
|
|
<template #header><fa :icon="faUsers"/> {{ $t('users') }}</template>
|
2018-12-18 23:22:01 +01:00
|
|
|
|
|
|
|
<section>
|
2019-05-18 13:36:33 +02:00
|
|
|
<ui-margin>
|
|
|
|
<ui-button @click="add"><fa :icon="faPlus"/> {{ $t('add-user') }}</ui-button>
|
|
|
|
</ui-margin>
|
2018-12-18 23:22:01 +01:00
|
|
|
<sequential-entrance animation="entranceFromTop" delay="25">
|
2019-05-18 13:36:33 +02:00
|
|
|
<div class="kjlrfbes" v-for="user in users">
|
2018-12-18 23:22:01 +01:00
|
|
|
<div>
|
|
|
|
<a :href="user | userPage">
|
|
|
|
<mk-avatar class="avatar" :user="user" :disable-link="true"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<header>
|
|
|
|
<b><mk-user-name :user="user"/></b>
|
|
|
|
<span class="username">@{{ user | acct }}</span>
|
|
|
|
</header>
|
|
|
|
<div>
|
|
|
|
<a @click="remove(user)">{{ $t('remove-user') }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</sequential-entrance>
|
|
|
|
</section>
|
2019-05-18 13:36:33 +02:00
|
|
|
</ui-container>
|
2018-12-18 23:22:01 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import i18n from '../../../i18n';
|
2019-05-18 13:36:33 +02:00
|
|
|
import { faICursor, faUsers, faPlus } from '@fortawesome/free-solid-svg-icons';
|
2018-12-18 23:22:01 +01:00
|
|
|
import { faTrashAlt } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2019-05-18 13:36:33 +02:00
|
|
|
i18n: i18n('common/views/components/user-group-editor.vue'),
|
2018-12-18 23:22:01 +01:00
|
|
|
|
|
|
|
props: {
|
2019-05-18 13:36:33 +02:00
|
|
|
groupId: {
|
2018-12-18 23:22:01 +01:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2019-05-18 13:36:33 +02:00
|
|
|
group: null,
|
2018-12-18 23:22:01 +01:00
|
|
|
users: [],
|
2019-05-18 13:36:33 +02:00
|
|
|
faICursor, faTrashAlt, faUsers, faPlus
|
2018-12-18 23:22:01 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2019-05-18 13:36:33 +02:00
|
|
|
created() {
|
|
|
|
this.$root.api('users/groups/show', {
|
|
|
|
groupId: this.groupId
|
|
|
|
}).then(group => {
|
|
|
|
this.group = group;
|
|
|
|
this.fetchUsers();
|
|
|
|
this.$emit('init', {
|
|
|
|
title: this.group.name,
|
|
|
|
icon: faUsers
|
|
|
|
});
|
|
|
|
});
|
2018-12-18 23:22:01 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
fetchUsers() {
|
|
|
|
this.$root.api('users/show', {
|
2019-05-18 13:36:33 +02:00
|
|
|
userIds: this.group.userIds
|
2018-12-18 23:22:01 +01:00
|
|
|
}).then(users => {
|
|
|
|
this.users = users;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
rename() {
|
|
|
|
this.$root.dialog({
|
|
|
|
title: this.$t('rename'),
|
|
|
|
input: {
|
2019-05-18 13:36:33 +02:00
|
|
|
default: this.group.name
|
2018-12-18 23:22:01 +01:00
|
|
|
}
|
2019-04-23 15:35:26 +02:00
|
|
|
}).then(({ canceled, result: name }) => {
|
2018-12-18 23:22:01 +01:00
|
|
|
if (canceled) return;
|
2019-05-18 13:36:33 +02:00
|
|
|
this.$root.api('users/groups/update', {
|
|
|
|
groupId: this.group.id,
|
2019-04-23 15:35:26 +02:00
|
|
|
name: name
|
2018-12-18 23:22:01 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
del() {
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'warning',
|
2019-05-18 13:36:33 +02:00
|
|
|
text: this.$t('delete-are-you-sure').replace('$1', this.group.name),
|
2018-12-18 23:22:01 +01:00
|
|
|
showCancelButton: true
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
|
2019-05-18 13:36:33 +02:00
|
|
|
this.$root.api('users/groups/delete', {
|
|
|
|
groupId: this.group.id
|
2018-12-18 23:22:01 +01:00
|
|
|
}).then(() => {
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
|
|
|
text: this.$t('deleted')
|
|
|
|
});
|
|
|
|
}).catch(e => {
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'error',
|
|
|
|
text: e
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
remove(user: any) {
|
2019-05-18 13:36:33 +02:00
|
|
|
this.$root.api('users/groups/pull', {
|
|
|
|
groupId: this.group.id,
|
|
|
|
userId: user.id
|
|
|
|
}).then(() => {
|
|
|
|
this.fetchUsers();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async add() {
|
|
|
|
const { result: user } = await this.$root.dialog({
|
|
|
|
user: {
|
|
|
|
local: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (user == null) return;
|
|
|
|
this.$root.api('users/groups/push', {
|
|
|
|
groupId: this.group.id,
|
2018-12-18 23:22:01 +01:00
|
|
|
userId: user.id
|
|
|
|
}).then(() => {
|
|
|
|
this.fetchUsers();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2019-05-18 13:36:33 +02:00
|
|
|
.ivrbakop
|
|
|
|
.kjlrfbes
|
2018-12-18 23:22:01 +01:00
|
|
|
display flex
|
2019-05-18 13:36:33 +02:00
|
|
|
padding 16px
|
2018-12-18 23:22:01 +01:00
|
|
|
border-top solid 1px var(--faceDivider)
|
|
|
|
|
|
|
|
> div:first-child
|
|
|
|
> a
|
|
|
|
> .avatar
|
|
|
|
width 64px
|
|
|
|
height 64px
|
|
|
|
|
|
|
|
> div:last-child
|
|
|
|
flex 1
|
|
|
|
padding-left 16px
|
|
|
|
|
|
|
|
@media (max-width 500px)
|
|
|
|
font-size 14px
|
|
|
|
|
|
|
|
> header
|
|
|
|
> .username
|
|
|
|
margin-left 8px
|
|
|
|
opacity 0.7
|
|
|
|
|
|
|
|
</style>
|