mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-18 14:45:25 +00:00
96 lines
2.6 KiB
Vue
96 lines
2.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
|
|
v-loading="demandLogStore.loadLogs"
|
|
class="log-content"
|
|
ref="logContent"
|
|
style="width: calc(100% - 10px); height: calc(100% - 140px)"
|
|
>
|
|
<span v-if="demandLogStore.message">{{ demandLogStore.message }}</span>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref, onUnmounted, watch, toRaw } from "vue";
|
|
import { useDemandLogStore } from "@/store/modules/demand-log";
|
|
|
|
/*global Nullable */
|
|
const demandLogStore = useDemandLogStore();
|
|
const monacoInstance = ref();
|
|
const logContent = ref<Nullable<HTMLDivElement>>(null);
|
|
|
|
onMounted(() => {
|
|
init();
|
|
});
|
|
async function init() {
|
|
const monaco = await import("monaco-editor");
|
|
monacoInstanceGen(monaco);
|
|
window.addEventListener("resize", () => {
|
|
editorLayout();
|
|
});
|
|
}
|
|
function monacoInstanceGen(monaco: any) {
|
|
monacoInstance.value = monaco.editor.create(logContent.value, {
|
|
value: "",
|
|
language: "text",
|
|
wordWrap: true,
|
|
minimap: { enabled: false },
|
|
readonly: true,
|
|
});
|
|
toRaw(monacoInstance.value).updateOptions({ readOnly: true });
|
|
}
|
|
function editorLayout() {
|
|
if (!logContent.value) {
|
|
return;
|
|
}
|
|
const { width, height } = logContent.value.getBoundingClientRect();
|
|
toRaw(monacoInstance.value).layout({
|
|
height: height,
|
|
width: width,
|
|
});
|
|
}
|
|
onUnmounted(() => {
|
|
if (!toRaw(monacoInstance.value)) {
|
|
return;
|
|
}
|
|
toRaw(monacoInstance.value).dispose();
|
|
monacoInstance.value = null;
|
|
});
|
|
watch(
|
|
() => demandLogStore.logs,
|
|
() => {
|
|
if (!toRaw(monacoInstance.value)) {
|
|
return;
|
|
}
|
|
toRaw(monacoInstance.value).setValue(demandLogStore.logs);
|
|
if (!demandLogStore.logs) {
|
|
return;
|
|
}
|
|
setTimeout(() => {
|
|
toRaw(monacoInstance.value).revealPosition({
|
|
column: 1,
|
|
lineNumber: demandLogStore.total,
|
|
});
|
|
}, 1000);
|
|
}
|
|
);
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.log-content {
|
|
min-width: 600px;
|
|
min-height: 400px;
|
|
}
|
|
</style>
|