blob: d005c1aae6579b8d952811b96f9256dd3d03ba72 [file] [log] [blame]
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<template>
<div class="rk-comparison-config" v-if="currentOptions">
<h4>{{ this.$t('previousService') }}</h4>
<label>{{ this.$t('type') }}</label>
<RkSelect
class="mb-5"
:current="currentOptions.preType"
:data="optSource.preTypeSource"
@onChoose="(item) => changOption(item, changeType.PreType)"
/>
<div v-if="currentOptions.preType.key !== 'Database'">
<label>{{ this.$t('service') }}</label>
<RkSelect
class="mb-5"
:current="currentOptions.preService"
:data="optSource.preServiceSource"
@onChoose="(item) => changOption(item, changeType.PreService)"
/>
</div>
<div v-if="currentOptions.preType.key !== 'Service'">
<label>{{ this.$t('object') }}</label>
<RkSelect
class="mb-5"
:current="currentOptions.preObject"
:data="optSource.preObjectSource"
@onChoose="(item) => changOption(item, changeType.PreObject)"
/>
</div>
<label>{{ this.$t('metrics') }}</label>
<RkSelect
class="mb-5"
:mode="'multiple'"
:current="currentOptions.preMetrics"
:data="optSource.preMetricsSource"
@onChoose="(item) => changOption(item, changeType.PreMetrics)"
/>
<h4>{{ this.$t('nextService') }}</h4>
<label>{{ this.$t('type') }}</label>
<RkSelect
class="mb-5"
:current="currentOptions.nextType"
:data="optSource.nextTypeSource"
@onChoose="(item) => changOption(item, changeType.NextType)"
/>
<div v-if="currentOptions.nextType.key !== 'Database'">
<label>{{ this.$t('service') }}</label>
<RkSelect
class="mb-5"
:current="currentOptions.nextService"
:data="optSource.nextServiceSource"
@onChoose="(item) => changOption(item, changeType.NextService)"
/>
</div>
<div v-if="currentOptions.nextType.key !== 'Service'">
<label>{{ this.$t('object') }}</label>
<RkSelect
class="mb-5"
:current="currentOptions.nextObject"
:data="optSource.nextObjectSource"
@onChoose="(item) => changOption(item, changeType.NextObject)"
/>
</div>
<label>{{ this.$t('metrics') }}</label>
<RkSelect
class="mb-5"
:mode="'multiple'"
:current="currentOptions.nextMetrics"
:data="optSource.nextMetricsSource"
@onChoose="(item) => changOption(item, changeType.NextMetrics)"
/>
<div class="mb-5 query-data">
<a @click="updateChart">{{ this.$t('queryData') }}</a>
<a @click="resetService">{{ this.$t('reset') }}</a>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop } from 'vue-property-decorator';
import { State, Action, Getter } from 'vuex-class';
import { IOption } from '@/types/comparison';
@Component
export default class ComparisonConfig extends Vue {
@Prop() private currentOptions: any;
@Prop() private optSource: any;
@Getter('durationTime') private durationTime: any;
@Getter('comparisonStore/ChangeType') private changeType: any;
private changOption(item: IOption, key: string) {
this.$store.dispatch('comparisonStore/SELECT_CONFIG', {
duration: this.durationTime,
type: key,
option: item,
});
}
private updateChart() {
this.$store.dispatch('comparisonStore/RENDER_CHART', this.durationTime);
}
private resetService() {
this.$store.commit('comparisonStore/SET_ISPREVIOUS', 'init');
this.$store.dispatch('comparisonStore/GET_SERVICES', {
duration: this.durationTime,
});
}
}
</script>
<style lang="scss">
.rk-comparison-config {
width: 380px;
height: 100%;
padding: 20px;
border: 1px solid #ddd;
overflow: auto;
h4 {
margin: 0;
}
h4:not(:first-child) {
margin-top: 50px;
}
label {
display: inline-block;
margin: 10px 0;
font-weight: bold;
}
.reload {
background: #fff;
color: #2b3037;
position: absolute;
top: 3px;
}
.reload-icon {
position: relative;
display: inline-block;
width: 40px;
height: 20px;
}
a {
display: inline-block;
width: 78px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 14px;
background: #448dfe;
color: #fff;
border-radius: 4px;
}
.query-data {
margin-top: 70px;
:first-child {
border-right: 1px solid #fff;
width: 260px;
}
}
}
</style>