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

keep_latest_artifact_checkbox.vue « artifacts_settings « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5684033f3af6487c4500eb574614a186b5f1d5bb (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
96
97
98
99
<script>
import { GlAlert, GlFormCheckbox, GlLink } from '@gitlab/ui';
import { __ } from '~/locale';
import GetKeepLatestArtifactProjectSetting from './graphql/queries/get_keep_latest_artifact_project_setting.query.graphql';
import UpdateKeepLatestArtifactProjectSetting from './graphql/mutations/update_keep_latest_artifact_project_setting.mutation.graphql';

const FETCH_ERROR = __('There was a problem fetching the keep latest artifact setting.');
const UPDATE_ERROR = __('There was a problem updating the keep latest artifact setting.');

export default {
  components: {
    GlAlert,
    GlFormCheckbox,
    GlLink,
  },
  inject: {
    fullPath: {
      default: '',
    },
    helpPagePath: {
      default: '',
    },
  },
  apollo: {
    keepLatestArtifact: {
      query: GetKeepLatestArtifactProjectSetting,
      variables() {
        return {
          fullPath: this.fullPath,
        };
      },
      update(data) {
        return data.project?.ciCdSettings?.keepLatestArtifact;
      },
      error() {
        this.reportError(FETCH_ERROR);
      },
    },
  },
  data() {
    return {
      keepLatestArtifact: true,
      errorMessage: '',
      isAlertDismissed: false,
    };
  },
  computed: {
    shouldShowAlert() {
      return this.errorMessage && !this.isAlertDismissed;
    },
  },
  methods: {
    reportError(error) {
      this.errorMessage = error;
      this.isAlertDismissed = false;
    },
    async updateSetting(checked) {
      try {
        const { data } = await this.$apollo.mutate({
          mutation: UpdateKeepLatestArtifactProjectSetting,
          variables: {
            fullPath: this.fullPath,
            keepLatestArtifact: checked,
          },
        });

        if (data.ciCdSettingsUpdate.errors.length) {
          this.reportError(UPDATE_ERROR);
        }
      } catch (error) {
        this.reportError(UPDATE_ERROR);
      }
    },
  },
};
</script>

<template>
  <div>
    <gl-alert
      v-if="shouldShowAlert"
      class="gl-mb-5"
      variant="danger"
      @dismiss="isAlertDismissed = true"
      >{{ errorMessage }}</gl-alert
    >
    <gl-form-checkbox v-model="keepLatestArtifact" @change="updateSetting"
      ><b class="gl-mr-3">{{ __('Keep artifacts from most recent successful jobs') }}</b>
      <gl-link :href="helpPagePath">{{ __('More information') }}</gl-link></gl-form-checkbox
    >
    <p>
      {{
        __(
          'The latest artifacts created by jobs in the most recent successful pipeline will be stored.',
        )
      }}
    </p>
  </div>
</template>