mizzkey/packages/frontend/src/components/MkAbuseReport.vue

144 lines
3.7 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-12-10 01:17:24 +01:00
<div :class="$style.root">
<div :class="$style.target">
<MkA v-user-preview="report.targetUserId" :class="$style.info" :to="`/admin/user/${report.targetUserId}`">
<MkAvatar :class="$style.avatar" :user="report.targetUser" indicator/>
<div :class="$style.name">
<MkUserName :class="$style.names" :user="report.targetUser"/>
<MkAcct :class="$style.names" :user="report.targetUser" style="display: block;"/>
2022-06-21 07:12:39 +02:00
</div>
</MkA>
2023-01-05 13:04:56 +01:00
<MkKeyValue>
2022-07-20 15:24:26 +02:00
<template #key>{{ i18n.ts.registeredDate }}</template>
<template #value>{{ dateString(report.targetUser.createdAt) }} (<MkTime :time="report.targetUser.createdAt"/>)</template>
2022-06-21 07:12:39 +02:00
</MkKeyValue>
</div>
2023-12-10 01:17:24 +01:00
<div :class="$style.detail">
<div>
<Mfm :text="report.comment"/>
2023-12-10 01:17:24 +01:00
<MkFolder v-if="report.notes.length !== 0" :class="$style.notes">
<template #label>{{ i18n.ts.reportedNote }}</template>
<div v-for="note in report.notes" :class="$style.notes">
<MkNoteSimple :note="note"/>
</div>
</MkFolder>
</div>
<hr/>
<div>{{ i18n.ts.reporter }}: <MkA :to="`/admin/user/${report.reporter.id}`" class="_link">@{{ report.reporter.username }}</MkA></div>
<div v-if="report.assignee">
2022-07-20 15:24:26 +02:00
{{ i18n.ts.moderator }}:
<MkAcct :user="report.assignee"/>
</div>
<div><MkTime :time="report.createdAt"/></div>
2022-06-21 07:12:39 +02:00
<div class="action">
<MkSwitch v-model="forward" :disabled="report.targetUser.host == null || report.resolved">
2022-07-20 15:24:26 +02:00
{{ i18n.ts.forwardReport }}
<template #caption>{{ i18n.ts.forwardReportIsAnonymous }}</template>
2022-06-21 07:12:39 +02:00
</MkSwitch>
2022-07-20 15:24:26 +02:00
<MkButton v-if="!report.resolved" primary @click="resolve">{{ i18n.ts.abuseMarkAsResolved }}</MkButton>
2022-06-21 07:12:39 +02:00
</div>
</div>
</div>
</template>
2022-06-21 07:12:39 +02:00
<script lang="ts" setup>
import { ref } from 'vue';
2023-12-10 01:17:24 +01:00
import * as Misskey from 'misskey-js';
import MkButton from '@/components/MkButton.vue';
2023-01-07 06:59:54 +01:00
import MkSwitch from '@/components/MkSwitch.vue';
import MkKeyValue from '@/components/MkKeyValue.vue';
2023-09-19 09:37:43 +02:00
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
import { dateString } from '@/filters/date.js';
2023-12-10 01:17:24 +01:00
import MkFolder from '@/components/MkFolder.vue';
import MkNoteSimple from '@/components/MkNoteSimple.vue';
2022-06-21 07:12:39 +02:00
const props = defineProps<{
2023-12-10 01:17:24 +01:00
report: {
id: string;
createdAt:string;
targetUserId:Misskey.entities.User['id'];
targetUser:Misskey.entities.User & {createdAt:string;};
reporter:Misskey.entities.User;
assignee:Misskey.entities.User['id'];
comment:string;
notes:Misskey.entities.Note['id'][];
forwarded:boolean;
resolved:boolean;
};
2022-06-21 07:12:39 +02:00
}>();
refactor: use Vite to build instead of webpack (#8575) * update stream.ts * https://github.com/misskey-dev/misskey/pull/7769#issuecomment-917542339 * fix lint * clean up? * add app * fix * nanka iroiro * wip * wip * fix lint * fix loginId * fix * refactor * refactor * remove follow action * clean up * Revert "remove follow action" This reverts commit defbb416480905af2150d1c92f10d8e1d1288c0a. * Revert "clean up" This reverts commit f94919cb9cff41e274044fc69c56ad36a33974f2. * remove fetch specification * renoteの条件追加 * apiFetch => cli * bypass fetch? * fix * refactor: use path alias * temp: add submodule * remove submodule * enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * :v: * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * :v: * clean up config * typesを戻した * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * キャッシュ対策 * Truncate push notification message * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * i18n.ts * update * :v: * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * URLをsw.jsに戻す * clean up * wip * wip * wip * wip * wip * wip * :v: * use import * fix * install rollup * use defineAsyncComponent. * fix emojilist * wip use defineAsyncComponent * popup(import -> popup(defineAsyncComponent(() => import * draggable? * fix init import * clean up * fix router * add comment * :v: * :v: * :v: * remove webpack * update vite * fix boot sequence * Revert "fix boot sequence" This reverts commit e893dbf37aed83bf9f12e427d98c78a7065b4a39. * revert boot import * never make two app div * ; * remove console.log * change clientEntry sequence * fix * Revert "fix" This reverts commit 12741b3d89950a31dbb1bb81477ddb27b0e9951a. * fix * add comment https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210 * add log * add comment Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2022-05-01 15:51:07 +02:00
2022-06-21 07:12:39 +02:00
const emit = defineEmits<{
(ev: 'resolved', reportId: string): void;
}>();
const forward = ref(props.report.forwarded);
2022-06-21 07:12:39 +02:00
function resolve() {
os.apiWithDialog('admin/resolve-abuse-user-report', {
forward: forward.value,
2022-06-21 07:12:39 +02:00
reportId: props.report.id,
}).then(() => {
emit('resolved', props.report.id);
});
}
</script>
2023-12-10 01:17:24 +01:00
<style lang="scss" module>
.root {
2022-06-21 07:12:39 +02:00
display: flex;
2023-12-10 01:17:24 +01:00
margin: var(--margin) 0;
background: var(--panel);
border-radius: var(--radius);
overflow: clip;
}
2022-06-21 07:12:39 +02:00
2023-12-10 01:17:24 +01:00
.notes {
margin: var(--margin) 0;
padding: 0;
}
2023-12-10 01:17:24 +01:00
.target {
width: 35%;
box-sizing: border-box;
text-align: left;
padding: 24px;
border-right: solid 1px var(--divider);
}
.info {
display: flex;
box-sizing: border-box;
align-items: center;
padding: 14px;
border-radius: 8px;
--c: rgb(255 196 0 / 15%);
background-image: linear-gradient(45deg, var(--c) 16.67%, transparent 16.67%, transparent 50%, var(--c) 50%, var(--c) 66.67%, transparent 66.67%, transparent 100%);
background-size: 16px 16px;
}
2022-06-21 07:12:39 +02:00
2023-12-10 01:17:24 +01:00
.avatar {
width: 42px;
height: 42px;
}
2022-06-21 07:12:39 +02:00
2023-12-10 01:17:24 +01:00
.names {
margin-left: 0.3em;
padding: 0 8px;
flex: 1;
}
2023-12-10 01:17:24 +01:00
.name {
font-weight: bold;
}
2022-06-21 07:12:39 +02:00
2023-12-10 01:17:24 +01:00
.detail {
flex: 1;
padding: 24px;
}
2023-12-10 01:17:24 +01:00
</style>