2024-04-26 16:43:25 +08:00
|
|
|
<script setup lang="tsx">
|
|
|
|
import { NCollapse, NCollapseItem } from 'naive-ui';
|
2024-05-07 14:51:19 +08:00
|
|
|
import { defineComponent, watch } from 'vue';
|
|
|
|
import { $t } from '@/locales';
|
2024-04-26 16:43:25 +08:00
|
|
|
|
|
|
|
defineOptions({
|
|
|
|
name: 'LogDrawer'
|
|
|
|
});
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
title?: string;
|
|
|
|
show?: boolean;
|
2024-05-07 15:19:49 +08:00
|
|
|
drawer?: boolean;
|
2024-05-07 14:51:19 +08:00
|
|
|
modelValue?: Api.JobLog.JobMessage[];
|
2024-04-26 16:43:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
2024-05-07 14:51:19 +08:00
|
|
|
title: $t('page.log.title'),
|
|
|
|
show: false,
|
2024-05-07 15:19:49 +08:00
|
|
|
drawer: true,
|
2024-05-07 14:51:19 +08:00
|
|
|
modelValue: () => []
|
2024-04-26 16:43:25 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
interface Emits {
|
|
|
|
(e: 'update:show', show: boolean): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const emit = defineEmits<Emits>();
|
|
|
|
const visible = defineModel<boolean>('visible', {
|
|
|
|
default: true
|
|
|
|
});
|
|
|
|
|
|
|
|
const ThrowableComponent = defineComponent({
|
|
|
|
props: {
|
|
|
|
throwable: String
|
|
|
|
},
|
|
|
|
setup(thProps) {
|
|
|
|
return () => {
|
|
|
|
if (!thProps.throwable) {
|
|
|
|
return <></>;
|
|
|
|
}
|
|
|
|
const firstLine = thProps.throwable.match(/^.+/m);
|
|
|
|
if (!firstLine) {
|
|
|
|
return <></>;
|
|
|
|
}
|
|
|
|
const restOfText = thProps.throwable.replace(/^.+(\n|$)/m, '');
|
|
|
|
return (
|
|
|
|
<NCollapse>
|
|
|
|
<NCollapseItem title={firstLine[0]} name="1">
|
|
|
|
{`${restOfText}`}
|
|
|
|
</NCollapseItem>
|
|
|
|
</NCollapse>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(
|
|
|
|
() => props.show,
|
|
|
|
val => {
|
|
|
|
visible.value = val;
|
|
|
|
},
|
|
|
|
{ immediate: true }
|
|
|
|
);
|
|
|
|
|
|
|
|
const onUpdateShow = (value: boolean) => {
|
|
|
|
emit('update:show', value);
|
|
|
|
};
|
|
|
|
|
|
|
|
function timestampToDate(timestamp: string): string {
|
|
|
|
const date = new Date(Number.parseInt(timestamp.toString(), 10));
|
|
|
|
const year = date.getFullYear();
|
|
|
|
const month =
|
|
|
|
(date.getMonth() + 1).toString().length === 1 ? `0${date.getMonth() + 1}` : (date.getMonth() + 1).toString();
|
|
|
|
const day = date.getDate().toString().length === 1 ? `0${date.getDate()}` : date.getDate().toString();
|
|
|
|
const hours = date.getHours().toString().length === 1 ? `0${date.getHours()}` : date.getHours().toString();
|
|
|
|
const minutes = date.getMinutes().toString().length === 1 ? `0${date.getMinutes()}` : date.getMinutes().toString();
|
|
|
|
const seconds = date.getSeconds().toString().length === 1 ? `0${date.getSeconds()}` : date.getSeconds().toString();
|
|
|
|
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}.${date.getMilliseconds()}`;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-05-07 15:19:49 +08:00
|
|
|
<NDrawer
|
|
|
|
v-if="drawer && modelValue.length > 0"
|
|
|
|
v-model:show="visible"
|
|
|
|
width="100%"
|
|
|
|
display-directive="if"
|
|
|
|
@update:show="onUpdateShow"
|
|
|
|
>
|
2024-05-07 14:51:19 +08:00
|
|
|
<NDrawerContent :title="title" closable>
|
2024-05-08 20:08:37 +08:00
|
|
|
<div class="snail-log bg-#fafafc p-16px dark:bg-#000">
|
2024-04-26 16:43:25 +08:00
|
|
|
<div class="snail-log-scrollbar">
|
|
|
|
<code>
|
|
|
|
<pre
|
2024-05-07 14:51:19 +08:00
|
|
|
v-for="(message, index) in modelValue"
|
2024-04-26 16:43:25 +08:00
|
|
|
:key="index"
|
2024-05-15 22:35:38 +08:00
|
|
|
><NDivider v-if="index !== 0" /><span class="log-hljs-time inline-block">{{timestampToDate(message.time_stamp)}}</span><span :class="`log-hljs-level-${message.level}`" class="ml-12px mr-12px inline-block">{{`${message.level}`}}</span><span class="log-hljs-thread mr-12px inline-block">{{ `[${message.host}:${message.port}]` }}</span><span class="log-hljs-thread mr-12px inline-block">{{`[${message.thread}]`}}</span><span class="log-hljs-location">{{`${message.location}: \n`}}</span> -<span class="pl-6px">{{`${message.message}`}}</span><ThrowableComponent :throwable="message.throwable" /></pre>
|
2024-04-26 16:43:25 +08:00
|
|
|
</code>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</NDrawerContent>
|
|
|
|
</NDrawer>
|
2024-05-07 15:19:49 +08:00
|
|
|
<div v-if="!drawer && modelValue.length > 0" class="snail-log">
|
|
|
|
<div class="snail-log-scrollbar">
|
|
|
|
<code>
|
|
|
|
<pre
|
|
|
|
v-for="(message, index) in modelValue"
|
|
|
|
:key="index"
|
2024-05-15 18:36:57 +08:00
|
|
|
><NDivider v-if="index !== 0" /><span class="log-hljs-time">{{timestampToDate(message.time_stamp)}}</span><span :class="`log-hljs-level-${message.level}`">{{`\t${message.level}\t`}}</span><span class="log-hljs-thread">{{ `[${message.host}:${message.port}]\t` }}</span><span class="log-hljs-thread">{{`[${message.thread}]\t`}}</span><span class="log-hljs-location">{{`${message.location}: \n`}}</span> -<span class="pl-6px">{{`${message.message}\n`}}</span><ThrowableComponent :throwable="message.throwable" /></pre>
|
2024-05-07 15:19:49 +08:00
|
|
|
</code>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-26 16:43:25 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.snail-log {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&-scrollbar {
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
@include scrollbar();
|
|
|
|
|
|
|
|
.n-divider:not(.n-divider--vertical) {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-break: break-word;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #333639;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
.snail-log {
|
|
|
|
background-color: #1e1f22;
|
|
|
|
|
|
|
|
pre {
|
|
|
|
color: #ffffffe6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.log-hljs {
|
|
|
|
&-time {
|
|
|
|
color: #2db7f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-level {
|
|
|
|
&-DEBUG {
|
|
|
|
color: #2647cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-INFO {
|
|
|
|
color: #5c962c;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-WARN {
|
|
|
|
color: #da9816;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-ERROR {
|
|
|
|
color: #dc3f41;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-thread {
|
|
|
|
color: #00a3a3;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-location {
|
|
|
|
color: #a771bf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|