Welcome to mirror list, hosted at ThFree Co, Russian Federation.

duplicate_dashboard_modal.vue « components « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b87934a1db2e12b865b122f8c9bb3c73d2fbff31 (plain)
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
<script>
import { mapActions, mapGetters } from 'vuex';
import { GlAlert, GlLoadingIcon, GlModal } from '@gitlab/ui';
import { s__ } from '~/locale';
import DuplicateDashboardForm from './duplicate_dashboard_form.vue';

const events = {
  dashboardDuplicated: 'dashboardDuplicated',
};

export default {
  components: { GlAlert, GlLoadingIcon, GlModal, DuplicateDashboardForm },
  props: {
    defaultBranch: {
      type: String,
      required: true,
    },
    modalId: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      alert: null,
      loading: false,
      form: {},
    };
  },
  computed: {
    ...mapGetters('monitoringDashboard', ['selectedDashboard']),
    okButtonText() {
      return this.loading ? s__('Metrics|Duplicating...') : s__('Metrics|Duplicate');
    },
  },
  methods: {
    ...mapActions('monitoringDashboard', ['duplicateSystemDashboard']),
    ok(bvModalEvt) {
      // Prevent modal from hiding in case submit fails
      bvModalEvt.preventDefault();

      this.loading = true;
      this.alert = null;
      this.duplicateSystemDashboard(this.form)
        .then((createdDashboard) => {
          this.loading = false;
          this.alert = null;

          // Trigger hide modal as submit is successful
          this.$refs.duplicateDashboardModal.hide();

          // Dashboards in the default branch become available immediately.
          // Not so in other branches, so we refresh the current dashboard
          const dashboard =
            this.form.branch === this.defaultBranch ? createdDashboard : this.selectedDashboard;
          this.$emit(events.dashboardDuplicated, dashboard);
        })
        .catch((error) => {
          this.loading = false;
          this.alert = error;
        });
    },
    hide() {
      this.alert = null;
    },
    formChange(form) {
      this.form = form;
    },
  },
};
</script>

<template>
  <gl-modal
    ref="duplicateDashboardModal"
    :modal-id="modalId"
    :title="s__('Metrics|Duplicate dashboard')"
    ok-variant="success"
    @ok="ok"
    @hide="hide"
  >
    <gl-alert v-if="alert" class="mb-3" variant="danger" @dismiss="alert = null">
      {{ alert }}
    </gl-alert>
    <duplicate-dashboard-form
      :dashboard="selectedDashboard"
      :default-branch="defaultBranch"
      @change="formChange"
    />
    <template #modal-ok>
      <gl-loading-icon v-if="loading" inline color="light" />
      {{ okButtonText }}
    </template>
  </gl-modal>
</template>