summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/artifacts_settings/keep_latest_artifact_checkbox.vue
blob: 92f1cc8117a27e8edb6bfc3912a341ada033adab (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<script>
import { GlAlert, GlFormCheckbox, GlLink } from '@gitlab/ui';
import { __ } from '~/locale';
import UpdateKeepLatestArtifactProjectSetting from './graphql/mutations/update_keep_latest_artifact_project_setting.mutation.graphql';
import GetKeepLatestArtifactApplicationSetting from './graphql/queries/get_keep_latest_artifact_application_setting.query.graphql';
import GetKeepLatestArtifactProjectSetting from './graphql/queries/get_keep_latest_artifact_project_setting.query.graphql';

export default {
  errors: {
    fetchError: __('There was a problem fetching the keep latest artifacts setting.'),
    updateError: __('There was a problem updating the keep latest artifacts setting.'),
  },
  i18n: {
    enabledHelpText: __(
      'The latest artifacts created by jobs in the most recent successful pipeline will be stored.',
    ),
    disabledHelpText: __('This feature is disabled at the instance level.'),
    helpLinkText: __('More information'),
    checkboxText: __('Keep artifacts from most recent successful jobs'),
  },
  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(this.$options.errors.fetchError);
      },
    },
    projectSettingDisabled: {
      query: GetKeepLatestArtifactApplicationSetting,
      update(data) {
        return !data.ciApplicationSettings?.keepLatestArtifact;
      },
    },
  },
  data() {
    return {
      keepLatestArtifact: null,
      errorMessage: '',
      isAlertDismissed: false,
      projectSettingDisabled: true,
    };
  },
  computed: {
    shouldShowAlert() {
      return this.errorMessage && !this.isAlertDismissed;
    },
    helpText() {
      return this.projectSettingDisabled
        ? this.$options.i18n.disabledHelpText
        : this.$options.i18n.enabledHelpText;
    },
  },
  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(this.$options.errors.updateError);
        }
      } catch (error) {
        this.reportError(this.$options.errors.updateError);
      }
    },
  },
};
</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"
      :disabled="projectSettingDisabled"
      @change="updateSetting"
      ><strong class="gl-mr-3">{{ $options.i18n.checkboxText }}</strong>
      <gl-link :href="helpPagePath">{{ $options.i18n.helpLinkText }}</gl-link>
      <template v-if="!$apollo.loading" #help>{{ helpText }}</template>
    </gl-form-checkbox>
  </div>
</template>