aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/components/EnvironmentCard.vue
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2019-02-06 15:45:09 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2019-02-06 15:45:09 +0100
commit77d0fa78a8dba17e710a0caedbd91272218bfcee (patch)
treefc1cc3343402b60b416dc2c6a551162357979770 /kamon-status/src/components/EnvironmentCard.vue
parent7e9cb172cb7ead8e5579ffb1f0b0ba3ffef90605 (diff)
downloadKamon-77d0fa78a8dba17e710a0caedbd91272218bfcee.tar.gz
Kamon-77d0fa78a8dba17e710a0caedbd91272218bfcee.tar.bz2
Kamon-77d0fa78a8dba17e710a0caedbd91272218bfcee.zip
better component structure, included a Kamon APM suggestion
Diffstat (limited to 'kamon-status/src/components/EnvironmentCard.vue')
-rw-r--r--kamon-status/src/components/EnvironmentCard.vue66
1 files changed, 66 insertions, 0 deletions
diff --git a/kamon-status/src/components/EnvironmentCard.vue b/kamon-status/src/components/EnvironmentCard.vue
new file mode 100644
index 00000000..97e79d28
--- /dev/null
+++ b/kamon-status/src/components/EnvironmentCard.vue
@@ -0,0 +1,66 @@
+<template>
+ <div class="row">
+ <div class="col-12">
+ <card>
+ <div class="row py-2 no-gutters">
+ <div class="col-auto py-2 px-3">
+ <div class="text-uppercase text-label pb-1">Service</div>
+ <h6>{{ service }}</h6>
+ </div>
+ <div class="col-auto py-2 px-3">
+ <div class="text-uppercase text-label pb-1">Host</div>
+ <h6>{{ host }}</h6>
+ </div>
+ <div class="col-auto py-2 px-3">
+ <div class="text-uppercase text-label pb-1">instance</div>
+ <h6>{{instance}}</h6>
+ </div>
+ <div class="col-12 col-md-3 py-2 px-3">
+ <div class="text-uppercase text-label pb-1">tags</div>
+ <div class="tag-container" v-if="Object.keys(environmentTags).length > 0">
+ <span class="tag" v-for="tag in Object.keys(environmentTags)" :key="tag">
+ {{ tag }}=<span class="tag-value">{{ environmentTags[tag] }}</span>
+ </span>
+ </div>
+ <div v-else>
+ <h6>None</h6>
+ </div>
+ </div>
+ </div>
+ </card>
+ </div>
+ </div>
+</template>
+
+<script lang="ts">
+import { Component, Prop, Vue } from 'vue-property-decorator'
+import {Environment} from '../api/StatusApi'
+import Card from './Card.vue'
+import {Option, none} from 'ts-option'
+
+
+@Component({
+ components: {
+ card: Card
+ }
+})
+export default class EnvironmentCard extends Vue {
+ @Prop() private environment: Option<Environment> = none
+
+ get instance(): string {
+ return this.environment.map(e => e.instance).getOrElse('Unknown')
+ }
+
+ get host(): string {
+ return this.environment.map(e => e.host).getOrElse('Unknown')
+ }
+
+ get service(): string {
+ return this.environment.map(e => e.service).getOrElse('Unknown')
+ }
+
+ get environmentTags(): { [key: string]: string } {
+ return this.environment.map(e => e.tags).getOrElse({})
+ }
+}
+</script> \ No newline at end of file