feat(frontend): Report renote abuse (#11466)
* chore: add way to show renote in window / tab * feat: report abuse for renote * docs: Renote自体を通報できるように * revert: make renote time link * chore: add copy renote menu * chore: remove copy/report renote from note menu * fix: abuse menu without actual selection shown --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
parent
c5af9e371c
commit
46b0eb46b3
|
@ -34,6 +34,7 @@
|
||||||
- Enhance: 自分が押したリアクションのデザインを改善
|
- Enhance: 自分が押したリアクションのデザインを改善
|
||||||
- Enhance: ノート検索にローカルのみ検索可能なオプションの追加
|
- Enhance: ノート検索にローカルのみ検索可能なオプションの追加
|
||||||
- Enhance: AiScriptで`LOCALE`として現在の設定言語を取得できるように
|
- Enhance: AiScriptで`LOCALE`として現在の設定言語を取得できるように
|
||||||
|
- Enhance: Renote自体を通報できるように
|
||||||
- `$[rainbow ]`記法が、動きのあるMFMが無効になっていても使用できるようになりました
|
- `$[rainbow ]`記法が、動きのあるMFMが無効になっていても使用できるようになりました
|
||||||
- Playの操作を行うAPI TokenをAPIコンソールから発行できるように
|
- Playの操作を行うAPI TokenをAPIコンソールから発行できるように
|
||||||
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
|
- Fix: サーバー情報画面(`/instance-info/{domain}`)でブロックができないのを修正
|
||||||
|
|
|
@ -48,6 +48,7 @@ export interface Locale {
|
||||||
"unpin": string;
|
"unpin": string;
|
||||||
"copyContent": string;
|
"copyContent": string;
|
||||||
"copyLink": string;
|
"copyLink": string;
|
||||||
|
"copyLinkRenote": string;
|
||||||
"delete": string;
|
"delete": string;
|
||||||
"deleteAndEdit": string;
|
"deleteAndEdit": string;
|
||||||
"deleteAndEditConfirm": string;
|
"deleteAndEditConfirm": string;
|
||||||
|
@ -658,6 +659,7 @@ export interface Locale {
|
||||||
"sample": string;
|
"sample": string;
|
||||||
"abuseReports": string;
|
"abuseReports": string;
|
||||||
"reportAbuse": string;
|
"reportAbuse": string;
|
||||||
|
"reportAbuseRenote": string;
|
||||||
"reportAbuseOf": string;
|
"reportAbuseOf": string;
|
||||||
"fillAbuseReportDescription": string;
|
"fillAbuseReportDescription": string;
|
||||||
"abuseReported": string;
|
"abuseReported": string;
|
||||||
|
|
|
@ -45,6 +45,7 @@ pin: "ピン留め"
|
||||||
unpin: "ピン留め解除"
|
unpin: "ピン留め解除"
|
||||||
copyContent: "内容をコピー"
|
copyContent: "内容をコピー"
|
||||||
copyLink: "リンクをコピー"
|
copyLink: "リンクをコピー"
|
||||||
|
copyLinkRenote: "Renoteのリンクをコピー"
|
||||||
delete: "削除"
|
delete: "削除"
|
||||||
deleteAndEdit: "削除して編集"
|
deleteAndEdit: "削除して編集"
|
||||||
deleteAndEditConfirm: "このノートを削除してもう一度編集しますか?このノートへのリアクション、Renote、返信も全て削除されます。"
|
deleteAndEditConfirm: "このノートを削除してもう一度編集しますか?このノートへのリアクション、Renote、返信も全て削除されます。"
|
||||||
|
@ -655,6 +656,7 @@ behavior: "動作"
|
||||||
sample: "サンプル"
|
sample: "サンプル"
|
||||||
abuseReports: "通報"
|
abuseReports: "通報"
|
||||||
reportAbuse: "通報"
|
reportAbuse: "通報"
|
||||||
|
reportAbuseRenote: "Renoteを通報"
|
||||||
reportAbuseOf: "{name}を通報する"
|
reportAbuseOf: "{name}を通報する"
|
||||||
fillAbuseReportDescription: "通報理由の詳細を記入してください。対象のノートがある場合はそのURLも記入してください。"
|
fillAbuseReportDescription: "通報理由の詳細を記入してください。対象のノートがある場合はそのURLも記入してください。"
|
||||||
abuseReported: "内容が送信されました。ご報告ありがとうございました。"
|
abuseReported: "内容が送信されました。ご報告ありがとうございました。"
|
||||||
|
|
|
@ -29,7 +29,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</I18n>
|
</I18n>
|
||||||
<div :class="$style.renoteInfo">
|
<div :class="$style.renoteInfo">
|
||||||
<button ref="renoteTime" :class="$style.renoteTime" class="_button" @click="showRenoteMenu()">
|
<button ref="renoteTime" :class="$style.renoteTime" class="_button" @click="showRenoteMenu()">
|
||||||
<i v-if="isMyRenote" class="ti ti-dots" :class="$style.renoteMenu"></i>
|
<i class="ti ti-dots" :class="$style.renoteMenu"></i>
|
||||||
<MkTime :time="note.createdAt"/>
|
<MkTime :time="note.createdAt"/>
|
||||||
</button>
|
</button>
|
||||||
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
<span v-if="note.visibility !== 'public'" style="margin-left: 0.5em;" :title="i18n.ts._visibility[note.visibility]">
|
||||||
|
@ -161,7 +161,7 @@ import { reactionPicker } from '@/scripts/reaction-picker';
|
||||||
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm';
|
import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm';
|
||||||
import { $i } from '@/account';
|
import { $i } from '@/account';
|
||||||
import { i18n } from '@/i18n';
|
import { i18n } from '@/i18n';
|
||||||
import { getNoteClipMenu, getNoteMenu } from '@/scripts/get-note-menu';
|
import { getAbuseNoteMenu, getCopyNoteLinkMenu, getNoteClipMenu, getNoteMenu } from '@/scripts/get-note-menu';
|
||||||
import { useNoteCapture } from '@/scripts/use-note-capture';
|
import { useNoteCapture } from '@/scripts/use-note-capture';
|
||||||
import { deepClone } from '@/scripts/clone';
|
import { deepClone } from '@/scripts/clone';
|
||||||
import { useTooltip } from '@/scripts/use-tooltip';
|
import { useTooltip } from '@/scripts/use-tooltip';
|
||||||
|
@ -425,21 +425,34 @@ async function clip() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function showRenoteMenu(viaKeyboard = false): void {
|
function showRenoteMenu(viaKeyboard = false): void {
|
||||||
if (!isMyRenote) return;
|
if (isMyRenote) {
|
||||||
pleaseLogin();
|
pleaseLogin();
|
||||||
os.popupMenu([{
|
os.popupMenu([
|
||||||
text: i18n.ts.unrenote,
|
getCopyNoteLinkMenu(note, i18n.ts.copyLinkRenote),
|
||||||
icon: 'ti ti-trash',
|
null,
|
||||||
danger: true,
|
{
|
||||||
action: () => {
|
text: i18n.ts.unrenote,
|
||||||
os.api('notes/delete', {
|
icon: 'ti ti-trash',
|
||||||
noteId: note.id,
|
danger: true,
|
||||||
});
|
action: () => {
|
||||||
isDeleted.value = true;
|
os.api('notes/delete', {
|
||||||
},
|
noteId: note.id,
|
||||||
}], renoteTime.value, {
|
});
|
||||||
viaKeyboard: viaKeyboard,
|
isDeleted.value = true;
|
||||||
});
|
},
|
||||||
|
},
|
||||||
|
], renoteTime.value, {
|
||||||
|
viaKeyboard: viaKeyboard,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
os.popupMenu([
|
||||||
|
getCopyNoteLinkMenu(note, i18n.ts.copyLinkRenote),
|
||||||
|
null,
|
||||||
|
getAbuseNoteMenu(note, i18n.ts.reportAbuseRenote),
|
||||||
|
], renoteTime.value, {
|
||||||
|
viaKeyboard: viaKeyboard,
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function focus() {
|
function focus() {
|
||||||
|
|
|
@ -92,6 +92,31 @@ export async function getNoteClipMenu(props: {
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getAbuseNoteMenu(note: misskey.entities.Note, text: string): MenuItem {
|
||||||
|
return {
|
||||||
|
icon: 'ti ti-exclamation-circle',
|
||||||
|
text,
|
||||||
|
action: (): void => {
|
||||||
|
const u = note.url ?? note.uri ?? `${url}/notes/${note.id}`;
|
||||||
|
os.popup(defineAsyncComponent(() => import('@/components/MkAbuseReportWindow.vue')), {
|
||||||
|
user: note.user,
|
||||||
|
initialComment: `Note: ${u}\n-----\n`,
|
||||||
|
}, {}, 'closed');
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getCopyNoteLinkMenu(note: misskey.entities.Note, text: string): MenuItem {
|
||||||
|
return {
|
||||||
|
icon: 'ti ti-link',
|
||||||
|
text,
|
||||||
|
action: (): void => {
|
||||||
|
copyToClipboard(`${url}/notes/${note.id}`);
|
||||||
|
os.success();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
export function getNoteMenu(props: {
|
export function getNoteMenu(props: {
|
||||||
note: Misskey.entities.Note;
|
note: Misskey.entities.Note;
|
||||||
menuButton: Ref<HTMLElement>;
|
menuButton: Ref<HTMLElement>;
|
||||||
|
@ -266,11 +291,8 @@ export function getNoteMenu(props: {
|
||||||
icon: 'ti ti-copy',
|
icon: 'ti ti-copy',
|
||||||
text: i18n.ts.copyContent,
|
text: i18n.ts.copyContent,
|
||||||
action: copyContent,
|
action: copyContent,
|
||||||
}, {
|
}, getCopyNoteLinkMenu(appearNote, i18n.ts.copyLink)
|
||||||
icon: 'ti ti-link',
|
, (appearNote.url || appearNote.uri) ? {
|
||||||
text: i18n.ts.copyLink,
|
|
||||||
action: copyLink,
|
|
||||||
}, (appearNote.url || appearNote.uri) ? {
|
|
||||||
icon: 'ti ti-external-link',
|
icon: 'ti ti-external-link',
|
||||||
text: i18n.ts.showOnRemote,
|
text: i18n.ts.showOnRemote,
|
||||||
action: () => {
|
action: () => {
|
||||||
|
@ -344,17 +366,8 @@ export function getNoteMenu(props: {
|
||||||
),*/
|
),*/
|
||||||
...(appearNote.userId !== $i.id ? [
|
...(appearNote.userId !== $i.id ? [
|
||||||
null,
|
null,
|
||||||
{
|
appearNote.userId !== $i.id ? getAbuseNoteMenu(appearNote, i18n.ts.reportAbuse) : undefined,
|
||||||
icon: 'ti ti-exclamation-circle',
|
]
|
||||||
text: i18n.ts.reportAbuse,
|
|
||||||
action: () => {
|
|
||||||
const u = appearNote.url ?? appearNote.uri ?? `${url}/notes/${appearNote.id}`;
|
|
||||||
os.popup(defineAsyncComponent(() => import('@/components/MkAbuseReportWindow.vue')), {
|
|
||||||
user: appearNote.user,
|
|
||||||
initialComment: `Note: ${u}\n-----\n`,
|
|
||||||
}, {}, 'closed');
|
|
||||||
},
|
|
||||||
}]
|
|
||||||
: []
|
: []
|
||||||
),
|
),
|
||||||
...(appearNote.userId === $i.id || $i.isModerator || $i.isAdmin ? [
|
...(appearNote.userId === $i.id || $i.isModerator || $i.isAdmin ? [
|
||||||
|
@ -382,11 +395,8 @@ export function getNoteMenu(props: {
|
||||||
icon: 'ti ti-copy',
|
icon: 'ti ti-copy',
|
||||||
text: i18n.ts.copyContent,
|
text: i18n.ts.copyContent,
|
||||||
action: copyContent,
|
action: copyContent,
|
||||||
}, {
|
}, getCopyNoteLinkMenu(appearNote, i18n.ts.copyLink)
|
||||||
icon: 'ti ti-link',
|
, (appearNote.url || appearNote.uri) ? {
|
||||||
text: i18n.ts.copyLink,
|
|
||||||
action: copyLink,
|
|
||||||
}, (appearNote.url || appearNote.uri) ? {
|
|
||||||
icon: 'ti ti-external-link',
|
icon: 'ti ti-external-link',
|
||||||
text: i18n.ts.showOnRemote,
|
text: i18n.ts.showOnRemote,
|
||||||
action: () => {
|
action: () => {
|
||||||
|
|
Loading…
Reference in New Issue