103 lines
2.8 KiB
Vue
103 lines
2.8 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkFolder>
|
|
<template #icon><i class="ti ti-notes"></i></template>
|
|
<template #label>{{ i18n.ts._customEmojisManager._gridCommon.registrationLogs }}</template>
|
|
<template #caption>
|
|
{{ i18n.ts._customEmojisManager._gridCommon.registrationLogsCaption }}
|
|
</template>
|
|
|
|
<div>
|
|
<div v-if="logs.length > 0" style="display:flex; flex-direction: column; overflow-y: scroll; gap: 16px;">
|
|
<MkSwitch v-model="showingSuccessLogs">
|
|
<template #label>{{ i18n.ts._customEmojisManager._logs.showSuccessLogSwitch }}</template>
|
|
</MkSwitch>
|
|
<div>
|
|
<div v-if="filteredLogs.length > 0">
|
|
<MkGrid
|
|
:data="filteredLogs"
|
|
:settings="setupGrid()"
|
|
/>
|
|
</div>
|
|
<div v-else>
|
|
{{ i18n.ts._customEmojisManager._logs.failureLogNothing }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
{{ i18n.ts._customEmojisManager._logs.logNothing }}
|
|
</div>
|
|
</div>
|
|
</MkFolder>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { computed, ref, toRefs } from 'vue';
|
|
import { i18n } from '@/i18n.js';
|
|
import { RequestLogItem } from '@/pages/admin/custom-emojis-manager.impl.js';
|
|
import MkGrid from '@/components/grid/MkGrid.vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import { GridSetting } from '@/components/grid/grid.js';
|
|
import { copyGridDataToClipboard } from '@/components/grid/grid-utils.js';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
function setupGrid(): GridSetting {
|
|
return {
|
|
row: {
|
|
showNumber: false,
|
|
selectable: false,
|
|
contextMenuFactory: (row, context) => {
|
|
return [
|
|
{
|
|
type: 'button',
|
|
text: i18n.ts._customEmojisManager._gridCommon.copySelectionRows,
|
|
icon: 'ti ti-copy',
|
|
action: () => copyGridDataToClipboard(logs, context),
|
|
},
|
|
];
|
|
},
|
|
},
|
|
cols: [
|
|
{ bindTo: 'failed', title: 'failed', type: 'boolean', editable: false, width: 50 },
|
|
{ bindTo: 'url', icon: 'ti-icons', type: 'image', editable: false, width: 'auto' },
|
|
{ bindTo: 'name', title: 'name', type: 'text', editable: false, width: 140 },
|
|
{ bindTo: 'error', title: 'log', type: 'text', editable: false, width: 'auto' },
|
|
],
|
|
cells: {
|
|
contextMenuFactory: (col, row, value, context) => {
|
|
return [
|
|
{
|
|
type: 'button',
|
|
text: i18n.ts._customEmojisManager._gridCommon.copySelectionRanges,
|
|
icon: 'ti ti-copy',
|
|
action: () => copyGridDataToClipboard(logs, context),
|
|
},
|
|
];
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
const props = defineProps<{
|
|
logs: RequestLogItem[];
|
|
}>();
|
|
|
|
const { logs } = toRefs(props);
|
|
const showingSuccessLogs = ref<boolean>(false);
|
|
|
|
const filteredLogs = computed(() => {
|
|
const forceShowing = showingSuccessLogs.value;
|
|
return logs.value.filter((log) => forceShowing || log.failed);
|
|
});
|
|
|
|
</script>
|
|
|
|
<style module lang="scss">
|
|
|
|
</style>
|