summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/stop_confirmation_modal.vue
blob: d737d567787b73291b07f86d9f99e1cebead64a3 (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
<script>
  import modal from '~/vue_shared/components/modal.vue';
  import { s__, sprintf } from '~/locale';
  import eventHub from '../event_hub';

  export default {
    components: {
      modal,
    },
    data() {
      return {
        id: '',
        callback: () => {},
      };
    },
    computed: {
      title() {
        return sprintf(s__('Pipeline|Stop pipeline #%{id}?'), {
          id: `'${this.id}'`,
        }, false);
      },
      text() {
        return sprintf(s__('Pipeline|You’re about to stop pipeline %{id}.'), {
          id: `<strong>#${this.id}</strong>`,
        }, false);
      },
      primaryButtonLabel() {
        return s__('Pipeline|Stop pipeline');
      },
    },
    created() {
      eventHub.$on('actionConfirmationModal', this.updateModal);
    },
    beforeDestroy() {
      eventHub.$off('actionConfirmationModal', this.updateModal);
    },
    methods: {
      updateModal(action) {
        this.id = action.id;
        this.callback = action.callback;
      },
      onSubmit() {
        this.callback();
      },
    },
  };
</script>

<template>
  <modal
    id="stop-confirmation-modal"
    :title="title"
    :text="text"
    kind="danger"
    :primary-button-label="primaryButtonLabel"
    @submit="onSubmit"
  >
    <template
      slot="body"
      slot-scope="props"
    >
      <p v-html="props.text"></p>
    </template>
  </modal>
</template>