summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/serverless/components/function_row.vue
blob: 44bfae388cb62b3d825b0a430703ba4ff2327ba2 (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
<script>
import Timeago from '~/vue_shared/components/time_ago_tooltip.vue';

export default {
  components: {
    Timeago,
  },
  props: {
    func: {
      type: Object,
      required: true,
    },
  },
  computed: {
    name() {
      return this.func.name;
    },
    description() {
      return this.func.description;
    },
    detailUrl() {
      return this.func.detail_url;
    },
    environment() {
      return this.func.environment_scope;
    },
    image() {
      return this.func.image;
    },
    timestamp() {
      return this.func.created_at;
    },
  },
};
</script>

<template>
  <div class="gl-responsive-table-row">
    <div class="table-section section-20 section-wrap">
      <a :href="detailUrl">{{ name }}</a>
    </div>
    <div class="table-section section-10">{{ environment }}</div>
    <div class="table-section section-40 section-wrap">
      <span class="line-break">{{ description }}</span>
    </div>
    <div class="table-section section-20">{{ image }}</div>
    <div class="table-section section-10"><timeago :time="timestamp" /></div>
  </div>
</template>

<style>
.line-break {
  white-space: pre;
}
</style>