mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:23:08 +02:00
56 lines
1.3 KiB
Vue
56 lines
1.3 KiB
Vue
<template>
|
|
<MkStickyContainer>
|
|
<template #header><XHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :content-max="800">
|
|
<XQueue v-if="tab === 'deliver'" domain="deliver"/>
|
|
<XQueue v-else-if="tab === 'inbox'" domain="inbox"/>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { markRaw, onMounted, onBeforeUnmount, nextTick } from 'vue';
|
|
import XQueue from './queue.chart.vue';
|
|
import XHeader from './_header_.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import * as os from '@/os';
|
|
import * as config from '@/config';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
let tab = $ref('deliver');
|
|
|
|
function clear() {
|
|
os.confirm({
|
|
type: 'warning',
|
|
title: i18n.ts.clearQueueConfirmTitle,
|
|
text: i18n.ts.clearQueueConfirmText,
|
|
}).then(({ canceled }) => {
|
|
if (canceled) return;
|
|
|
|
os.apiWithDialog('admin/queue/clear');
|
|
});
|
|
}
|
|
|
|
const headerActions = $computed(() => [{
|
|
asFullButton: true,
|
|
icon: 'ti ti-external-link',
|
|
text: i18n.ts.dashboard,
|
|
handler: () => {
|
|
window.open(config.url + '/queue', '_blank');
|
|
},
|
|
}]);
|
|
|
|
const headerTabs = $computed(() => [{
|
|
key: 'deliver',
|
|
title: 'Deliver',
|
|
}, {
|
|
key: 'inbox',
|
|
title: 'Inbox',
|
|
}]);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.jobQueue,
|
|
icon: 'ti ti-clock-play',
|
|
});
|
|
</script>
|