Blame view

api/dashboard/src/utils/form.js 7.27 KB
0d8c0f816   Thanasis Naskos   initial commit
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
  import axios from 'axios'
  import { deepCopy, arrayWrap } from './functions'
  
  class Errors {
    /**
     * Create a new error bag instance.
     */
    constructor () {
      this.errors = {}
    }
  
    /**
     * Set the errors object or field error messages.
     *
     * @param {Object|String} field
     * @param {Array|String|undefined} messages
     */
    set (field, messages) {
      if (typeof field === 'object') {
        this.errors = field
      } else {
        this.set({ ...this.errors, [field]: arrayWrap(messages) })
      }
    }
  
    /**
     * Get all the errors.
     *
     * @return {Object}
     */
    all () {
      return this.errors
    }
  
    /**
     * Determine if there is an error for the given field.
     *
     * @param  {String} field
     * @return {Boolean}
     */
    has (field) {
      // eslint-disable-next-line no-prototype-builtins
      return this.errors.hasOwnProperty(field)
    }
  
    /**
     * Determine if there are any errors for the given fields.
     *
     * @param  {...String} fields
     * @return {Boolean}
     */
    hasAny (...fields) {
      return fields.some(field => this.has(field))
    }
  
    /**
     * Determine if there are any errors.
     *
     * @return {Boolean}
     */
    any () {
      return Object.keys(this.errors).length > 0
    }
  
    /**
     * Get the first error message for the given field.
     *
     * @param  String} field
     * @return {String|undefined}
     */
    get (field) {
      if (this.has(field)) {
        return this.getAll(field)[0]
      }
    }
  
    /**
     * Get all the error messages for the given field.
     *
     * @param  {String} field
     * @return {Array}
     */
    getAll (field) {
      return arrayWrap(this.errors[field] || [])
    }
  
    /**
     * Get the error message for the given fields.
     *
     * @param  {...String} fields
     * @return {Array}
     */
    only (...fields) {
      const messages = []
  
      fields.forEach((field) => {
        const message = this.get(field)
  
        if (message) {
          messages.push(message)
        }
      })
  
      return messages
    }
  
    /**
     * Get all the errors in a flat array.
     *
     * @return {Array}
     */
    flatten () {
      return Object.values(this.errors).reduce((a, b) => a.concat(b), [])
    }
  
    /**
     * Clear one or all error fields.
     *
     * @param {String|undefined} field
     */
    clear (field) {
      const errors = {}
  
      if (field) {
        Object.keys(this.errors).forEach((key) => {
          if (key !== field) {
            errors[key] = this.errors[key]
          }
        })
      }
  
      this.set(errors)
    }
  }
  class Form {
    /**
     * Create a new form instance.
     *
     * @param {Object} data
     */
    constructor (data = {}) {
      this.busy = false
      this.successful = false
      this.errors = new Errors()
      this.originalData = deepCopy(data)
  
      Object.assign(this, data)
    }
  
    /**
     * Fill form data.
     *
     * @param {Object} data
     */
    fill (data) {
      this.keys().forEach((key) => {
        this[key] = data[key]
      })
    }
  
    /**
     * Get the form data.
     *
     * @return {Object}
     */
    data () {
      return this.keys().reduce((data, key) => (
        { ...data, [key]: this[key] }
      ), {})
    }
  
    /**
     * Get the form data keys.
     *
     * @return {Array}
     */
    keys () {
      return Object.keys(this)
        .filter(key => !Form.ignore.includes(key))
    }
  
    /**
     * Start processing the form.
     */
    startProcessing () {
      this.errors.clear()
      this.busy = true
      this.successful = false
    }
  
    /**
     * Finish processing the form.
     */
    finishProcessing () {
      this.busy = false
      this.successful = true
    }
  
    /**
     * Clear the form errors.
     */
    clear () {
      this.errors.clear()
      this.successful = false
    }
  
    /**
     * Reset the form fields.
     */
    reset () {
      Object.keys(this)
        .filter(key => !Form.ignore.includes(key))
        .forEach((key) => {
          this[key] = deepCopy(this.originalData[key])
        })
    }
  
    /**
     * Submit the form via a GET request.
     *
     * @param  {String} url
     * @param  {Object} config (axios config)
     * @return {Promise}
     */
    get (url, config = {}) {
      return this.submit('get', url, config)
    }
  
    /**
     * Submit the form via a POST request.
     *
     * @param  {String} url
     * @param  {Object} config (axios config)
     * @return {Promise}
     */
    post (url, config = {}) {
      return this.submit('post', url, config)
    }
  
    /**
     * Submit the form via a PATCH request.
     *
     * @param  {String} url
     * @param  {Object} config (axios config)
     * @return {Promise}
     */
    patch (url, config = {}) {
      return this.submit('patch', url, config)
    }
  
    /**
     * Submit the form via a PUT request.
     *
     * @param  {String} url
     * @param  {Object} config (axios config)
     * @return {Promise}
     */
    put (url, config = {}) {
      return this.submit('put', url, config)
    }
  
    /**
     * Submit the form via a DELETE request.
     *
     * @param  {String} url
     * @param  {Object} config (axios config)
     * @return {Promise}
     */
    delete (url, config = {}) {
      return this.submit('delete', url, config)
    }
  
    /**
     * Submit the form data via an HTTP request.
     *
     * @param  {String} method (get, post, patch, put)
     * @param  {String} url
     * @param  {Object} config (axios config)
     * @return {Promise}
     */
    submit (method, url, config = {}) {
      this.startProcessing()
  
      const data = method === 'get'
        ? { params: this.data() }
        : this.data()
  
      return new Promise((resolve, reject) => {
        (Form.axios || axios).request({ url: this.route(url), method, data, ...config })
          .then((response) => {
            this.finishProcessing()
  
            resolve(response)
          })
          .catch((error) => {
            this.busy = false
  
            if (error.response) {
              this.errors.set(this.extractErrors(error.response))
            }
  
            reject(error)
          })
      })
    }
  
    /**
     * Extract the errors from the response object.
     *
     * @param  {Object} response
     * @return {Object}
     */
    extractErrors (response) {
      if (!response.data || typeof response.data !== 'object') {
        return { error: Form.errorMessage }
      }
  
      if (response.data.errors) {
        return { ...response.data.errors }
      }
  
      if (response.data.message) {
        return { error: response.data.message }
      }
  
      return { ...response.data }
    }
  
    /**
     * Get a named route.
     *
     * @param  {String} name
     * @return {Object} parameters
     * @return {String}
     */
    route (name, parameters = {}) {
      let url = name
  
      // eslint-disable-next-line no-prototype-builtins
      if (Form.routes.hasOwnProperty(name)) {
        url = decodeURI(Form.routes[name])
      }
  
      if (typeof parameters !== 'object') {
        parameters = { id: parameters }
      }
  
      Object.keys(parameters).forEach((key) => {
        url = url.replace(`{${key}}`, parameters[key])
      })
  
      return url
    }
  
    /**
     * Clear errors on keydown.
     *
     * @param {KeyboardEvent} event
     */
    onKeydown (event) {
      if (event.target.name) {
        this.errors.clear(event.target.name)
      }
    }
  
    feedback (name) {
      if (this.errors.has(name)) {
        return this.errors.get(name)
      }
    }
  
    state (name) {
      if (this.errors.any() && this.errors.has(name)) {
        return false
      }
      return null
    }
  
    invalid (name) {
      const ret = this.state(name)
      if (ret === null) { return false }
      return true
    }
  }
  
  Form.routes = {}
  Form.errorMessage = 'Something went wrong. Please try again.'
  Form.ignore = ['busy', 'successful', 'errors', 'originalData']
  
  export default Form