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

  /*
  `issue` prop should have

  - Issue title
  - Issue URL
  - Issue ID
  - Issue date created
  - Issue author
  - Issue author profile URL
  - Issue author avatar URL
  - Total time
  */

  global.cycleAnalytics.ItemIssueComponent = Vue.extend({
    props: {
      issue: Object,
    },
    template: `
      <div>
        <div class="item-details">
          <img class="avatar" src="https://secure.gravatar.com/avatar/3731e7dd4f2b4fa8ae184c0a7519dd58?s=64&amp;d=identicon">
          <h5 class="item-title">
            <a href="issue.url">
              {{ issue.title }}
            </a>
          </h5>
          <a href="issue.url" class="issue-link">
            #{{issue.id}}
          </a>
          <span>
            Opened
            <a href="issue.url" class="issue-date">
              {{ issue.datetime }}
            </a>
          </span>
          <span>
          by
          <a :href="issue.author.web_url" class="issue-author-link">
            {{ issue.author.name }}
          </a>
          </span>
        </div>
        <div class="item-time">
          <total-time :time="issue.totalTime"></total-time>
        </div>
      </div>
    `,
  });
})(window.gl || (window.gl = {}));