extract prometheus graph group elements into their own component

This commit is contained in:
Mike Greiling 2017-08-30 00:16:23 -05:00
parent 4138c20c30
commit 147d55d24f
2 changed files with 34 additions and 16 deletions

View File

@ -3,6 +3,7 @@
import _ from 'underscore';
import statusCodes from '../../lib/utils/http_status';
import MonitoringService from '../services/monitoring_service';
import GraphGroup from './graph_group.vue';
import GraphRow from './graph_row.vue';
import EmptyState from './empty_state.vue';
import MonitoringStore from '../stores/monitoring_store';
@ -31,6 +32,7 @@
},
components: {
GraphGroup,
GraphRow,
EmptyState,
},
@ -120,29 +122,24 @@
<template>
<div v-if="!showEmptyState" class="prometheus-graphs">
<div
<graph-group
v-for="(groupData, index) in store.groups"
:key="index"
class="panel panel-default prometheus-panel"
:name="groupData.group"
>
<div class="panel-heading">
<h4>{{groupData.group}}</h4>
</div>
<div class="panel-body">
<graph-row
v-for="(row, index) in groupData.metrics"
:key="index"
:row-data="row"
:update-aspect-ratio="updateAspectRatio"
:deployment-data="store.deploymentData"
/>
</div>
</div>
<graph-row
v-for="(row, index) in groupData.metrics"
:key="index"
:row-data="row"
:update-aspect-ratio="updateAspectRatio"
:deployment-data="store.deploymentData"
/>
</graph-group>
</div>
<empty-state
v-else
:selected-state="state"
:documentation-path="documentationPath"
:settings-path="settingsPath"
v-else
/>
</template>

View File

@ -0,0 +1,21 @@
<script>
export default {
props: {
name: {
type: String,
required: true,
},
},
};
</script>
<template>
<div class="panel panel-default prometheus-panel">
<div class="panel-heading">
<h4>{{name}}</h4>
</div>
<div class="panel-body">
<slot />
</div>
</div>
</template>