refactor(ui): refine action inputs
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / actions / AddChargingStations.vue
CommitLineData
7086aac2
JB
1<template>
2 <h2>Action Add Charging Stations</h2>
878855a2
JB
3 <p>Template:</p>
4 <select v-if="state.ready" v-model="state.template">
b221407f 5 <option disabled value="">Please select a template</option>
878855a2
JB
6 <option v-for="template in app?.appContext.config.globalProperties.$templates">
7 {{ template }}
8 </option>
9 </select>
10 <p>Number of stations:</p>
11 <input
12 id="number-of-stations"
13 v-model="state.numberOfStations"
d18fc1e3
JB
14 type="number"
15 min="1"
3a3ba0a2 16 name="number-of-stations"
878855a2
JB
17 placeholder="number of stations"
18 />
19 <br />
20 <Button
21 @click="
22 () => {
23 uiClient
24 .addChargingStations(state.template, state.numberOfStations)
cea23fa0
JB
25 .then(() => {
26 $toast.success('Charging stations successfully added')
27 })
878855a2 28 .catch((error: Error) => {
cea23fa0 29 $toast.error('Error at adding charging stations')
878855a2
JB
30 console.error('Error at adding charging stations:', error)
31 })
32 .finally(() => {
33 $router.push({ name: 'charging-stations' })
34 })
35 }
36 "
37 >Add Charging Stations</Button
38 >
39 <Button @click="$router.push({ name: 'charging-stations' })">Cancel</Button>
7086aac2
JB
40</template>
41
42<script setup lang="ts">
878855a2 43import { getCurrentInstance, onMounted, reactive } from 'vue'
cea23fa0 44import { useToast } from 'vue-toast-notification'
878855a2 45import Button from '@/components/buttons/Button.vue'
3a3ba0a2 46import type { ResponsePayload } from '@/types'
878855a2
JB
47
48const state = reactive({
49 ready: false,
50 template: '',
51 numberOfStations: 1
52})
7086aac2
JB
53
54const app = getCurrentInstance()
55const uiClient = app?.appContext.config.globalProperties.$uiClient
56
cea23fa0
JB
57const $toast = useToast()
58
7086aac2 59onMounted(() => {
b9d447d2
JB
60 uiClient
61 .listTemplates()
62 .then((response: ResponsePayload) => {
63 if (app != null && app.appContext.config.globalProperties.$templates == null) {
64 app.appContext.config.globalProperties.$templates = response.templates
65 }
66 })
67 .catch((error: Error) => {
cea23fa0 68 $toast.error('Error at fetching charging station templates')
b9d447d2
JB
69 console.error('Error at fetching charging station templates:', error)
70 })
878855a2
JB
71 .finally(() => {
72 state.ready = true
73 })
7086aac2
JB
74})
75</script>
76
878855a2
JB
77<style>
78#number-of-stations {
d18fc1e3 79 width: 15%;
878855a2
JB
80 text-align: center;
81}
82</style>