2023-07-27 00:31:52 -05:00
|
|
|
<!--
|
2024-02-13 09:59:27 -06:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-01-20 12:06:38 -06:00
|
|
|
<template>
|
2024-10-03 20:18:36 -05:00
|
|
|
<MkFolder>
|
|
|
|
<template #icon>
|
|
|
|
<i v-if="report.resolved" class="ti ti-check" style="color: var(--success)"></i>
|
|
|
|
<i v-else class="ti ti-exclamation-circle" style="color: var(--warn)"></i>
|
|
|
|
</template>
|
|
|
|
<template #label><MkAcct :user="report.targetUser"/> (by <MkAcct :user="report.reporter"/>)</template>
|
|
|
|
<template #suffix><MkTime :time="report.createdAt"/></template>
|
|
|
|
<template v-if="!report.resolved" #footer>
|
|
|
|
<div class="_buttons">
|
|
|
|
<MkButton primary @click="resolve">{{ i18n.ts.abuseMarkAsResolved }}</MkButton>
|
|
|
|
<template v-if="report.targetUser.host == null || report.resolved">
|
|
|
|
<MkButton primary @click="resolveAndForward">{{ i18n.ts.forwardReport }}</MkButton>
|
|
|
|
<div v-tooltip:dialog="i18n.ts.forwardReportIsAnonymous" class="_button _help"><i class="ti ti-help-circle"></i></div>
|
|
|
|
</template>
|
2022-01-20 12:06:38 -06:00
|
|
|
</div>
|
2024-10-03 20:18:36 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<div :class="$style.root" class="_gaps_s">
|
|
|
|
<MkFolder :withSpacer="false">
|
|
|
|
<template #icon><MkAvatar :user="report.targetUser" style="width: 18px; height: 18px;"/></template>
|
|
|
|
<template #label>Target: <MkAcct :user="report.targetUser"/></template>
|
|
|
|
<template #suffix>#{{ report.targetUserId.toUpperCase() }}</template>
|
|
|
|
|
|
|
|
<div style="container-type: inline-size;">
|
|
|
|
<RouterView :router="targetRouter"/>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
|
|
|
<MkFolder :defaultOpen="true">
|
|
|
|
<template #icon><i class="ti ti-message-2"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.details }}</template>
|
|
|
|
<div>
|
|
|
|
<Mfm :text="report.comment" :linkNavigationBehavior="'window'"/>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
|
|
|
<MkFolder :withSpacer="false">
|
|
|
|
<template #icon><MkAvatar :user="report.reporter" style="width: 18px; height: 18px;"/></template>
|
|
|
|
<template #label>{{ i18n.ts.reporter }}: <MkAcct :user="report.reporter"/></template>
|
|
|
|
<template #suffix>#{{ report.reporterId.toUpperCase() }}</template>
|
|
|
|
|
|
|
|
<div style="container-type: inline-size;">
|
|
|
|
<RouterView :router="reporterRouter"/>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
|
2022-01-20 12:06:38 -06:00
|
|
|
<div v-if="report.assignee">
|
2022-07-20 08:24:26 -05:00
|
|
|
{{ i18n.ts.moderator }}:
|
2022-01-20 12:06:38 -06:00
|
|
|
<MkAcct :user="report.assignee"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-10-03 20:18:36 -05:00
|
|
|
</MkFolder>
|
2022-01-20 12:06:38 -06:00
|
|
|
</template>
|
|
|
|
|
2022-06-21 00:12:39 -05:00
|
|
|
<script lang="ts" setup>
|
2024-10-03 20:18:36 -05:00
|
|
|
import { provide, ref } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
2022-09-06 04:21:49 -05:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-06 23:59:54 -06:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2022-08-30 10:24:33 -05:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2023-09-19 02:37:43 -05:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { dateString } from '@/filters/date.js';
|
2024-10-03 20:18:36 -05:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import RouterView from '@/components/global/RouterView.vue';
|
|
|
|
import { useRouterFactory } from '@/router/supplier';
|
2022-01-20 12:06:38 -06:00
|
|
|
|
2022-06-21 00:12:39 -05:00
|
|
|
const props = defineProps<{
|
2024-10-03 20:18:36 -05:00
|
|
|
report: Misskey.entities.AdminAbuseUserReportsResponse[number];
|
2022-06-21 00:12:39 -05:00
|
|
|
}>();
|
2022-05-01 08:51:07 -05:00
|
|
|
|
2022-06-21 00:12:39 -05:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'resolved', reportId: string): void;
|
|
|
|
}>();
|
2022-01-20 12:06:38 -06:00
|
|
|
|
2024-10-03 20:18:36 -05:00
|
|
|
const routerFactory = useRouterFactory();
|
|
|
|
const targetRouter = routerFactory(`/admin/user/${props.report.targetUserId}`);
|
|
|
|
targetRouter.init();
|
|
|
|
const reporterRouter = routerFactory(`/admin/user/${props.report.reporterId}`);
|
|
|
|
reporterRouter.init();
|
2022-01-20 12:06:38 -06:00
|
|
|
|
2022-06-21 00:12:39 -05:00
|
|
|
function resolve() {
|
|
|
|
os.apiWithDialog('admin/resolve-abuse-user-report', {
|
|
|
|
reportId: props.report.id,
|
|
|
|
}).then(() => {
|
|
|
|
emit('resolved', props.report.id);
|
|
|
|
});
|
|
|
|
}
|
2022-01-20 12:06:38 -06:00
|
|
|
|
2024-10-03 20:18:36 -05:00
|
|
|
function resolveAndForward() {
|
|
|
|
os.apiWithDialog('admin/resolve-abuse-user-report', {
|
|
|
|
forward: true,
|
|
|
|
reportId: props.report.id,
|
|
|
|
}).then(() => {
|
|
|
|
emit('resolved', props.report.id);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
2022-06-21 00:12:39 -05:00
|
|
|
|
2024-10-03 20:18:36 -05:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2022-01-20 12:06:38 -06:00
|
|
|
}
|
|
|
|
</style>
|