bfg-common 1.3.37 → 1.3.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/scss/common/icons/icons-2.scss +222 -222
- package/components/atoms/switch/Switch.vue +107 -107
- package/components/common/browse/blocks/Title.vue +66 -66
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +137 -137
- package/components/common/pages/Tasks.vue +120 -120
- package/components/common/recursionTree/RecursionTree.vue +203 -203
- package/components/common/resource/lib/utils.ts +44 -33
- package/components/common/vm/actions/clone/Clone.vue +518 -518
- package/composables/useLocal.ts +38 -38
- package/lib/models/store/tasks/interfaces.ts +108 -108
- package/lib/models/table/interfaces.ts +38 -38
- package/lib/utils/sendTask.ts +79 -79
- package/minify.js +146 -146
- package/package.json +1 -1
- package/public/spice-console/application/codec.js +257 -257
- package/public/spice-console/lib/rasterEngine.js +907 -907
- package/public/spice-console/network/spicechannel.js +369 -369
- package/store/main/lib/interfaces.ts +9 -9
- package/store/tasks/actions.ts +133 -133
- package/store/tasks/getters.ts +25 -25
- package/store/tasks/lib/models/interfaces.ts +18 -18
- package/store/tasks/mappers/tasks.ts +1 -4
- package/store/tasks/mutations.ts +58 -58
- package/store/tasks/state.ts +16 -16
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="title-block" :style="blockWidth">
|
|
3
|
-
<div class="title-block__container" :style="blockWidth">
|
|
4
|
-
<div class="title-block__title" :style="blockTitleWidth">
|
|
5
|
-
<b>{{ props.title }}</b>
|
|
6
|
-
</div>
|
|
7
|
-
<div class="title-block__body">
|
|
8
|
-
<slot name="content"></slot>
|
|
9
|
-
</div>
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script setup lang="ts">
|
|
15
|
-
const props = defineProps<{
|
|
16
|
-
title: string
|
|
17
|
-
width: number
|
|
18
|
-
}>()
|
|
19
|
-
|
|
20
|
-
const blockWidth = computed(() => ({ width: `${props.width}px` }))
|
|
21
|
-
const blockTitleWidth = computed(() => ({ width: `${props.width - 2}px` }))
|
|
22
|
-
</script>
|
|
23
|
-
|
|
24
|
-
<style scoped lang="scss">
|
|
25
|
-
.title-block {
|
|
26
|
-
width: 100%;
|
|
27
|
-
min-height: 400px;
|
|
28
|
-
position: relative;
|
|
29
|
-
|
|
30
|
-
&__container {
|
|
31
|
-
position: absolute;
|
|
32
|
-
top: 0;
|
|
33
|
-
height: 400px;
|
|
34
|
-
left: 0;
|
|
35
|
-
display: flex;
|
|
36
|
-
flex-direction: column;
|
|
37
|
-
border-width: 1px;
|
|
38
|
-
border-style: solid;
|
|
39
|
-
border-color: rgb(204, 204, 204);
|
|
40
|
-
border-image: initial;
|
|
41
|
-
background: rgb(255, 255, 255);
|
|
42
|
-
}
|
|
43
|
-
&__title {
|
|
44
|
-
background-color: rgb(231, 235, 239);
|
|
45
|
-
flex: 0 0 auto;
|
|
46
|
-
padding: 8px;
|
|
47
|
-
border-bottom: 1px solid rgb(204, 204, 204);
|
|
48
|
-
display: inline-block;
|
|
49
|
-
white-space: nowrap;
|
|
50
|
-
overflow: hidden !important;
|
|
51
|
-
text-overflow: ellipsis;
|
|
52
|
-
|
|
53
|
-
b {
|
|
54
|
-
font-weight: bolder;
|
|
55
|
-
font-size: 13px;
|
|
56
|
-
letter-spacing: normal;
|
|
57
|
-
font-family: Metropolis, Avenir Next, Helvetica Neue, Arial, sans-serif;
|
|
58
|
-
color: #666;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
&__body {
|
|
62
|
-
flex: 1 1 auto;
|
|
63
|
-
overflow-y: auto;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="title-block" :style="blockWidth">
|
|
3
|
+
<div class="title-block__container" :style="blockWidth">
|
|
4
|
+
<div class="title-block__title" :style="blockTitleWidth">
|
|
5
|
+
<b>{{ props.title }}</b>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="title-block__body">
|
|
8
|
+
<slot name="content"></slot>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script setup lang="ts">
|
|
15
|
+
const props = defineProps<{
|
|
16
|
+
title: string
|
|
17
|
+
width: number
|
|
18
|
+
}>()
|
|
19
|
+
|
|
20
|
+
const blockWidth = computed(() => ({ width: `${props.width}px` }))
|
|
21
|
+
const blockTitleWidth = computed(() => ({ width: `${props.width - 2}px` }))
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<style scoped lang="scss">
|
|
25
|
+
.title-block {
|
|
26
|
+
width: 100%;
|
|
27
|
+
min-height: 400px;
|
|
28
|
+
position: relative;
|
|
29
|
+
|
|
30
|
+
&__container {
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: 0;
|
|
33
|
+
height: 400px;
|
|
34
|
+
left: 0;
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
border-width: 1px;
|
|
38
|
+
border-style: solid;
|
|
39
|
+
border-color: rgb(204, 204, 204);
|
|
40
|
+
border-image: initial;
|
|
41
|
+
background: rgb(255, 255, 255);
|
|
42
|
+
}
|
|
43
|
+
&__title {
|
|
44
|
+
background-color: rgb(231, 235, 239);
|
|
45
|
+
flex: 0 0 auto;
|
|
46
|
+
padding: 8px;
|
|
47
|
+
border-bottom: 1px solid rgb(204, 204, 204);
|
|
48
|
+
display: inline-block;
|
|
49
|
+
white-space: nowrap;
|
|
50
|
+
overflow: hidden !important;
|
|
51
|
+
text-overflow: ellipsis;
|
|
52
|
+
|
|
53
|
+
b {
|
|
54
|
+
font-weight: bolder;
|
|
55
|
+
font-size: 13px;
|
|
56
|
+
letter-spacing: normal;
|
|
57
|
+
font-family: Metropolis, Avenir Next, Helvetica Neue, Arial, sans-serif;
|
|
58
|
+
color: #666;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
&__body {
|
|
62
|
+
flex: 1 1 auto;
|
|
63
|
+
overflow-y: auto;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
</style>
|
|
@@ -1,137 +1,137 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="vertical-flex-container chart-option-counters-vertical-split">
|
|
3
|
-
<span class="chart-options-grid-title">{{
|
|
4
|
-
localization.selectCountersForThisChart
|
|
5
|
-
}}</span>
|
|
6
|
-
|
|
7
|
-
<atoms-table-data-grid
|
|
8
|
-
v-model:selected-row="selectedCounters"
|
|
9
|
-
v-model:column-keys="columnItems"
|
|
10
|
-
v-model:page-size="pagination.pageSize"
|
|
11
|
-
v-model:page="pagination.page"
|
|
12
|
-
type="checkbox"
|
|
13
|
-
class="data-table"
|
|
14
|
-
:head-items="headItems"
|
|
15
|
-
:body-items="bodyItems"
|
|
16
|
-
:total-items="totalItems"
|
|
17
|
-
:total-pages="totalPages"
|
|
18
|
-
hide-footer
|
|
19
|
-
server-off
|
|
20
|
-
@change="onChangeRow"
|
|
21
|
-
/>
|
|
22
|
-
</div>
|
|
23
|
-
</template>
|
|
24
|
-
|
|
25
|
-
<script setup lang="ts">
|
|
26
|
-
import {
|
|
27
|
-
UI_I_HeadItem,
|
|
28
|
-
UI_I_BodyItem,
|
|
29
|
-
UI_I_ColumnKey,
|
|
30
|
-
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
31
|
-
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
32
|
-
import { UI_I_Pagination } from '~/lib/models/table/interfaces'
|
|
33
|
-
import * as table from '~/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/tableConfig'
|
|
34
|
-
import { UI_I_AdvancedCounterItem } from '~/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces'
|
|
35
|
-
import {
|
|
36
|
-
UI_T_ChartHost,
|
|
37
|
-
UI_T_ChartVm,
|
|
38
|
-
} from '~/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/types'
|
|
39
|
-
import { UI_T_AdvancedType } from '~/components/common/monitor/advanced/lib/models/types'
|
|
40
|
-
import { countersItemsFunc } from '~/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils'
|
|
41
|
-
|
|
42
|
-
const props = defineProps<{
|
|
43
|
-
chart: UI_T_ChartHost | UI_T_ChartVm
|
|
44
|
-
type: UI_T_AdvancedType
|
|
45
|
-
selectedKeys: number[]
|
|
46
|
-
}>()
|
|
47
|
-
|
|
48
|
-
const emits = defineEmits<{
|
|
49
|
-
(event: 'select-row', value: UI_I_AdvancedCounterItem[]): void
|
|
50
|
-
(event: 'total-items', value: number): void
|
|
51
|
-
}>()
|
|
52
|
-
|
|
53
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
54
|
-
|
|
55
|
-
const counters = computed<UI_I_AdvancedCounterItem[]>(() =>
|
|
56
|
-
countersItemsFunc(props.type, props.chart, localization.value)
|
|
57
|
-
)
|
|
58
|
-
|
|
59
|
-
const totalItems = computed<number>(() => counters.value.length)
|
|
60
|
-
const totalPages = computed<number>(() => 1)
|
|
61
|
-
|
|
62
|
-
watch(
|
|
63
|
-
totalItems,
|
|
64
|
-
(newValue) => {
|
|
65
|
-
emits('total-items', newValue)
|
|
66
|
-
},
|
|
67
|
-
{ immediate: true }
|
|
68
|
-
)
|
|
69
|
-
|
|
70
|
-
const selectedCounters = ref<number[]>([])
|
|
71
|
-
watch(
|
|
72
|
-
() => props.selectedKeys,
|
|
73
|
-
(newValue) => {
|
|
74
|
-
selectedCounters.value = newValue
|
|
75
|
-
},
|
|
76
|
-
{ immediate: true, deep: true }
|
|
77
|
-
)
|
|
78
|
-
watch(
|
|
79
|
-
() => props.chart,
|
|
80
|
-
() => {
|
|
81
|
-
selectedCounters.value = []
|
|
82
|
-
}
|
|
83
|
-
)
|
|
84
|
-
const pagination = ref<UI_I_Pagination>({
|
|
85
|
-
page: 1,
|
|
86
|
-
pageSize: 35,
|
|
87
|
-
})
|
|
88
|
-
|
|
89
|
-
const columnItems = computed<UI_I_ColumnKey[]>(() =>
|
|
90
|
-
table.columnKeys(localization.value)
|
|
91
|
-
)
|
|
92
|
-
const headItems = computed<UI_I_HeadItem[]>(() =>
|
|
93
|
-
table.headItems(localization.value)
|
|
94
|
-
)
|
|
95
|
-
const bodyItems = ref<UI_I_BodyItem[][]>([])
|
|
96
|
-
|
|
97
|
-
watch(
|
|
98
|
-
counters,
|
|
99
|
-
(newValue) => {
|
|
100
|
-
if (!newValue.length) return
|
|
101
|
-
|
|
102
|
-
bodyItems.value = table.bodyItems(newValue)
|
|
103
|
-
},
|
|
104
|
-
{ deep: true, immediate: true }
|
|
105
|
-
)
|
|
106
|
-
|
|
107
|
-
const onChangeRow = (val: number[]): void => {
|
|
108
|
-
const result: UI_I_AdvancedCounterItem[] = []
|
|
109
|
-
|
|
110
|
-
counters.value.forEach((item) => {
|
|
111
|
-
if (val.includes(item.id)) result.push(item)
|
|
112
|
-
})
|
|
113
|
-
|
|
114
|
-
emits('select-row', result)
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
watch(
|
|
118
|
-
selectedCounters,
|
|
119
|
-
(newValue) => {
|
|
120
|
-
onChangeRow(newValue)
|
|
121
|
-
},
|
|
122
|
-
{ immediate: true }
|
|
123
|
-
)
|
|
124
|
-
</script>
|
|
125
|
-
|
|
126
|
-
<style scoped lang="scss">
|
|
127
|
-
.chart-option-counters-vertical-split {
|
|
128
|
-
.chart-options-grid-title {
|
|
129
|
-
display: block;
|
|
130
|
-
margin-bottom: -20px;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
:deep(.datagrid-table-wrapper) {
|
|
134
|
-
max-height: 88px;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="vertical-flex-container chart-option-counters-vertical-split">
|
|
3
|
+
<span class="chart-options-grid-title">{{
|
|
4
|
+
localization.selectCountersForThisChart
|
|
5
|
+
}}</span>
|
|
6
|
+
|
|
7
|
+
<atoms-table-data-grid
|
|
8
|
+
v-model:selected-row="selectedCounters"
|
|
9
|
+
v-model:column-keys="columnItems"
|
|
10
|
+
v-model:page-size="pagination.pageSize"
|
|
11
|
+
v-model:page="pagination.page"
|
|
12
|
+
type="checkbox"
|
|
13
|
+
class="data-table"
|
|
14
|
+
:head-items="headItems"
|
|
15
|
+
:body-items="bodyItems"
|
|
16
|
+
:total-items="totalItems"
|
|
17
|
+
:total-pages="totalPages"
|
|
18
|
+
hide-footer
|
|
19
|
+
server-off
|
|
20
|
+
@change="onChangeRow"
|
|
21
|
+
/>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<script setup lang="ts">
|
|
26
|
+
import {
|
|
27
|
+
UI_I_HeadItem,
|
|
28
|
+
UI_I_BodyItem,
|
|
29
|
+
UI_I_ColumnKey,
|
|
30
|
+
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
31
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
32
|
+
import { UI_I_Pagination } from '~/lib/models/table/interfaces'
|
|
33
|
+
import * as table from '~/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/tableConfig'
|
|
34
|
+
import { UI_I_AdvancedCounterItem } from '~/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces'
|
|
35
|
+
import {
|
|
36
|
+
UI_T_ChartHost,
|
|
37
|
+
UI_T_ChartVm,
|
|
38
|
+
} from '~/components/common/monitor/advanced/tools/chartOptionsModal/lib/models/types'
|
|
39
|
+
import { UI_T_AdvancedType } from '~/components/common/monitor/advanced/lib/models/types'
|
|
40
|
+
import { countersItemsFunc } from '~/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils'
|
|
41
|
+
|
|
42
|
+
const props = defineProps<{
|
|
43
|
+
chart: UI_T_ChartHost | UI_T_ChartVm
|
|
44
|
+
type: UI_T_AdvancedType
|
|
45
|
+
selectedKeys: number[]
|
|
46
|
+
}>()
|
|
47
|
+
|
|
48
|
+
const emits = defineEmits<{
|
|
49
|
+
(event: 'select-row', value: UI_I_AdvancedCounterItem[]): void
|
|
50
|
+
(event: 'total-items', value: number): void
|
|
51
|
+
}>()
|
|
52
|
+
|
|
53
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
54
|
+
|
|
55
|
+
const counters = computed<UI_I_AdvancedCounterItem[]>(() =>
|
|
56
|
+
countersItemsFunc(props.type, props.chart, localization.value)
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
const totalItems = computed<number>(() => counters.value.length)
|
|
60
|
+
const totalPages = computed<number>(() => 1)
|
|
61
|
+
|
|
62
|
+
watch(
|
|
63
|
+
totalItems,
|
|
64
|
+
(newValue) => {
|
|
65
|
+
emits('total-items', newValue)
|
|
66
|
+
},
|
|
67
|
+
{ immediate: true }
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
const selectedCounters = ref<number[]>([])
|
|
71
|
+
watch(
|
|
72
|
+
() => props.selectedKeys,
|
|
73
|
+
(newValue) => {
|
|
74
|
+
selectedCounters.value = newValue
|
|
75
|
+
},
|
|
76
|
+
{ immediate: true, deep: true }
|
|
77
|
+
)
|
|
78
|
+
watch(
|
|
79
|
+
() => props.chart,
|
|
80
|
+
() => {
|
|
81
|
+
selectedCounters.value = []
|
|
82
|
+
}
|
|
83
|
+
)
|
|
84
|
+
const pagination = ref<UI_I_Pagination>({
|
|
85
|
+
page: 1,
|
|
86
|
+
pageSize: 35,
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
const columnItems = computed<UI_I_ColumnKey[]>(() =>
|
|
90
|
+
table.columnKeys(localization.value)
|
|
91
|
+
)
|
|
92
|
+
const headItems = computed<UI_I_HeadItem[]>(() =>
|
|
93
|
+
table.headItems(localization.value)
|
|
94
|
+
)
|
|
95
|
+
const bodyItems = ref<UI_I_BodyItem[][]>([])
|
|
96
|
+
|
|
97
|
+
watch(
|
|
98
|
+
counters,
|
|
99
|
+
(newValue) => {
|
|
100
|
+
if (!newValue.length) return
|
|
101
|
+
|
|
102
|
+
bodyItems.value = table.bodyItems(newValue)
|
|
103
|
+
},
|
|
104
|
+
{ deep: true, immediate: true }
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
const onChangeRow = (val: number[]): void => {
|
|
108
|
+
const result: UI_I_AdvancedCounterItem[] = []
|
|
109
|
+
|
|
110
|
+
counters.value.forEach((item) => {
|
|
111
|
+
if (val.includes(item.id)) result.push(item)
|
|
112
|
+
})
|
|
113
|
+
|
|
114
|
+
emits('select-row', result)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
watch(
|
|
118
|
+
selectedCounters,
|
|
119
|
+
(newValue) => {
|
|
120
|
+
onChangeRow(newValue)
|
|
121
|
+
},
|
|
122
|
+
{ immediate: true }
|
|
123
|
+
)
|
|
124
|
+
</script>
|
|
125
|
+
|
|
126
|
+
<style scoped lang="scss">
|
|
127
|
+
.chart-option-counters-vertical-split {
|
|
128
|
+
.chart-options-grid-title {
|
|
129
|
+
display: block;
|
|
130
|
+
margin-bottom: -20px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
:deep(.datagrid-table-wrapper) {
|
|
134
|
+
max-height: 88px;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
</style>
|
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="tasks">
|
|
3
|
-
<common-headline
|
|
4
|
-
:headline="localization.taskConsole"
|
|
5
|
-
class="tasks__headline"
|
|
6
|
-
/>
|
|
7
|
-
|
|
8
|
-
<div class="btn-group">
|
|
9
|
-
<button
|
|
10
|
-
id="task-previous-button"
|
|
11
|
-
class="btn btn-sm btn-link nav-link"
|
|
12
|
-
:disabled="pagination.page === 1"
|
|
13
|
-
@click="onClickButton('previous')"
|
|
14
|
-
>
|
|
15
|
-
{{ localization.previous }}
|
|
16
|
-
</button>
|
|
17
|
-
|
|
18
|
-
<button
|
|
19
|
-
id="task-next-button"
|
|
20
|
-
class="btn btn-sm btn-link nav-link"
|
|
21
|
-
:disabled="pagination.page === tasksList?.total_pages"
|
|
22
|
-
@click="onClickButton('next')"
|
|
23
|
-
>
|
|
24
|
-
{{ localization.next }}
|
|
25
|
-
</button>
|
|
26
|
-
</div>
|
|
27
|
-
|
|
28
|
-
<templates-tasks-table-view
|
|
29
|
-
:data-table="tasksList?.items || []"
|
|
30
|
-
:total-items="tasksList?.total_items || 0"
|
|
31
|
-
:total-pages="tasksList?.total_pages || 1"
|
|
32
|
-
:pagination="pagination"
|
|
33
|
-
:loading="isLoading"
|
|
34
|
-
@pagination="onUpdatePagination"
|
|
35
|
-
@sort="onSortTable"
|
|
36
|
-
/>
|
|
37
|
-
</div>
|
|
38
|
-
</template>
|
|
39
|
-
|
|
40
|
-
<script lang="ts" setup>
|
|
41
|
-
import type {
|
|
42
|
-
UI_I_Localization,
|
|
43
|
-
} from '~/lib/models/interfaces'
|
|
44
|
-
import type {
|
|
45
|
-
UI_I_Pagination,
|
|
46
|
-
UI_I_DataTableQuery,
|
|
47
|
-
} from '~/lib/models/table/interfaces'
|
|
48
|
-
import type { UI_I_Task } from '~/lib/models/store/tasks/interfaces'
|
|
49
|
-
|
|
50
|
-
definePageMeta({
|
|
51
|
-
middleware: ['auth'],
|
|
52
|
-
})
|
|
53
|
-
|
|
54
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
55
|
-
const { $store }: any = useNuxtApp()
|
|
56
|
-
|
|
57
|
-
const pagination = ref<UI_I_Pagination>({
|
|
58
|
-
page: 1,
|
|
59
|
-
pageSize: 100,
|
|
60
|
-
})
|
|
61
|
-
const sort = ref<string | null>(null)
|
|
62
|
-
|
|
63
|
-
const tasksList = computed<UI_I_Task>(() => $store.getters['tasks/getTaskList'])
|
|
64
|
-
|
|
65
|
-
const onClickButton = (status: string): void => {
|
|
66
|
-
if (status === 'next') {
|
|
67
|
-
pagination.value.page += 1
|
|
68
|
-
return
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
pagination.value.page -= 1
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
const getTasks = async (): Promise<void> => {
|
|
75
|
-
pauseGlobalRefresh()
|
|
76
|
-
|
|
77
|
-
const payload: UI_I_DataTableQuery = {
|
|
78
|
-
...pagination.value,
|
|
79
|
-
sortBy: sort.value || '',
|
|
80
|
-
}
|
|
81
|
-
await $store.dispatch('tasks/A_GET_TASKS', payload)
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
const onUpdatePagination = (event: UI_I_Pagination): void => {
|
|
85
|
-
pagination.value = event
|
|
86
|
-
getTasks()
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
const onSortTable = (event: string): void => {
|
|
90
|
-
sort.value = event
|
|
91
|
-
getTasks()
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
const isLoading = computed<boolean>(() =>
|
|
95
|
-
$store.getters['tasks/getLoading']('tasks')
|
|
96
|
-
)
|
|
97
|
-
const pauseGlobalRefresh = (): void => {
|
|
98
|
-
const tasksLastRequestType = $store.getters['tasks/getTasksLastRequestType']
|
|
99
|
-
$store.dispatch('main/A_PAUSE_GLOBAL_REFRESH', tasksLastRequestType)
|
|
100
|
-
}
|
|
101
|
-
onUnmounted(() => {
|
|
102
|
-
pauseGlobalRefresh()
|
|
103
|
-
})
|
|
104
|
-
</script>
|
|
105
|
-
|
|
106
|
-
<style lang="scss">
|
|
107
|
-
@import '~/node_modules/bfg-common/assets/scss/common/mixins';
|
|
108
|
-
.tasks {
|
|
109
|
-
@include flex($dir: column);
|
|
110
|
-
height: 100%;
|
|
111
|
-
padding-left: 10px;
|
|
112
|
-
&__headline {
|
|
113
|
-
padding-left: 10px;
|
|
114
|
-
margin-bottom: 0.6rem;
|
|
115
|
-
}
|
|
116
|
-
.btn {
|
|
117
|
-
text-transform: uppercase;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="tasks">
|
|
3
|
+
<common-headline
|
|
4
|
+
:headline="localization.taskConsole"
|
|
5
|
+
class="tasks__headline"
|
|
6
|
+
/>
|
|
7
|
+
|
|
8
|
+
<div class="btn-group">
|
|
9
|
+
<button
|
|
10
|
+
id="task-previous-button"
|
|
11
|
+
class="btn btn-sm btn-link nav-link"
|
|
12
|
+
:disabled="pagination.page === 1"
|
|
13
|
+
@click="onClickButton('previous')"
|
|
14
|
+
>
|
|
15
|
+
{{ localization.previous }}
|
|
16
|
+
</button>
|
|
17
|
+
|
|
18
|
+
<button
|
|
19
|
+
id="task-next-button"
|
|
20
|
+
class="btn btn-sm btn-link nav-link"
|
|
21
|
+
:disabled="pagination.page === tasksList?.total_pages"
|
|
22
|
+
@click="onClickButton('next')"
|
|
23
|
+
>
|
|
24
|
+
{{ localization.next }}
|
|
25
|
+
</button>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<templates-tasks-table-view
|
|
29
|
+
:data-table="tasksList?.items || []"
|
|
30
|
+
:total-items="tasksList?.total_items || 0"
|
|
31
|
+
:total-pages="tasksList?.total_pages || 1"
|
|
32
|
+
:pagination="pagination"
|
|
33
|
+
:loading="isLoading"
|
|
34
|
+
@pagination="onUpdatePagination"
|
|
35
|
+
@sort="onSortTable"
|
|
36
|
+
/>
|
|
37
|
+
</div>
|
|
38
|
+
</template>
|
|
39
|
+
|
|
40
|
+
<script lang="ts" setup>
|
|
41
|
+
import type {
|
|
42
|
+
UI_I_Localization,
|
|
43
|
+
} from '~/lib/models/interfaces'
|
|
44
|
+
import type {
|
|
45
|
+
UI_I_Pagination,
|
|
46
|
+
UI_I_DataTableQuery,
|
|
47
|
+
} from '~/lib/models/table/interfaces'
|
|
48
|
+
import type { UI_I_Task } from '~/lib/models/store/tasks/interfaces'
|
|
49
|
+
|
|
50
|
+
definePageMeta({
|
|
51
|
+
middleware: ['auth'],
|
|
52
|
+
})
|
|
53
|
+
|
|
54
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
55
|
+
const { $store }: any = useNuxtApp()
|
|
56
|
+
|
|
57
|
+
const pagination = ref<UI_I_Pagination>({
|
|
58
|
+
page: 1,
|
|
59
|
+
pageSize: 100,
|
|
60
|
+
})
|
|
61
|
+
const sort = ref<string | null>(null)
|
|
62
|
+
|
|
63
|
+
const tasksList = computed<UI_I_Task>(() => $store.getters['tasks/getTaskList'])
|
|
64
|
+
|
|
65
|
+
const onClickButton = (status: string): void => {
|
|
66
|
+
if (status === 'next') {
|
|
67
|
+
pagination.value.page += 1
|
|
68
|
+
return
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
pagination.value.page -= 1
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
const getTasks = async (): Promise<void> => {
|
|
75
|
+
pauseGlobalRefresh()
|
|
76
|
+
|
|
77
|
+
const payload: UI_I_DataTableQuery = {
|
|
78
|
+
...pagination.value,
|
|
79
|
+
sortBy: sort.value || '',
|
|
80
|
+
}
|
|
81
|
+
await $store.dispatch('tasks/A_GET_TASKS', payload)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const onUpdatePagination = (event: UI_I_Pagination): void => {
|
|
85
|
+
pagination.value = event
|
|
86
|
+
getTasks()
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
const onSortTable = (event: string): void => {
|
|
90
|
+
sort.value = event
|
|
91
|
+
getTasks()
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const isLoading = computed<boolean>(() =>
|
|
95
|
+
$store.getters['tasks/getLoading']('tasks')
|
|
96
|
+
)
|
|
97
|
+
const pauseGlobalRefresh = (): void => {
|
|
98
|
+
const tasksLastRequestType = $store.getters['tasks/getTasksLastRequestType']
|
|
99
|
+
$store.dispatch('main/A_PAUSE_GLOBAL_REFRESH', tasksLastRequestType)
|
|
100
|
+
}
|
|
101
|
+
onUnmounted(() => {
|
|
102
|
+
pauseGlobalRefresh()
|
|
103
|
+
})
|
|
104
|
+
</script>
|
|
105
|
+
|
|
106
|
+
<style lang="scss">
|
|
107
|
+
@import '~/node_modules/bfg-common/assets/scss/common/mixins';
|
|
108
|
+
.tasks {
|
|
109
|
+
@include flex($dir: column);
|
|
110
|
+
height: 100%;
|
|
111
|
+
padding-left: 10px;
|
|
112
|
+
&__headline {
|
|
113
|
+
padding-left: 10px;
|
|
114
|
+
margin-bottom: 0.6rem;
|
|
115
|
+
}
|
|
116
|
+
.btn {
|
|
117
|
+
text-transform: uppercase;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
</style>
|