All files / app/assets/javascripts/custom_metrics/components custom_metrics_form.vue

75% Statements 6/8
25% Branches 2/8
66.66% Functions 4/6
75% Lines 6/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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            1x                                                                 2x             2x     2x       2x 2x                                                                                      
<script>
import { GlButton } from '@gitlab/ui';
import csrf from '~/lib/utils/csrf';
import { __, s__ } from '~/locale';
import { formDataValidator } from '../constants';
import CustomMetricsFormFields from './custom_metrics_form_fields.vue';
import DeleteCustomMetricModal from './delete_custom_metric_modal.vue';
 
export default {
  components: {
    CustomMetricsFormFields,
    DeleteCustomMetricModal,
    GlButton,
  },
  props: {
    customMetricsPath: {
      type: String,
      required: false,
      default: '',
    },
    metricPersisted: {
      type: Boolean,
      required: true,
    },
    editIntegrationPath: {
      type: String,
      required: true,
    },
    validateQueryPath: {
      type: String,
      required: true,
    },
    formData: {
      type: Object,
      required: true,
      validator: formDataValidator,
    },
  },
  data() {
    return {
      formIsValid: null,
      errorMessage: '',
    };
  },
  computed: {
    saveButtonText() {
      return this.metricPersisted ? __('Save Changes') : s__('Metrics|Create metric');
    },
    titleText() {
      return this.metricPersisted ? s__('Metrics|Edit metric') : s__('Metrics|New metric');
    },
  },
  created() {
    this.csrf = csrf.token != null ? csrf.token : '';
    this.formOperation = this.metricPersisted ? 'patch' : 'post';
  },
  methods: {
    formValidation(isValid) {
      this.formIsValid = isValid;
    },
    submit() {
      this.$refs.form.submit();
    },
  },
};
</script>
<template>
  <div class="row my-3">
    <h4 class="gl-mt-0 col-lg-8 offset-lg-2" data-testid="metrics-header">{{ titleText }}</h4>
    <form ref="form" class="col-lg-8 offset-lg-2" :action="customMetricsPath" method="post">
      <custom-metrics-form-fields
        :form-operation="formOperation"
        :form-data="formData"
        :metric-persisted="metricPersisted"
        :validate-query-path="validateQueryPath"
        @formValidation="formValidation"
      />
      <div class="form-actions">
        <gl-button
          data-testid="metrics-save-button"
          variant="confirm"
          category="primary"
          :disabled="!formIsValid"
          @click="submit"
        >
          {{ saveButtonText }}
        </gl-button>
        <gl-button class="gl-float-right" :href="editIntegrationPath">{{ __('Cancel') }}</gl-button>
        <delete-custom-metric-modal
          v-if="metricPersisted"
          :delete-metric-url="customMetricsPath"
          :csrf-token="csrf"
        />
      </div>
    </form>
  </div>
</template>