blob: a6b05b88f11032ed6da90eb25b77deee0e8aad0c (
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
73
|
<script setup lang="ts">
import { computed, ref } from 'vue';
import { useSessionStore } from '@/stores/session';
const model = defineModel();
const emit = defineEmits(['update']);
const session = useSessionStore();
const props = defineProps({
taskId: String,
currentTaskType: String,
});
const knownTaskTypes = computed(() => session.getKnownTaskTypes());
const newType = ref('');
const unknownTaskType = computed(() => !knownTaskTypes.value.includes(newType.value));
const noChange = computed(() => newType.value === props.currentTaskType);
const newTypeDescription = computed(
() => session.getTaskDefinitionByTaskType(newType.value)?.description
);
</script>
<template>
<Modal v-model="model">
<template v-slot:header>
<h2>Change the task type of '{{ taskId }}'</h2>
</template>
<template v-slot:body>
<div id="body">
<div class="option-group">
<label for="new-type">New type</label>
<multiselect
id="new-type"
v-model="newType"
:options="knownTaskTypes"
:searchable="true"
placeholder="Select a new type"
></multiselect>
</div>
<p v-if="unknownTaskType" class="error-text">Invalid task type.</p>
<p v-if="newTypeDescription">{{ newTypeDescription }}</p>
<p>Any configured options for this task will be overwritten.</p>
<div id="confirm" class="control-group">
<Button :icon="['fas', 'times']" :label="'Cancel'" @click="model = false"></Button>
<Button
type="solid"
:icon="['fas', 'check']"
:label="'Change'"
:disabled="unknownTaskType || noChange"
@click="emit('update', newType)"
></Button>
</div>
</div>
</template>
</Modal>
</template>
<style scoped>
#confirm {
display: flex;
justify-content: flex-end;
}
#body {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
</style>
|