aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/components/ModuleList.vue
blob: 746ccf1618d373061fc5c31e6988c236462695d2 (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
<template>
  <div class="row">
    <div class="col-12 pt-4 pb-2">
      <h3>Reporters</h3>
    </div>
    <div class="col-12 py-1" v-for="reporter in reporterModules" :key="reporter.name">
      <module-card :moduleStatus="reporter" />
    </div>
    <div v-if="!hasApmModule" class="col-12 py-1 apm-suggestion">
      <a href="https://kamon.io/" target="_blank">
        <module-card :is-suggestion="true" :show-status-indicators="false" :moduleStatus="apmModuleSuggestion" />
      </a>
    </div>


    <div class="col-12 pt-4 pb-2" v-if="plainModules.length > 0">
      <h2>Modules</h2>
    </div>
    <div class="col-12 py-1" v-for="module in plainModules" :key="module.name">
      <module-card :moduleStatus="module"/>
    </div>
  </div>
</template>

<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator'
import {Module, ModuleKind} from '../api/StatusApi'
import ModuleCard from './ModuleCard.vue'


@Component({
  components: {
    'module-card': ModuleCard
  }
})
export default class ModuleList extends Vue {
  @Prop() private modules!: Module[]
  private apmModuleSuggestion: Module = {
    name: 'Kamon APM',
    description: 'See your metrics and trace data for free with a Starter account.',
    kind: ModuleKind.Combined,
    isProgrammaticallyRegistered: false,
    isStarted: false,
    clazz: ''
  }

  get sortedModules(): Module[] {
    return this.modules.sort((left, right) => {
      if (left.isStarted === right.isStarted) {
        return left.name.localeCompare(right.name)
      } else {
        return left.isStarted ? -1 : 1
      }
    })
  }


  get reporterModules(): Module[] {
    return this.sortedModules.filter(this.isReporter)
  }

  get plainModules(): Module[] {
    return this.sortedModules.filter(m => !this.isReporter(m))
  }

  get hasApmModule(): boolean {
    const knownApmClasses = [
      'kamon.kamino.KaminoReporter'
    ]

    return this.modules.find(m => knownApmClasses.indexOf(m.clazz) > 0) !== undefined
  }

  private isReporter(module: Module): boolean {
    return [ModuleKind.Combined, ModuleKind.Span, ModuleKind.Metric].indexOf(module.kind) > 0
  }

  private isStarted(module: Module): boolean {
    return module.isStarted
  }
}
</script>

<style lang="scss">
.apm-suggestion {
  .kind-label {
    background-color: #d0f3f0;
  }
}
</style>