Commit d56a8e36 authored by Joel Collins's avatar Joel Collins
Browse files

Fixed form arrangement

parent fa848112
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -50,15 +50,15 @@
          :requireConnection="plugin.requiresConnection" 
          :currentTab="currentTab">

          <div class="uk-flex uk-flex-column">
            <JsonForm  v-for="form in plugin.forms" 
              :key="`${form.route}/${form.name}`.replace(/\s+/g, '-').toLowerCase()" 
          <div class="uk-flex uk-flex-column" v-for="form in plugin.forms" :key="`${form.route}/${form.name}`.replace(/\s+/g, '-').toLowerCase()" >
            <JsonForm 
              :name="form.name"
              :route="form.route"
              :isTask="form.isTask"
              :submitLabel="form.submitLabel"
              :selfUpdate="form.selfUpdate"
              :schema="form.schema"/>
            <hr>
          </div>

        </tabContent>
+21 −5
Original line number Diff line number Diff line
<template>
  <div>
    <form @submit.prevent="submitForm" class="uk-form-stacked">

      <button type="button" v-if="selfUpdate" v-on:click="getFormData()" class="uk-button uk-button-primary uk-form-small uk-float-right uk-margin-small uk-width-1-1">{{ "Update values" }}</button>
    <div class="uk-flex">
      <div class="uk-text-bold uk-text-uppercase uk-width-expand">{{ name }}</div>
      <a href="#" v-if="selfUpdate" v-on:click="getFormData()" class="uk-icon-link uk-width-auto" uk-icon="refresh"></a>
    </div>

    <form @submit.prevent="submitForm" class="uk-form-stacked">

      <div v-for="(field, index) in schema" :key="index"> 
        <div v-if="Array.isArray(field)" class="uk-grid-small uk-width-1-1 uk-child-width-expand" uk-grid>
@@ -29,6 +33,7 @@
      <button v-bind:hidden="taskRunning" class="uk-button uk-button-primary uk-form-small uk-float-right uk-margin-small uk-width-1-1">{{ submitLabel }}</button>

    </form>

  </div>

</template>
@@ -95,10 +100,13 @@ export default {

  created() {
    this.initialiseFormData()

    if (this.selfUpdate) {
      this.getFormData()
    }
  },

  methods: {

    initialiseFormData() {
      /* 
      This function initialises the form data.
@@ -154,8 +162,12 @@ export default {
      // Send a quick request
      axios.post(this.submitApiUri, params)
        .then(response => { 
          // Do something with the response
          console.log(response)
          // TODO: Have this perform a GET request to update all available parameters
          // Update the form data if we're self-updating
          if (this.selfUpdate) {
            this.getFormData()
          }
        })
        .catch(error => {
          this.modalError(error) // Let mixin handle error
@@ -171,7 +183,7 @@ export default {
          return this.$store.dispatch('pollTask', [response.data.id, null, null])
        })
        .then(response => {
          console.log("Successfully finished task with response:")
          // Do something with the response
          console.log(response)
        })
        .catch(error => {
@@ -180,6 +192,10 @@ export default {
        .finally(() => {
          console.log("Cleaning up after task.")
          this.taskRunning = false
          // Update the form data if we're self-updating
          if (this.selfUpdate) {
            this.getFormData()
          }
        })
    },