2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
<template>
|
2022-06-20 17:38:49 +09:00
|
|
|
<MkStickyContainer>
|
2022-06-25 23:01:40 +09:00
|
|
|
<template #header><XHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 20:52:15 +09:00
|
|
|
<MkSpacer :contentMax="800">
|
2022-06-25 23:01:40 +09:00
|
|
|
<XQueue v-if="tab === 'deliver'" domain="deliver"/>
|
|
|
|
<XQueue v-else-if="tab === 'inbox'" domain="inbox"/>
|
2023-03-22 08:58:23 +09:00
|
|
|
<br>
|
|
|
|
<MkButton @click="promoteAllQueues"><i class="ti ti-reload"></i> {{ i18n.ts.retryAllQueuesNow }}</MkButton>
|
2022-06-20 17:38:49 +09:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-30 04:37:25 +09:00
|
|
|
</template>
|
|
|
|
|
2022-05-18 01:31:04 +09:00
|
|
|
<script lang="ts" setup>
|
2020-08-09 15:51:02 +09:00
|
|
|
import XQueue from './queue.chart.vue';
|
2022-06-20 17:38:49 +09:00
|
|
|
import XHeader from './_header_.vue';
|
2023-09-19 16:37:43 +09:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import * as config from '@/config.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-03-22 08:58:23 +09:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-06-25 23:01:40 +09:00
|
|
|
let tab = $ref('deliver');
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-05-18 01:31:04 +09:00
|
|
|
function clear() {
|
|
|
|
os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
title: i18n.ts.clearQueueConfirmTitle,
|
|
|
|
text: i18n.ts.clearQueueConfirmText,
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
2021-04-22 22:29:33 +09:00
|
|
|
|
2022-05-18 01:31:04 +09:00
|
|
|
os.apiWithDialog('admin/queue/clear');
|
|
|
|
});
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2023-03-22 08:58:23 +09:00
|
|
|
function promoteAllQueues() {
|
|
|
|
os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
title: i18n.ts.retryAllQueuesConfirmTitle,
|
|
|
|
text: i18n.ts.retryAllQueuesConfirmText,
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('admin/queue/promote', { type: tab });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 17:38:49 +09:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
asFullButton: true,
|
2022-12-20 15:24:31 +09:00
|
|
|
icon: 'ti ti-external-link',
|
2022-06-20 17:38:49 +09:00
|
|
|
text: i18n.ts.dashboard,
|
|
|
|
handler: () => {
|
|
|
|
window.open(config.url + '/queue', '_blank');
|
|
|
|
},
|
|
|
|
}]);
|
|
|
|
|
2022-06-25 23:01:40 +09:00
|
|
|
const headerTabs = $computed(() => [{
|
|
|
|
key: 'deliver',
|
|
|
|
title: 'Deliver',
|
|
|
|
}, {
|
|
|
|
key: 'inbox',
|
|
|
|
title: 'Inbox',
|
|
|
|
}]);
|
2022-06-20 17:38:49 +09:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.jobQueue,
|
2022-12-20 15:15:34 +09:00
|
|
|
icon: 'ti ti-clock-play',
|
2020-01-30 04:37:25 +09:00
|
|
|
});
|
|
|
|
</script>
|