blob: 5aa36f07df7209024074c474e8ece909d0e22b00 [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-error-log-bar flex-h">
<div class="flex-h">
<ToolBarSelect
@onChoose="SELECT_LOG_TYPE"
:title="this.$t('logCategory')"
:current="logState.type"
:data="logState.logCategories"
icon="chart"
/>
<ToolBarSelect
@onChoose="selectService"
:title="this.$t('service')"
:current="rocketOption.currentService"
:data="rocketOption.services"
icon="package"
/>
<ToolBarSelect
@onChoose="selectInstance"
:title="this.$t('version')"
:current="rocketOption.currentInstance"
:data="rocketOption.instances"
icon="disk"
/>
<ToolBarSelect
@onChoose="selectEndpoint"
:title="this.$t('page')"
:current="rocketOption.currentEndpoint"
:data="rocketOption.endpoints"
icon="code"
/>
<ToolBarSelect
@onChoose="SELECT_ERROR_CATALOG"
:title="this.$t('errorCatalog')"
:current="logState.category"
:data="logState.categories"
icon="epic"
/>
</div>
<span class="flex-h rk-right">
<a class="rk-log-clear-btn r mr-10" @click="clearSearch">
<svg class="icon mr-5 vm">
<use xlink:href="#clear"></use>
</svg>
<span class="vm">{{ this.$t('clear') }}</span>
</a>
<a class="rk-log-search-btn bg-blue mr-10" @click="queryLogs">
<svg class="icon mr-5 vm">
<use xlink:href="#search"></use>
</svg>
<span class="vm">{{ this.$t('search') }}</span>
</a>
<RkPage :currentSize="10" :currentPage="pageNum" @changePage="handleRefresh" :total="logState.total" />
</span>
</div>
</template>
<script lang="ts">
import { Duration, Option } from '@/types/global';
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
import { Action, Getter, Mutation, State } from 'vuex-class';
import TraceSelect from '../common/trace-select.vue';
import ToolBarSelect from '../dashboard/tool-bar-select.vue';
import ToolBarEndpointSelect from '../dashboard/tool-bar-endpoint-select.vue';
@Component({
components: { TraceSelect, ToolBarSelect, ToolBarEndpointSelect },
})
export default class Bar extends Vue {
@State('rocketLog') private logState: any;
@State('rocketOption') private rocketOption: any;
@Mutation('SELECT_LOG_TYPE') private SELECT_LOG_TYPE: any;
@Mutation('SELECT_ERROR_CATALOG') private SELECT_ERROR_CATALOG: any;
@Action('SELECT_LOG_SERVICE') private SELECT_LOG_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;
@Action('QUERY_LOGS') private QUERY_LOGS: any;
@Getter('durationTime') private durationTime: any;
private pageNum: number = 1;
private beforeMount() {
this.MIXHANDLE_GET_OPTION({
compType: this.logState.type.key,
duration: this.durationTime,
}).then(() => {
this.queryLogs();
});
}
private handleRefresh(pageNum: number) {
this.pageNum = pageNum;
this.queryLogs();
}
private selectService(i: any) {
this.SELECT_LOG_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 clearSearch() {
this.SELECT_LOG_SERVICE({ service: { label: 'All', key: '' }, duration: this.durationTime });
this.SELECT_ERROR_CATALOG({ label: 'All', key: 'ALL' });
}
private queryLogs() {
const { currentService, currentInstance, currentEndpoint } = this.rocketOption;
const { category } = this.logState;
this.QUERY_LOGS({
condition: {
serviceId: currentService.key,
serviceVersionId: currentInstance.key,
pagePathId: currentEndpoint.key,
category: category.key,
paging: { pageNum: this.pageNum, pageSize: 35, needTotal: true },
queryDuration: this.durationTime,
},
});
}
}
</script>
<style scoped lang="scss">
.rk-error-log-bar {
flex-shrink: 0;
background-color: #333840;
color: #eee;
width: 100%;
padding: 8px 15px 12px;
height: 52px;
justify-content: space-between;
}
.rk-right {
min-width: 210px;
}
.rk-log-search-btn {
padding: 3px 9px;
background-color: #484b55;
border-radius: 4px;
/*margin-top: 12px;*/
&.bg-blue {
background-color: #448dfe;
}
}
.rk-log-clear-btn {
padding: 3px 9px;
background-color: #484b55;
border-radius: 4px;
}
</style>