summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/cycle_analytics/components/item_build_component.js.es6
blob: 5f8ff6838608b1ba581cf2c0a804d036f242256b (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
((global) => {
  global.cycleAnalytics = global.cycleAnalytics || {};

  /*
  `build` prop should have

  - Build name/title
  - Build ID
  - Build URL
  - Build branch
  - Build branch URL
  - Build short SHA
  - Build commit URL
  - Build date
  - Total time
  */

  global.cycleAnalytics.ItemBuildComponent = Vue.extend({
    props: {
      build: Object,
    },
    template: `
      <div>
        <p>
          <h5>
            <a href="build.url">
              {{ build.title }}
            </a>
          </h5>
        </p>
      </div>
    `,
  });
}(window.gl || (window.gl = {})));