mirror of
https://github.com/amir20/dozzle.git
synced 2026-06-23 04:10:12 +00:00
8dac197f60
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
36 lines
1.2 KiB
Vue
36 lines
1.2 KiB
Vue
<template>
|
|
<div class="relative flex w-full items-start gap-x-2 group-[.compact]:items-stretch">
|
|
<LogActions :logEntry :container />
|
|
|
|
<LogStd :std="logEntry.std" class="shrink-0 select-none" v-if="showStd" />
|
|
|
|
<div class="flex gap-x-2 gap-y-1 group-[.compact]:gap-y-0 has-[>_*:nth-of-type(2)]:flex-col-reverse md:flex-row!">
|
|
<RandomColorTag class="w-30 shrink-0 select-none md:w-40" :value="host.name" v-if="showHostname" />
|
|
<RandomColorTag
|
|
v-if="showContainerName"
|
|
class="w-30 shrink-0 select-none group-[.compact]:flex-1 md:w-40"
|
|
:value="container.id"
|
|
truncateRight
|
|
>
|
|
{{ container.name }}
|
|
</RandomColorTag>
|
|
<LogDate v-if="showTimestamp" :date="logEntry.date" class="shrink-0 select-none" />
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { LogEntry } from "@/models/LogEntry";
|
|
|
|
const { logEntry } = defineProps<{
|
|
logEntry: LogEntry<any>;
|
|
}>();
|
|
const { showHostname, showContainerName } = useLoggingContext();
|
|
|
|
const { currentContainer } = useContainerStore();
|
|
const { hosts } = useHosts();
|
|
|
|
const container = currentContainer(toRef(() => logEntry.containerID));
|
|
const host = computed(() => hosts.value[container.value.host]);
|
|
</script>
|