summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/components/project_policy_alert.vue
blob: 88a0710574f4206927cb83825cd459656d9e791f (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
<script>
import { GlAlert, GlSprintf, GlLink } from '@gitlab/ui';
import { mapState } from 'vuex';
import { approximateDuration, calculateRemainingMilliseconds } from '~/lib/utils/datetime_utility';
import {
  EXPIRATION_POLICY_ALERT_TITLE,
  EXPIRATION_POLICY_ALERT_PRIMARY_BUTTON,
  EXPIRATION_POLICY_ALERT_FULL_MESSAGE,
  EXPIRATION_POLICY_ALERT_SHORT_MESSAGE,
} from '../constants';

export default {
  components: {
    GlAlert,
    GlSprintf,
    GlLink,
  },

  computed: {
    ...mapState(['config', 'images', 'isLoading']),
    isEmpty() {
      return !this.images || this.images.length === 0;
    },
    showAlert() {
      return this.config.expirationPolicy?.enabled;
    },
    timeTillRun() {
      const difference = calculateRemainingMilliseconds(this.config.expirationPolicy?.next_run_at);
      return approximateDuration(difference / 1000);
    },
    alertConfiguration() {
      if (this.isEmpty || this.isLoading) {
        return {
          title: null,
          primaryButton: null,
          message: EXPIRATION_POLICY_ALERT_SHORT_MESSAGE,
        };
      }
      return {
        title: EXPIRATION_POLICY_ALERT_TITLE,
        primaryButton: EXPIRATION_POLICY_ALERT_PRIMARY_BUTTON,
        message: EXPIRATION_POLICY_ALERT_FULL_MESSAGE,
      };
    },
  },
};
</script>

<template>
  <gl-alert
    v-if="showAlert"
    :dismissible="false"
    :primary-button-text="alertConfiguration.primaryButton"
    :primary-button-link="config.settingsPath"
    :title="alertConfiguration.title"
  >
    <gl-sprintf :message="alertConfiguration.message">
      <template #days>
        <strong>{{ timeTillRun }}</strong>
      </template>
      <template #link="{content}">
        <gl-link :href="config.expirationPolicyHelpPagePath" target="_blank">
          {{ content }}
        </gl-link>
      </template>
    </gl-sprintf>
  </gl-alert>
</template>