rudeshark.net/src/client/app/common/views/pages/user-group-editor.vue

181 lines
3.6 KiB
Vue
Raw Normal View History

<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>
<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>
</section>
2019-05-18 13:36:33 +02:00
</ui-container>
2019-05-18 13:36:33 +02:00
<ui-container>
<template #header><fa :icon="faUsers"/> {{ $t('users') }}</template>
<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>
<sequential-entrance animation="entranceFromTop" delay="25">
2019-05-18 13:36:33 +02:00
<div class="kjlrfbes" v-for="user in users">
<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>
</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';
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'),
props: {
2019-05-18 13:36:33 +02:00
groupId: {
required: true
}
},
data() {
return {
2019-05-18 13:36:33 +02:00
group: null,
users: [],
2019-05-18 13:36:33 +02:00
faICursor, faTrashAlt, faUsers, faPlus
};
},
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
});
});
},
methods: {
fetchUsers() {
this.$root.api('users/show', {
2019-05-18 13:36:33 +02:00
userIds: this.group.userIds
}).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
}
}).then(({ canceled, result: name }) => {
if (canceled) return;
2019-05-18 13:36:33 +02:00
this.$root.api('users/groups/update', {
groupId: this.group.id,
name: name
});
});
},
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),
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
}).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,
userId: user.id
}).then(() => {
this.fetchUsers();
});
}
}
});
</script>
<style lang="stylus" scoped>
2019-05-18 13:36:33 +02:00
.ivrbakop
.kjlrfbes
display flex
2019-05-18 13:36:33 +02:00
padding 16px
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>