summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/jobs/index/components/stop_jobs_modal.vue
blob: eb03baf4894b67519106515d3fb35aacd4d4d1f0 (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
<script>
import axios from '~/lib/utils/axios_utils';
import createFlash from '~/flash';
import DeprecatedModal2 from '~/vue_shared/components/deprecated_modal_2.vue';
import { redirectTo } from '~/lib/utils/url_utility';
import { s__ } from '~/locale';

export default {
  components: {
    GlModal: DeprecatedModal2,
  },
  props: {
    url: {
      type: String,
      required: true,
    },
  },
  computed: {
    text() {
      return s__(
        'AdminArea|You’re about to stop all jobs.This will halt all current jobs that are running.',
      );
    },
  },
  methods: {
    onSubmit() {
      return axios
        .post(this.url)
        .then(response => {
          // follow the rediect to refresh the page
          redirectTo(response.request.responseURL);
        })
        .catch(error => {
          createFlash(s__('AdminArea|Stopping jobs failed'));
          throw error;
        });
    },
  },
};
</script>

<template>
  <gl-modal
    id="stop-jobs-modal"
    :header-title-text="s__('AdminArea|Stop all jobs?')"
    :footer-primary-button-text="s__('AdminArea|Stop jobs')"
    footer-primary-button-variant="danger"
    @submit="onSubmit"
  >
    {{ text }}
  </gl-modal>
</template>