mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 14:43:08 +02:00
162 lines
3.5 KiB
Vue
162 lines
3.5 KiB
Vue
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :content-max="700">
|
|
<div class="mk-list-page">
|
|
<transition :name="$store.state.animation ? 'zoom' : ''" mode="out-in">
|
|
<div v-if="list" class="_section">
|
|
<div class="_content">
|
|
<MkButton inline @click="addUser()">{{ i18n.ts.addUser }}</MkButton>
|
|
<MkButton inline @click="renameList()">{{ i18n.ts.rename }}</MkButton>
|
|
<MkButton inline @click="deleteList()">{{ i18n.ts.delete }}</MkButton>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
|
|
<transition :name="$store.state.animation ? 'zoom' : ''" mode="out-in">
|
|
<div v-if="list" class="_section members _gap">
|
|
<div class="_title">{{ i18n.ts.members }}</div>
|
|
<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>
|
|
</transition>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, watch } from 'vue';
|
|
import MkButton from '@/components/ui/button.vue';
|
|
import * as os from '@/os';
|
|
import { mainRouter } from '@/router';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const props = defineProps<{
|
|
listId: string;
|
|
}>();
|
|
|
|
let list = $ref(null);
|
|
let users = $ref([]);
|
|
|
|
function fetchList() {
|
|
os.api('users/lists/show', {
|
|
listId: props.listId,
|
|
}).then(_list => {
|
|
list = _list;
|
|
os.api('users/show', {
|
|
userIds: list.userIds,
|
|
}).then(_users => {
|
|
users = _users;
|
|
});
|
|
});
|
|
}
|
|
|
|
function addUser() {
|
|
os.selectUser().then(user => {
|
|
os.apiWithDialog('users/lists/push', {
|
|
listId: list.id,
|
|
userId: user.id,
|
|
}).then(() => {
|
|
users.push(user);
|
|
});
|
|
});
|
|
}
|
|
|
|
function removeUser(user) {
|
|
os.api('users/lists/pull', {
|
|
listId: list.id,
|
|
userId: user.id,
|
|
}).then(() => {
|
|
users = users.filter(x => x.id !== user.id);
|
|
});
|
|
}
|
|
|
|
async function renameList() {
|
|
const { canceled, result: name } = await os.inputText({
|
|
title: i18n.ts.enterListName,
|
|
default: list.name,
|
|
});
|
|
if (canceled) return;
|
|
|
|
await os.api('users/lists/update', {
|
|
listId: list.id,
|
|
name: name,
|
|
});
|
|
|
|
list.name = name;
|
|
}
|
|
|
|
async function deleteList() {
|
|
const { canceled } = await os.confirm({
|
|
type: 'warning',
|
|
text: i18n.t('removeAreYouSure', { x: list.name }),
|
|
});
|
|
if (canceled) return;
|
|
|
|
await os.api('users/lists/delete', {
|
|
listId: list.id,
|
|
});
|
|
os.success();
|
|
mainRouter.push('/my/lists');
|
|
}
|
|
|
|
watch(() => props.listId, fetchList, { immediate: true });
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata(computed(() => list ? {
|
|
title: list.name,
|
|
icon: 'fas fa-list-ul',
|
|
} : null));
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-list-page {
|
|
> .members {
|
|
> ._content {
|
|
> .users {
|
|
> .user {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px;
|
|
|
|
> .avatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
> .body {
|
|
flex: 1;
|
|
padding: 8px;
|
|
|
|
> .name {
|
|
display: block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
> .acct {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|