258 lines
7.7 KiB
Vue
258 lines
7.7 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps_m">
|
|
<MkFolder>
|
|
<template #icon><i class="ph-envelope ph-bold ph-lg"></i></template>
|
|
<template #label>{{ i18n.ts.wordMute }}</template>
|
|
|
|
<XWordMute/>
|
|
</MkFolder>
|
|
|
|
<MkFolder>
|
|
<template #icon><i class="ph-globe-simple ph-bold ph-lg"></i></template>
|
|
<template #label>{{ i18n.ts.instanceMute }}</template>
|
|
|
|
<XInstanceMute/>
|
|
</MkFolder>
|
|
|
|
<MkFolder>
|
|
<template #icon><i class="ph-repeat ph-bold ph-lg"></i></template>
|
|
<template #label>{{ i18n.ts.mutedUsers }} ({{ i18n.ts.renote }})</template>
|
|
|
|
<MkPagination :pagination="renoteMutingPagination">
|
|
<template #empty>
|
|
<div class="_fullinfo">
|
|
<img :src="infoImageUrl" 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]: expandedRenoteMuteItems.includes(item.id) }]">
|
|
<div :class="$style.userItemMain">
|
|
<MkA :class="$style.userItemMainBody" :to="userPage(item.mutee)">
|
|
<MkUserCardMini :user="item.mutee"/>
|
|
</MkA>
|
|
<button class="_button" :class="$style.userToggle" @click="toggleRenoteMuteItem(item)"><i :class="$style.chevron" class="ph-caret-down ph-bold ph-lg"></i></button>
|
|
<button class="_button" :class="$style.remove" @click="unrenoteMute(item.mutee, $event)"><i class="ph-x ph-bold ph-lg"></i></button>
|
|
</div>
|
|
<div v-if="expandedRenoteMuteItems.includes(item.id)" :class="$style.userItemSub">
|
|
<div>Muted at: <MkTime :time="item.createdAt" mode="detail"/></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</MkFolder>
|
|
|
|
<MkFolder>
|
|
<template #icon><i class="ph-eye-slash ph-bold ph-lg"></i></template>
|
|
<template #label>{{ i18n.ts.mutedUsers }}</template>
|
|
|
|
<MkPagination :pagination="mutingPagination">
|
|
<template #empty>
|
|
<div class="_fullinfo">
|
|
<img :src="infoImageUrl" 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="userPage(item.mutee)">
|
|
<MkUserCardMini :user="item.mutee"/>
|
|
</MkA>
|
|
<button class="_button" :class="$style.userToggle" @click="toggleMuteItem(item)"><i :class="$style.chevron" class="ph-caret-down ph-bold ph-lg"></i></button>
|
|
<button class="_button" :class="$style.remove" @click="unmute(item.mutee, $event)"><i class="ph-x ph-bold ph-lg"></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: {{ new Date(item.expiresAt).toLocaleString() }}</div>
|
|
<div v-else>Period: {{ i18n.ts.indefinitely }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</MkFolder>
|
|
|
|
<MkFolder>
|
|
<template #icon><i class="ph-prohibit ph-bold ph-lg"></i></template>
|
|
<template #label>{{ i18n.ts.blockedUsers }}</template>
|
|
|
|
<MkPagination :pagination="blockingPagination">
|
|
<template #empty>
|
|
<div class="_fullinfo">
|
|
<img :src="infoImageUrl" 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="userPage(item.blockee)">
|
|
<MkUserCardMini :user="item.blockee"/>
|
|
</MkA>
|
|
<button class="_button" :class="$style.userToggle" @click="toggleBlockItem(item)"><i :class="$style.chevron" class="ph-caret-down ph-bold ph-lg"></i></button>
|
|
<button class="_button" :class="$style.remove" @click="unblock(item.blockee, $event)"><i class="ph-x ph-bold ph-lg"></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: {{ new Date(item.expiresAt).toLocaleString() }}</div>
|
|
<div v-else>Period: {{ i18n.ts.indefinitely }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</MkPagination>
|
|
</MkFolder>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import XInstanceMute from './mute-block.instance-mute.vue';
|
|
import XWordMute from './mute-block.word-mute.vue';
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import { userPage } from '@/filters/user.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import MkUserCardMini from '@/components/MkUserCardMini.vue';
|
|
import * as os from '@/os.js';
|
|
import { infoImageUrl } from '@/instance.js';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
const renoteMutingPagination = {
|
|
endpoint: 'renote-mute/list' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
const mutingPagination = {
|
|
endpoint: 'mute/list' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
const blockingPagination = {
|
|
endpoint: 'blocking/list' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
let expandedRenoteMuteItems = $ref([]);
|
|
let expandedMuteItems = $ref([]);
|
|
let expandedBlockItems = $ref([]);
|
|
|
|
async function unrenoteMute(user, ev) {
|
|
os.popupMenu([{
|
|
text: i18n.ts.renoteUnmute,
|
|
icon: 'ph-x ph-bold ph-lg',
|
|
action: async () => {
|
|
await os.apiWithDialog('renote-mute/delete', { userId: user.id });
|
|
//role.users = role.users.filter(u => u.id !== user.id);
|
|
},
|
|
}], ev.currentTarget ?? ev.target);
|
|
}
|
|
|
|
async function unmute(user, ev) {
|
|
os.popupMenu([{
|
|
text: i18n.ts.unmute,
|
|
icon: 'ph-x ph-bold ph-lg',
|
|
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: 'ph-x ph-bold ph-lg',
|
|
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 toggleRenoteMuteItem(item) {
|
|
if (expandedRenoteMuteItems.includes(item.id)) {
|
|
expandedRenoteMuteItems = expandedRenoteMuteItems.filter(x => x !== item.id);
|
|
} else {
|
|
expandedRenoteMuteItems.push(item.id);
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.muteAndBlock,
|
|
icon: 'ph-prohibit ph-bold ph-lg',
|
|
});
|
|
</script>
|
|
|
|
<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>
|