summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/serverless/components/function_row.vue
blob: 4b3bb078eae4b81933d637e8f774470cff0a0aed (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
<script>
import _ from 'underscore';
import Timeago from '~/vue_shared/components/time_ago_tooltip.vue';
import Url from './url.vue';
import { visitUrl } from '~/lib/utils/url_utility';

export default {
  components: {
    Timeago,
    Url,
  },
  props: {
    func: {
      type: Object,
      required: true,
    },
  },
  computed: {
    name() {
      return this.func.name;
    },
    description() {
      if (!_.isString(this.func.description)) {
        return '';
      }

      const desc = this.func.description.split('\n');
      if (desc.length > 1) {
        return desc[1];
      }

      return desc[0];
    },
    detailUrl() {
      return this.func.detail_url;
    },
    targetUrl() {
      return this.func.url;
    },
    image() {
      return this.func.image;
    },
    timestamp() {
      return this.func.created_at;
    },
  },
  methods: {
    checkClass(element) {
      if (element.closest('.no-expand') === null) {
        return true;
      }

      return false;
    },
    openDetails(e) {
      if (this.checkClass(e.target)) {
        visitUrl(this.detailUrl);
      }
    },
  },
};
</script>

<template>
  <li :id="name" class="group-row">
    <div class="group-row-contents" role="button" @click="openDetails">
      <p class="float-right text-right">
        <span>{{ image }}</span
        ><br />
        <timeago :time="timestamp" />
      </p>
      <b>{{ name }}</b>
      <div v-for="line in description.split('\n')" :key="line">{{ line }}</div>
      <url :uri="targetUrl" class="prepend-top-8 no-expand" />
    </div>
  </li>
</template>