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