summaryrefslogtreecommitdiff
path: root/src/client/pages/instance/queue.vue
blob: 5dec95c670767aad4edfe5f6ca9e6cdd2b663a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
<div>
	<XQueue :connection="connection" domain="inbox">
		<template #title><Fa :icon="faExchangeAlt"/> In</template>
	</XQueue>
	<XQueue :connection="connection" domain="deliver">
		<template #title><Fa :icon="faExchangeAlt"/> Out</template>
	</XQueue>
	<section class="_section">
		<div class="_content">
			<MkButton @click="clear()"><Fa :icon="faTrashAlt"/> {{ $t('clearQueue') }}</MkButton>
		</div>
	</section>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { faExchangeAlt } from '@fortawesome/free-solid-svg-icons';
import { faTrashAlt } from '@fortawesome/free-regular-svg-icons';
import MkButton from '@/components/ui/button.vue';
import XQueue from './queue.chart.vue';
import * as os from '@/os';

export default defineComponent({
	components: {
		MkButton,
		XQueue,
	},

	data() {
		return {
			INFO: {
				header: [{
					title: this.$t('jobQueue'),
					icon: faExchangeAlt,
				}],
			},
			connection: os.stream.useSharedConnection('queueStats'),
			faExchangeAlt, faTrashAlt
		}
	},

	mounted() {
		this.$nextTick(() => {
			this.connection.send('requestLog', {
				id: Math.random().toString().substr(2, 8),
				length: 200
			});
		});
	},

	beforeUnmount() {
		this.connection.dispose();
	},

	methods: {
		clear() {
			os.dialog({
				type: 'warning',
				title: this.$t('clearQueueConfirmTitle'),
				text: this.$t('clearQueueConfirmText'),
				showCancelButton: true
			}).then(({ canceled }) => {
				if (canceled) return;

				os.apiWithDialog('admin/queue/clear', {});
			});
		}
	}
});
</script>