WindowForm.vue 6.25 KB
Newer Older
abergavenny's avatar
abergavenny committed
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<script setup>
import { computed, onMounted, onUnmounted, reactive, ref } from 'vue'
import useVuelidate from '@vuelidate/core'
import { required } from '@vuelidate/validators'

import InputGroup from '@/components/InputGroup.vue'
import InputWrapper from '@/components/InputWrapper.vue'
import MessageBox from '@/components/MessageBox.vue'
import SectionTitle from '@/components/SectionTitle.vue'
import { MESSAGES } from '@/data/messages'
import { resetAlert } from '@/helpers'
import { WINDOW_CONDITION_OPTIONS, WINDOW_FRAME_OPTIONS, WINDOW_GLAZING_OPTIONS } from '@/data/options'
import { useApartmentStore } from '@/stores/apartments'

let timeout = null

const message = ref(null)
const messageType = ref(null)

const apartments = useApartmentStore()

// Initial values
const state = reactive({
  averageWindowAge: null,
  averageWindowCondition: null,
  largeWindows: null,
  mediumWindows: null,
  roofWindows: null,
  smallWindows: null,
  windowComment: null,
  windowFrame: null,
  windowGlazing: null
})

const rules = computed(() => {
  return {
    averageWindowAge: { required },
    averageWindowCondition: { required },
    largeWindows: {},
    mediumWindows: {},
    roofWindows: {},
    smallWindows: {},
    windowComment: {},
    windowFrame: {},
    windowGlazing: { required }
  }
})

const v$ = useVuelidate(rules, state)

async function onSubmit() {
  try {
    clearTimeout(timeout)
    message.value = null

    const isValid = await v$.value.$validate()

    if (!isValid) {
      message.value = MESSAGES['INVALID_INPUT']
      messageType.value = 'warning'

      timeout = resetAlert(message)

      return
    }

    const response = await apartments.updateApartmentWindows(apartments.active, state)

    if (response.success) {
      message.value = MESSAGES[response.message]
      messageType.value = 'success'

      await apartments.fetchApartments()
    } else {
      message.value = MESSAGES[response.message]
      messageType.value = 'danger'
    }

    timeout = resetAlert(message)
  } catch (error) {
    console.error('ERROR:', error.name)
  }
}

onMounted(() => {
  if (apartments.current) {
    state.averageWindowAge = apartments.current.data.averageWindowAge
    state.averageWindowCondition = apartments.current.data.averageWindowCondition
    state.largeWindows = apartments.current.data.largeWindows
    state.mediumWindows = apartments.current.data.mediumWindows
    state.roofWindows = apartments.current.data.roofWindows
    state.smallWindows = apartments.current.data.smallWindows
    state.windowComment = apartments.current.data.windowComment
    state.windowFrame = apartments.current.data.windowFrame
    state.windowGlazing = apartments.current.data.windowGlazing
  }
})

onUnmounted(() => {
  clearTimeout(timeout)
})
</script>

<template>
  <div class="form">
    <form @submit.prevent="onSubmit">
      <div class="form-content">
        <SectionTitle value="Art der Fenster" />
        <InputGroup :row="true">
          <InputWrapper>
            <InputGroup>
              <label for="window-small">Klein (bis 1 m²)</label>
              <input class="number" id="window-small" type="number" v-model="state.smallWindows" />
            </InputGroup>
          </InputWrapper>
        </InputGroup>
        <InputGroup :row="true">
          <InputWrapper>
            <InputGroup>
              <label for="window-medium">Normal (1-2 m²)</label>
              <input class="number" id="window-medium" type="number" v-model="state.mediumWindows" />
            </InputGroup>
          </InputWrapper>
        </InputGroup>
        <InputGroup :row="true">
          <InputWrapper>
            <InputGroup>
              <label for="window-large">Groß (ab 2 m²)</label>
              <input class="number" id="window-large" type="number" v-model="state.largeWindows" />
            </InputGroup>
          </InputWrapper>
        </InputGroup>
        <InputGroup :row="true">
          <InputWrapper>
            <InputGroup>
              <label for="window-roof">Dach (1-2 m²)</label>
              <input class="number" id="window-roof" type="number" v-model="state.roofWindows" />
            </InputGroup>
          </InputWrapper>
        </InputGroup>
        <InputGroup :row="true">
          <InputGroup>
            <label for="window-frame">Rahmenart</label>
            <select id="window-frame" v-model="state.windowFrame">
              <option disabled>Bitte wählen</option>
              <option v-for="option in WINDOW_FRAME_OPTIONS" :value="option.value" :key="option.value">
                {{ option.name }}
              </option>
            </select>
          </InputGroup>
          <InputGroup>
            <label for="window-glazing">Verglasung</label>
            <select id="window-glazing" v-model="state.windowGlazing">
              <option disabled>Bitte wählen</option>
              <option v-for="option in WINDOW_GLAZING_OPTIONS" :value="option.value" :key="option.value">
                {{ option.name }}
              </option>
            </select>
          </InputGroup>
        </InputGroup>
        <InputGroup :row="true">
          <InputGroup>
            <label for="window-condition">Zustand</label>
            <select id="window-condition" v-model="state.averageWindowCondition">
              <option disabled>Bitte wählen</option>
              <option v-for="option in WINDOW_CONDITION_OPTIONS" :value="option.value" :key="option.value">
                {{ option.name }}
              </option>
            </select>
          </InputGroup>
          <InputGroup>
            <label for="window-age">Durchschnittliches Fensteralter</label>
            <input class="number" id="window-age" type="number" v-model="state.averageWindowAge" />
          </InputGroup>
        </InputGroup>
        <InputGroup>
          <label for="window-comment">Zusätzliche Kommentare</label>
          <MessageBox msg="Tragen Sie weitere Informationen zu den Fenstern ein." type="basic" />
          <textarea id="window-comment" :rows="5" v-model="state.windowComment" />
        </InputGroup>
      </div>
      <div class="form-section">
        <MessageBox v-if="message" :msg="message" :type="messageType" />
        <button class="button primary" type="submit" :disabled="message">
          <span>Speichern</span>
        </button>
      </div>
    </form>
  </div>
</template>