2023-09-23 12:28:16 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :contentMax="900">
|
|
|
|
<div>
|
|
|
|
<div style="display: flex; gap: var(--margin); flex-wrap: wrap;">
|
|
|
|
<MkSelect v-model="type" style="margin: 0; flex: 1;">
|
|
|
|
<template #label>{{ i18n.ts.type }}</template>
|
|
|
|
<option :value="null">{{ i18n.ts.all }}</option>
|
2023-09-24 09:10:56 +03:00
|
|
|
<option v-for="t in Misskey.moderationLogTypes" :key="t" :value="t">{{ i18n.ts._moderationLogTypes[t] ?? t }}</option>
|
2023-09-23 12:28:16 +03:00
|
|
|
</MkSelect>
|
|
|
|
<MkInput v-model="moderatorId" style="margin: 0; flex: 1;">
|
|
|
|
<template #label>{{ i18n.ts.moderator }}(ID)</template>
|
|
|
|
</MkInput>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<MkPagination v-slot="{items}" ref="logs" :pagination="pagination" style="margin-top: var(--margin);">
|
|
|
|
<div class="_gaps_s">
|
|
|
|
<XModLog v-for="item in items" :key="item.id" :log="item"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import XHeader from './_header_.vue';
|
|
|
|
import XModLog from './modlog.ModLog.vue';
|
|
|
|
import MkSelect from '@/components/MkSelect.vue';
|
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
|
|
|
|
let logs = $shallowRef<InstanceType<typeof MkPagination>>();
|
|
|
|
|
|
|
|
let type = $ref(null);
|
|
|
|
let moderatorId = $ref('');
|
|
|
|
|
|
|
|
const pagination = {
|
|
|
|
endpoint: 'admin/show-moderation-logs' as const,
|
|
|
|
limit: 30,
|
|
|
|
params: computed(() => ({
|
|
|
|
type,
|
|
|
|
userId: moderatorId === '' ? null : moderatorId,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
|
|
|
|
console.log(Misskey);
|
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.moderationLogs,
|
2023-09-30 22:53:52 +03:00
|
|
|
icon: 'ph-list ph-bold pg-lg-search',
|
2023-09-23 12:28:16 +03:00
|
|
|
});
|
|
|
|
</script>
|