trashposs/packages/client/src/pages/my-groups/group.vue

170 lines
3.6 KiB
Vue
Raw Normal View History

<template>
2022-09-14 02:08:09 +02:00
<MkStickyContainer>
<template #header><MkPageHeader/></template>
<div class="mk-group-page">
<transition :name="$store.state.animation ? 'zoom' : ''" mode="out-in">
<div v-if="group" class="_section">
<div class="_content" style="display: flex; gap: var(--margin); flex-wrap: wrap;">
<MkButton inline @click="invite()">{{ $ts.invite }}</MkButton>
<MkButton inline @click="renameGroup()">{{ $ts.rename }}</MkButton>
<MkButton inline @click="transfer()">{{ $ts.transfer }}</MkButton>
<MkButton inline @click="deleteGroup()">{{ $ts.delete }}</MkButton>
</div>
</div>
2022-09-14 02:08:09 +02:00
</transition>
<transition :name="$store.state.animation ? 'zoom' : ''" mode="out-in">
<div v-if="group" class="_section members _gap">
<div class="_content">
<div class="users">
<div v-for="user in users" :key="user.id" class="user _panel">
<MkAvatar :user="user" class="avatar" :show-indicator="true"/>
<div class="body">
<MkUserName :user="user" class="name"/>
<MkAcct :user="user" class="acct"/>
</div>
<div class="action">
<button class="_button" @click="removeUser(user)"><i class="fas fa-times"></i></button>
</div>
</div>
</div>
</div>
</div>
2022-09-14 02:08:09 +02:00
</transition>
</div>
</MkStickyContainer>
</template>
2022-09-14 02:08:09 +02:00
<script lang="ts" setup>
2022-09-14 02:14:56 +02:00
import { computed, watch } from 'vue';
2022-09-14 01:47:35 +02:00
import MkButton from '@/components/MkButton.vue';
2022-09-14 02:14:56 +02:00
import { definePageMetadata } from '@/scripts/page-metadata';
2022-09-14 02:08:09 +02:00
import { i18n } from '@/i18n';
import * as os from '@/os';
2022-09-14 02:14:56 +02:00
const props = defineProps<{
groupId: {
2022-09-14 02:16:43 +02:00
type: string,
required: true,
},
2022-09-14 02:14:56 +02:00
}>();
2022-09-14 02:14:56 +02:00
watch(() => props.groupId, () => {
fetch();
});
2022-09-14 02:08:09 +02:00
2022-09-14 02:14:56 +02:00
function fetch() {
os.api('users/groups/show', {
groupId: this.groupId
}).then(group => {
this.group = group;
os.api('users/show', {
userIds: this.group.userIds
}).then(users => {
this.users = users;
});
});
}
function invite() {
os.selectUser().then(user => {
os.apiWithDialog('users/groups/invite', {
groupId: this.group.id,
userId: user.id
});
});
2022-09-14 02:16:27 +02:00
}
2022-09-14 02:14:56 +02:00
function removeUser(user) {
os.api('users/groups/pull', {
groupId: this.group.id,
userId: user.id
}).then(() => {
this.users = this.users.filter(x => x.id !== user.id);
});
2022-09-14 02:16:27 +02:00
}
2022-09-14 02:14:56 +02:00
async function renameGroup() {
const { canceled, result: name } = await os.inputText({
title: this.$ts.groupName,
default: this.group.name
});
if (canceled) return;
await os.api('users/groups/update', {
groupId: this.group.id,
name: name
});
this.group.name = name;
2022-09-14 02:16:27 +02:00
}
2022-09-14 02:14:56 +02:00
function transfer() {
os.selectUser().then(user => {
os.apiWithDialog('users/groups/transfer', {
groupId: this.group.id,
userId: user.id
});
});
2022-09-14 02:16:27 +02:00
}
2022-09-14 02:14:56 +02:00
async function deleteGroup() {
const { canceled } = await os.confirm({
type: 'warning',
text: this.$t('removeAreYouSure', { x: this.group.name }),
});
if (canceled) return;
await os.apiWithDialog('users/groups/delete', {
groupId: this.group.id
});
this.$router.push('/my/groups');
}
2022-09-14 02:08:09 +02:00
definePageMetadata(computed(() => ({
title: i18n.ts.members,
icon: 'fas fa-users',
})));
</script>
<style lang="scss" scoped>
2022-09-14 02:08:09 +02:00
.mk-group-page {
> ._section {
> ._content {
padding-top: 1rem;
justify-content: center;
}
}
> .members {
> ._content {
> .users {
> .user {
display: flex;
align-items: center;
padding: 16px;
> .avatar {
width: 50px;
height: 50px;
}
2022-09-14 02:08:09 +02:00
> .body {
flex: 1;
padding: 8px;
2022-09-14 02:08:09 +02:00
> .name {
display: block;
font-weight: bold;
}
2022-09-14 02:08:09 +02:00
> .acct {
opacity: 0.5;
}
}
}
}
}
}
}
2022-09-14 02:08:09 +02:00
</style>