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

confirmation_modal.vue « components « edit « integrations « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89f7e3b7a89db3c44eaa8a728e0ed749b4e3aeda (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
<script>
import { GlModal } from '@gitlab/ui';
import { mapGetters } from 'vuex';
import { __ } from '~/locale';

export default {
  components: {
    GlModal,
  },
  computed: {
    ...mapGetters(['isDisabled']),
    primaryProps() {
      return {
        text: __('Save'),
        attributes: [
          { variant: 'confirm' },
          { category: 'primary' },
          { disabled: this.isDisabled },
        ],
      };
    },
    cancelProps() {
      return {
        text: __('Cancel'),
      };
    },
  },
  methods: {
    onSubmit() {
      this.$emit('submit');
    },
  },
};
</script>

<template>
  <gl-modal
    modal-id="confirmSaveIntegration"
    size="sm"
    :title="s__('Integrations|Save settings?')"
    :action-primary="primaryProps"
    :action-cancel="cancelProps"
    @primary="onSubmit"
  >
    <p>
      {{
        s__(
          'Integrations|Saving will update the default settings for all projects that are not using custom settings.',
        )
      }}
    </p>
    <p class="gl-mb-0">
      {{
        s__(
          'Integrations|Projects using custom settings will not be impacted unless the project owner chooses to use parent level defaults.',
        )
      }}
    </p>
  </gl-modal>
</template>