mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-17 10:35:25 +00:00
138 lines
3.6 KiB
Vue
138 lines
3.6 KiB
Vue
<!-- 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="log">
|
|
<div class="log-header">
|
|
<template v-for="(item, index) in columns">
|
|
<div
|
|
class="method"
|
|
:style="`width: ${item.method}px`"
|
|
v-if="item.drag"
|
|
:key="index"
|
|
>
|
|
<span class="r cp" ref="dragger" :data-index="index">
|
|
<Icon iconName="settings_ethernet" size="sm" />
|
|
</span>
|
|
{{ t(item.value) }}
|
|
</div>
|
|
<div v-else :class="item.label" :key="`col${index}`">
|
|
{{ t(item.value) }}
|
|
</div>
|
|
</template>
|
|
</div>
|
|
<div v-if="type === 'browser'">
|
|
<LogBrowser
|
|
v-for="(item, index) in tableData"
|
|
:data="item"
|
|
:key="'browser' + index"
|
|
@select="setCurrentLog"
|
|
/>
|
|
</div>
|
|
<div v-else>
|
|
<LogService
|
|
v-for="(item, index) in tableData"
|
|
:data="item"
|
|
:key="'service' + index"
|
|
:noLink="noLink"
|
|
@select="setCurrentLog"
|
|
/>
|
|
</div>
|
|
<slot></slot>
|
|
<el-dialog
|
|
v-model="showDetail"
|
|
:destroy-on-close="true"
|
|
fullscreen
|
|
@closed="showDetail = false"
|
|
:title="t('logDetail')"
|
|
>
|
|
<LogDetail :currentLog="currentLog" />
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
import { useI18n } from "vue-i18n";
|
|
import { ServiceLogConstants, BrowserLogConstants } from "./data";
|
|
import LogBrowser from "./LogBrowser.vue";
|
|
import LogService from "./LogService.vue";
|
|
import LogDetail from "./LogDetail.vue";
|
|
|
|
/*global defineProps, Nullable */
|
|
const props = defineProps({
|
|
type: { type: String, default: "service" },
|
|
tableData: { type: Array, default: () => [] },
|
|
noLink: { type: Boolean, default: true },
|
|
});
|
|
const { t } = useI18n();
|
|
const currentLog = ref<any>({});
|
|
const showDetail = ref<boolean>(false);
|
|
const dragger = ref<Nullable<HTMLSpanElement>>(null);
|
|
// const method = ref<number>(380);
|
|
const columns: any[] =
|
|
props.type === "browser" ? BrowserLogConstants : ServiceLogConstants;
|
|
|
|
function setCurrentLog(log: any) {
|
|
showDetail.value = true;
|
|
currentLog.value = log;
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.log {
|
|
font-size: 12px;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.log-header {
|
|
/*display: flex;*/
|
|
white-space: nowrap;
|
|
user-select: none;
|
|
border-left: 0;
|
|
border-right: 0;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
/*background-color: #f3f4f9;*/
|
|
.traceId {
|
|
width: 390px;
|
|
}
|
|
|
|
.content,
|
|
.tags {
|
|
width: 300px;
|
|
}
|
|
|
|
.serviceInstanceName,
|
|
.endpointName,
|
|
.serviceName {
|
|
width: 200px;
|
|
}
|
|
}
|
|
|
|
.log-header div {
|
|
/*min-width: 140px;*/
|
|
width: 140px;
|
|
/*flex-grow: 1;*/
|
|
display: inline-block;
|
|
padding: 0 4px;
|
|
border: 1px solid transparent;
|
|
border-right: 1px dotted silver;
|
|
line-height: 30px;
|
|
background-color: #f3f4f9;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|