mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
31 lines
858 B
Vue
31 lines
858 B
Vue
<template>
|
|
<LogItem :logEntry>
|
|
<div
|
|
class="[word-break:break-word] whitespace-pre-wrap group-[.disable-wrap]:whitespace-nowrap"
|
|
v-html="colorize(logEntry.message)"
|
|
></div>
|
|
<LogMessageActions
|
|
class="absolute -right-1 opacity-0 transition-opacity delay-150 duration-250 group-hover/entry:opacity-100"
|
|
:message="() => stripAnsi(logEntry.rawMessage)"
|
|
:log-entry="logEntry"
|
|
/>
|
|
</LogItem>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { SimpleLogEntry } from "@/models/LogEntry";
|
|
import AnsiConvertor from "ansi-to-html";
|
|
import stripAnsi from "strip-ansi";
|
|
|
|
const ansiConvertor = new AnsiConvertor({
|
|
escapeXML: false,
|
|
fg: "var(--color-base-content)",
|
|
bg: "var(--color-base-100)",
|
|
});
|
|
|
|
defineProps<{
|
|
logEntry: SimpleLogEntry;
|
|
}>();
|
|
|
|
const colorize = (value: string) => ansiConvertor.toHtml(value);
|
|
</script>
|