summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/components/stage_plan_component.js.es6
blob: 513298ba4e7265433408c9be886ae88d6c55eedc (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
/* eslint-disable no-param-reassign */
/* global Vue */

((global) => {
  global.cycleAnalytics = global.cycleAnalytics || {};

  global.cycleAnalytics.StagePlanComponent = Vue.extend({
    props: {
      items: Array,
      stage: Object,
    },
    template: `
      <div>
        <div class="events-description">
          {{ stage.description }}
        </div>
        <ul class="stage-event-list">
          <li v-for="commit in items" class="stage-event-item">
            <div class="item-details item-conmmit-component">
              <img class="avatar" :src="commit.author.avatarUrl">
              <h5 class="item-title commit-title">
                <a :href="commit.commitUrl">
                  {{ commit.title }}
                </a>
              </h5>
              <span>
                First
                <span class="commit-icon">${global.cycleAnalytics.svgs.iconCommit}</span>
                <a :href="commit.commitUrl" class="commit-hash-link monospace">{{ commit.shortSha }}</a>
                pushed by
                <a :href="commit.author.webUrl" class="commit-author-link">
                  {{ commit.author.name }}
                </a>
              </span>
            </div>
            <div class="item-time">
              <total-time :time="commit.totalTime"></total-time>
            </div>
          </li>
        </ul>
      </div>
    `,
  });
})(window.gl || (window.gl = {}));