2020-10-17 13:12:00 +02:00
|
|
|
<template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2021-09-29 17:50:45 +02:00
|
|
|
<MkTab v-model="tab" style="margin-bottom: var(--margin);">
|
2022-07-20 15:24:26 +02:00
|
|
|
<option value="mute">{{ i18n.ts.mutedUsers }}</option>
|
|
|
|
<option value="block">{{ i18n.ts.blockedUsers }}</option>
|
2020-11-17 06:59:15 +01:00
|
|
|
</MkTab>
|
2020-12-31 11:10:38 +01:00
|
|
|
<div v-if="tab === 'mute'">
|
2023-03-07 01:37:02 +01:00
|
|
|
<MkPagination :pagination="mutingPagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
|
|
<div>{{ i18n.ts.noUsers }}</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #default="{ items }">
|
|
|
|
<div class="_gaps_s">
|
|
|
|
<div v-for="item in items" :key="item.mutee.id" :class="[$style.userItem, { [$style.userItemOpend]: expandedMuteItems.includes(item.id) }]">
|
|
|
|
<div :class="$style.userItemMain">
|
|
|
|
<MkA :class="$style.userItemMainBody" :to="`/user-info/${item.mutee.id}`">
|
|
|
|
<MkUserCardMini :user="item.mutee"/>
|
|
|
|
</MkA>
|
|
|
|
<button class="_button" :class="$style.userToggle" @click="toggleMuteItem(item)"><i :class="$style.chevron" class="ti ti-chevron-down"></i></button>
|
|
|
|
<button class="_button" :class="$style.remove" @click="unmute(item.mutee, $event)"><i class="ti ti-x"></i></button>
|
|
|
|
</div>
|
|
|
|
<div v-if="expandedMuteItems.includes(item.id)" :class="$style.userItemSub">
|
|
|
|
<div>Muted at: <MkTime :time="item.createdAt" mode="detail"/></div>
|
|
|
|
<div v-if="item.expiresAt">Period: {{ item.expiresAt.toLocaleString() }}</div>
|
|
|
|
<div v-else>Period: {{ i18n.ts.indefinitely }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
2020-12-31 11:10:38 +01:00
|
|
|
<div v-if="tab === 'block'">
|
2023-03-07 01:37:02 +01:00
|
|
|
<MkPagination :pagination="blockingPagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
|
|
<div>{{ i18n.ts.noUsers }}</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #default="{ items }">
|
|
|
|
<div class="_gaps_s">
|
|
|
|
<div v-for="item in items" :key="item.blockee.id" :class="[$style.userItem, { [$style.userItemOpend]: expandedBlockItems.includes(item.id) }]">
|
|
|
|
<div :class="$style.userItemMain">
|
|
|
|
<MkA :class="$style.userItemMainBody" :to="`/user-info/${item.blockee.id}`">
|
|
|
|
<MkUserCardMini :user="item.blockee"/>
|
|
|
|
</MkA>
|
|
|
|
<button class="_button" :class="$style.userToggle" @click="toggleBlockItem(item)"><i :class="$style.chevron" class="ti ti-chevron-down"></i></button>
|
|
|
|
<button class="_button" :class="$style.remove" @click="unblock(item.blockee, $event)"><i class="ti ti-x"></i></button>
|
|
|
|
</div>
|
|
|
|
<div v-if="expandedBlockItems.includes(item.id)" :class="$style.userItemSub">
|
|
|
|
<div>Blocked at: <MkTime :time="item.createdAt" mode="detail"/></div>
|
|
|
|
<div v-if="item.expiresAt">Period: {{ item.expiresAt.toLocaleString() }}</div>
|
|
|
|
<div v-else>Period: {{ i18n.ts.indefinitely }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
2022-01-04 09:58:53 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkTab from '@/components/MkTab.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import FormInfo from '@/components/MkInfo.vue';
|
2022-01-04 09:58:53 +01:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { userPage } from '@/filters/user';
|
2022-01-15 09:58:35 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-03-07 01:37:02 +01:00
|
|
|
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
|
|
|
import * as os from '@/os';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
let tab = $ref('mute');
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
const mutingPagination = {
|
|
|
|
endpoint: 'mute/list' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
const blockingPagination = {
|
|
|
|
endpoint: 'blocking/list' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2023-03-07 01:37:02 +01:00
|
|
|
let expandedMuteItems = $ref([]);
|
|
|
|
let expandedBlockItems = $ref([]);
|
|
|
|
|
|
|
|
async function unmute(user, ev) {
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.unmute,
|
|
|
|
icon: 'ti ti-x',
|
|
|
|
action: async () => {
|
|
|
|
await os.apiWithDialog('mute/delete', { userId: user.id });
|
|
|
|
//role.users = role.users.filter(u => u.id !== user.id);
|
|
|
|
},
|
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unblock(user, ev) {
|
|
|
|
os.popupMenu([{
|
|
|
|
text: i18n.ts.unblock,
|
|
|
|
icon: 'ti ti-x',
|
|
|
|
action: async () => {
|
|
|
|
await os.apiWithDialog('blocking/delete', { userId: user.id });
|
|
|
|
//role.users = role.users.filter(u => u.id !== user.id);
|
|
|
|
},
|
|
|
|
}], ev.currentTarget ?? ev.target);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function toggleMuteItem(item) {
|
|
|
|
if (expandedMuteItems.includes(item.id)) {
|
|
|
|
expandedMuteItems = expandedMuteItems.filter(x => x !== item.id);
|
|
|
|
} else {
|
|
|
|
expandedMuteItems.push(item.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function toggleBlockItem(item) {
|
|
|
|
if (expandedBlockItems.includes(item.id)) {
|
|
|
|
expandedBlockItems = expandedBlockItems.filter(x => x !== item.id);
|
|
|
|
} else {
|
|
|
|
expandedBlockItems.push(item.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.muteAndBlock,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-ban',
|
2020-10-17 13:12:00 +02:00
|
|
|
});
|
|
|
|
</script>
|
2023-03-07 01:37:02 +01:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.userItemMain {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userItemSub {
|
|
|
|
padding: 6px 12px;
|
|
|
|
font-size: 85%;
|
|
|
|
color: var(--fgTransparentWeak);
|
|
|
|
}
|
|
|
|
|
|
|
|
.userItemMainBody {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.userToggle,
|
|
|
|
.remove {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chevron {
|
|
|
|
display: block;
|
|
|
|
transition: transform 0.1s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.userItem.userItemOpend {
|
|
|
|
.chevron {
|
|
|
|
transform: rotateX(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|