blob: e6fe4833d6e58ba21b92035b607f1253f98f618a [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-dashboard-bar flex-h">
<ToolBarBtns
:rocketGlobal="rocketGlobal"
:rocketComps="rocketComps"
:compType="compType"
:dashboardType="dashboardType"
:durationTime="durationTime"
:rocketOption="rocketOption"
></ToolBarBtns>
<div class="rk-dashboard-bar flex-h" v-if="compType !== dashboardType.DATABASE">
<div class="sm grey service-search" v-if="compType === dashboardType.SERVICE">
<div>{{ this.$t('serviceGroup') }}</div>
<input
type="text"
:value="rocketComps.tree[rocketComps.group].serviceGroup"
@change="searchServices($event.target.value)"
/>
</div>
<ToolBarSelect
v-if="compType === dashboardType.SERVICE"
@onChoose="selectService"
:title="this.$t('currentService')"
:current="stateDashboard.currentService"
:data="stateDashboard.services"
icon="package"
/>
<ToolBarEndpointSelect
v-if="compType === dashboardType.SERVICE"
@onChoose="selectEndpoint"
:title="this.$t('currentEndpoint')"
:current="stateDashboard.currentEndpoint"
:data="stateDashboard.endpoints"
icon="code"
/>
<ToolBarSelect
v-if="compType === dashboardType.SERVICE"
@onChoose="selectInstance"
:title="this.$t('currentInstance')"
:current="stateDashboard.currentInstance"
:data="stateDashboard.instances"
icon="disk"
/>
<template v-if="compType === dashboardType.BROWSER">
<ToolBarSelect
@onChoose="selectService"
:title="this.$t('currentService')"
:current="stateDashboard.currentService"
:data="stateDashboard.services"
icon="package"
/>
<ToolBarSelect
@onChoose="selectInstance"
:title="this.$t('currentVersion')"
:current="stateDashboard.currentInstance"
:data="stateDashboard.instances"
icon="disk"
/>
<ToolBarEndpointSelect
@onChoose="selectEndpoint"
:title="this.$t('currentPage')"
:current="stateDashboard.currentEndpoint"
:data="stateDashboard.endpoints"
icon="code"
/>
</template>
</div>
<div class="rk-dashboard-bar flex-h" v-else>
<ToolBarSelect
@onChoose="SELECT_DATABASE"
:title="this.$t('currentDatabase')"
:current="stateDashboard.currentDatabase"
:data="stateDashboard.databases"
icon="epic"
/>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator';
import ToolBarSelect from './tool-bar-select.vue';
import ToolBarEndpointSelect from './tool-bar-endpoint-select.vue';
import ToolBarBtns from './tool-bar-btns.vue';
import { State, Action, Mutation } from 'vuex-class';
import { DASHBOARDTYPE } from './constant';
@Component({ components: { ToolBarSelect, ToolBarEndpointSelect, ToolBarBtns } })
export default class ToolBar extends Vue {
@Prop() private compType!: any;
@Prop() private stateDashboard!: any;
@Prop() private rocketGlobal!: any;
@Prop() private rocketComps!: any;
@Prop() private durationTime!: any;
@State('rocketOption') private rocketOption: any;
@Mutation('ADD_COMP') private ADD_COMP: any;
@Mutation('SET_CURRENT_SERVICE_GROUP') private SET_CURRENT_SERVICE_GROUP: any;
@Mutation('UPDATE_DASHBOARD') private UPDATE_DASHBOARD: any;
@Action('SELECT_SERVICE') private SELECT_SERVICE: any;
@Action('SELECT_DATABASE') private SELECT_DATABASE: any;
@Action('SELECT_ENDPOINT') private SELECT_ENDPOINT: any;
@Action('SELECT_INSTANCE') private SELECT_INSTANCE: any;
@Action('MIXHANDLE_GET_OPTION') private MIXHANDLE_GET_OPTION: any;
private dashboardType = DASHBOARDTYPE;
get lastKey() {
const current = this.rocketComps.tree[this.rocketComps.group].children[this.rocketComps.current].children;
if (!current.length) {
return 0;
}
return current[current.length - 1].k;
}
private selectService(i: any) {
this.SELECT_SERVICE({ service: i, duration: this.durationTime });
}
private selectEndpoint(i: any) {
this.SELECT_ENDPOINT({ endpoint: i, duration: this.durationTime });
}
private selectInstance(i: any) {
this.SELECT_INSTANCE({ instance: i, duration: this.durationTime });
}
private searchServices(value: string) {
this.SET_CURRENT_SERVICE_GROUP(value);
this.MIXHANDLE_GET_OPTION({
compType: this.dashboardType.SERVICE,
duration: this.durationTime,
keywordServiceName: value,
}).then(() => {
this.UPDATE_DASHBOARD();
});
}
}
</script>
<style lang="scss" scoped>
.rk-dashboard-bar {
flex-shrink: 0;
color: #efefef;
background-color: #333840;
.service-search {
padding: 0 5px;
border-right: 2px solid #252a2f;
input {
border-style: unset;
outline: 0;
padding: 2px 5px;
border-radius: 2px;
width: 120px;
}
div {
padding: 0 2px;
}
}
}
</style>