rudeshark.net/packages/client/src/pages/admin/abuses.vue

97 lines
3.1 KiB
Vue
Raw Normal View History

2020-10-19 12:29:04 +02:00
<template>
<MkStickyContainer>
2022-11-07 04:04:15 +01:00
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
<MkSpacer :content-max="900">
<div class="lcixvhis">
<div class="_section reports">
<div class="_content">
<div class="inputs" style="display: flex;">
<MkSelect v-model="state" style="margin: 0; flex: 1;">
2022-07-20 15:24:26 +02:00
<template #label>{{ i18n.ts.state }}</template>
<option value="all">{{ i18n.ts.all }}</option>
<option value="unresolved">{{ i18n.ts.unresolved }}</option>
<option value="resolved">{{ i18n.ts.resolved }}</option>
</MkSelect>
<MkSelect v-model="targetUserOrigin" style="margin: 0; flex: 1;">
2022-07-20 15:24:26 +02:00
<template #label>{{ i18n.ts.reporteeOrigin }}</template>
<option value="combined">{{ i18n.ts.all }}</option>
<option value="local">{{ i18n.ts.local }}</option>
<option value="remote">{{ i18n.ts.remote }}</option>
</MkSelect>
<MkSelect v-model="reporterOrigin" style="margin: 0; flex: 1;">
2022-07-20 15:24:26 +02:00
<template #label>{{ i18n.ts.reporterOrigin }}</template>
<option value="combined">{{ i18n.ts.all }}</option>
<option value="local">{{ i18n.ts.local }}</option>
<option value="remote">{{ i18n.ts.remote }}</option>
</MkSelect>
</div>
<!-- TODO
2020-10-19 12:29:04 +02:00
<div class="inputs" style="display: flex; padding-top: 1.2em;">
2022-07-04 10:35:27 +02:00
<MkInput v-model="searchUsername" style="margin: 0; flex: 1;" type="text" :spellcheck="false">
2022-07-20 15:24:26 +02:00
<span>{{ i18n.ts.username }}</span>
2020-10-19 12:29:04 +02:00
</MkInput>
2022-07-04 10:35:27 +02:00
<MkInput v-model="searchHost" style="margin: 0; flex: 1;" type="text" :spellcheck="false" :disabled="pagination.params().origin === 'local'">
2022-07-20 15:24:26 +02:00
<span>{{ i18n.ts.host }}</span>
2020-10-19 12:29:04 +02:00
</MkInput>
</div>
-->
<MkPagination v-slot="{items}" ref="reports" :pagination="pagination" style="margin-top: var(--margin);">
<XAbuseReport v-for="report in items" :key="report.id" :report="report" @resolved="resolved"/>
</MkPagination>
</div>
</div>
2020-10-19 12:29:04 +02:00
</div>
</MkSpacer>
</MkStickyContainer>
2020-10-19 12:29:04 +02:00
</template>
2022-04-27 08:17:49 +02:00
<script lang="ts" setup>
import { computed } from 'vue';
2021-11-11 18:02:25 +01:00
import MkInput from '@/components/form/input.vue';
import MkSelect from '@/components/form/select.vue';
import MkPagination from '@/components/MkPagination.vue';
import XAbuseReport from '@/components/MkAbuseReport.vue';
2021-11-11 18:02:25 +01:00
import * as os from '@/os';
2022-04-27 08:17:49 +02:00
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
2020-10-19 12:29:04 +02:00
2022-04-27 08:17:49 +02:00
let reports = $ref<InstanceType<typeof MkPagination>>();
2020-10-19 12:29:04 +02:00
2022-04-27 08:17:49 +02:00
let state = $ref('unresolved');
let reporterOrigin = $ref('combined');
let targetUserOrigin = $ref('combined');
let searchUsername = $ref('');
let searchHost = $ref('');
2022-04-27 08:17:49 +02:00
const pagination = {
endpoint: 'admin/abuse-user-reports' as const,
limit: 10,
params: computed(() => ({
state,
reporterOrigin,
targetUserOrigin,
})),
};
2020-10-19 12:29:04 +02:00
2022-04-27 08:17:49 +02:00
function resolved(reportId) {
reports.removeItem(item => item.id === reportId);
}
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.abuseReports,
2022-11-07 03:49:47 +01:00
icon: 'ph-warning-circle-bold ph-lg',
2020-10-19 12:29:04 +02:00
});
</script>
<style lang="scss" scoped>
.lcixvhis {
margin: var(--margin);
}
2020-10-19 12:29:04 +02:00
</style>