153 lines
3.1 KiB
Vue
Executable File
153 lines
3.1 KiB
Vue
Executable File
<template>
|
|
<BaseValueMetric
|
|
@selected="handleRangeSelected"
|
|
:title="card.name"
|
|
:help-text="card.helpText"
|
|
:help-width="card.helpWidth"
|
|
:previous="previous"
|
|
:value="value"
|
|
:ranges="card.ranges"
|
|
:format="format"
|
|
:prefix="prefix"
|
|
:suffix="suffix"
|
|
:suffix-inflection="suffixInflection"
|
|
:selected-range-key="selectedRangeKey"
|
|
:loading="loading"
|
|
:zero-result="zeroResult"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import { InteractsWithDates, Minimum } from 'laravel-nova'
|
|
import BaseValueMetric from './Base/ValueMetric'
|
|
import MetricBehavior from './MetricBehavior'
|
|
|
|
export default {
|
|
name: 'ValueMetric',
|
|
|
|
mixins: [InteractsWithDates, MetricBehavior],
|
|
|
|
components: {
|
|
BaseValueMetric,
|
|
},
|
|
|
|
props: {
|
|
card: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
|
|
resourceName: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
|
|
resourceId: {
|
|
type: [Number, String],
|
|
default: '',
|
|
},
|
|
|
|
lens: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
|
|
data: () => ({
|
|
loading: true,
|
|
format: '(0[.]00a)',
|
|
value: 0,
|
|
previous: 0,
|
|
prefix: '',
|
|
suffix: '',
|
|
suffixInflection: true,
|
|
selectedRangeKey: null,
|
|
zeroResult: false,
|
|
}),
|
|
|
|
watch: {
|
|
resourceId() {
|
|
this.fetch()
|
|
},
|
|
},
|
|
|
|
created() {
|
|
if (this.hasRanges) {
|
|
this.selectedRangeKey =
|
|
this.card.selectedRangeKey || this.card.ranges[0].value
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.fetch(this.selectedRangeKey)
|
|
},
|
|
|
|
methods: {
|
|
handleRangeSelected(key) {
|
|
this.selectedRangeKey = key
|
|
this.fetch()
|
|
},
|
|
|
|
fetch() {
|
|
this.loading = true
|
|
|
|
Minimum(Nova.request().get(this.metricEndpoint, this.metricPayload)).then(
|
|
({
|
|
data: {
|
|
value: {
|
|
value,
|
|
previous,
|
|
prefix,
|
|
suffix,
|
|
suffixInflection,
|
|
format,
|
|
zeroResult,
|
|
},
|
|
},
|
|
}) => {
|
|
this.value = value
|
|
this.format = format || this.format
|
|
this.prefix = prefix || this.prefix
|
|
this.suffix = suffix || this.suffix
|
|
this.suffixInflection = suffixInflection
|
|
this.zeroResult = zeroResult || this.zeroResult
|
|
this.previous = previous
|
|
this.loading = false
|
|
}
|
|
)
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
hasRanges() {
|
|
return this.card.ranges.length > 0
|
|
},
|
|
|
|
metricPayload() {
|
|
const payload = {
|
|
params: {
|
|
timezone: this.userTimezone,
|
|
},
|
|
}
|
|
|
|
if (this.hasRanges) {
|
|
payload.params.range = this.selectedRangeKey
|
|
}
|
|
|
|
return payload
|
|
},
|
|
|
|
metricEndpoint() {
|
|
const lens = this.lens !== '' ? `/lens/${this.lens}` : ''
|
|
if (this.resourceName && this.resourceId) {
|
|
return `/nova-api/${this.resourceName}${lens}/${this.resourceId}/metrics/${this.card.uriKey}`
|
|
} else if (this.resourceName) {
|
|
return `/nova-api/${this.resourceName}${lens}/metrics/${this.card.uriKey}`
|
|
} else {
|
|
return `/nova-api/metrics/${this.card.uriKey}`
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|