summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/environments_block.vue
blob: 2d09cf5760f1e79ad80b2f6182517637acce935c (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<script>
import _ from 'underscore';
import CiIcon from '~/vue_shared/components/ci_icon.vue';
import { sprintf, __ } from '../../locale';

export default {
  components: {
    CiIcon,
  },
  props: {
    deploymentStatus: {
      type: Object,
      required: true,
    },
    iconStatus: {
      type: Object,
      required: true,
    },
  },
  computed: {
    environment() {
      let environmentText;
      switch (this.deploymentStatus.status) {
        case 'last':
          environmentText = sprintf(
            __('This job is the most recent deployment to %{link}.'),
            { link: this.environmentLink },
            false,
          );
          break;
        case 'out_of_date':
          if (this.hasLastDeployment) {
            environmentText = sprintf(
              __(
                'This job is an out-of-date deployment to %{environmentLink}. View the most recent deployment %{deploymentLink}.',
              ),
              {
                environmentLink: this.environmentLink,
                deploymentLink: this.deploymentLink(`#${this.lastDeployment.iid}`),
              },
              false,
            );
          } else {
            environmentText = sprintf(
              __('This job is an out-of-date deployment to %{environmentLink}.'),
              { environmentLink: this.environmentLink },
              false,
            );
          }

          break;
        case 'failed':
          environmentText = sprintf(
            __('The deployment of this job to %{environmentLink} did not succeed.'),
            { environmentLink: this.environmentLink },
            false,
          );
          break;
        case 'creating':
          if (this.hasLastDeployment) {
            environmentText = sprintf(
              __(
                'This job is creating a deployment to %{environmentLink} and will overwrite the %{deploymentLink}.',
              ),
              {
                environmentLink: this.environmentLink,
                deploymentLink: this.deploymentLink(__('latest deployment')),
              },
              false,
            );
          } else {
            environmentText = sprintf(
              __('This job is creating a deployment to %{environmentLink}.'),
              { environmentLink: this.environmentLink },
              false,
            );
          }
          break;
        default:
          break;
      }
      return environmentText;
    },
    environmentLink() {
      if (this.hasEnvironment) {
        return sprintf(
          '%{startLink}%{name}%{endLink}',
          {
            startLink: `<a href="${
              this.deploymentStatus.environment.environment_path
            }" class="js-environment-link">`,
            name: _.escape(this.deploymentStatus.environment.name),
            endLink: '</a>',
          },
          false,
        );
      }
      return '';
    },
    hasLastDeployment() {
      return this.hasEnvironment && this.deploymentStatus.environment.last_deployment;
    },
    lastDeployment() {
      return this.hasLastDeployment ? this.deploymentStatus.environment.last_deployment : {};
    },
    hasEnvironment() {
      return !_.isEmpty(this.deploymentStatus.environment);
    },
    lastDeploymentPath() {
      return !_.isEmpty(this.lastDeployment.deployable)
        ? this.lastDeployment.deployable.build_path
        : '';
    },
  },
  methods: {
    deploymentLink(name) {
      return sprintf(
        '%{startLink}%{name}%{endLink}',
        {
          startLink: `<a href="${this.lastDeploymentPath}" class="js-job-deployment-link">`,
          name,
          endLink: '</a>',
        },
        false,
      );
    },
  },
};
</script>
<template>
  <div class="prepend-top-default js-environment-container">
    <div class="environment-information">
      <ci-icon :status="iconStatus" />
      <p class="inline append-bottom-0" v-html="environment"></p>
    </div>
  </div>
</template>