mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
57 lines
1.6 KiB
Vue
57 lines
1.6 KiB
Vue
<template>
|
|
<ScrollableView :scrollable="scrollable" v-if="container">
|
|
<template #header v-if="showTitle">
|
|
<div class="@container mx-2 flex items-center gap-1 md:ml-4 md:gap-2">
|
|
<ContainerTitle :container="container" class="mt-1 md:mt-0" />
|
|
<MultiContainerStat
|
|
class="ml-auto lg:hidden lg:@3xl:flex"
|
|
:containers="[container]"
|
|
v-if="container.state === 'running'"
|
|
/>
|
|
|
|
<ContainerActionsToolbar @clear="viewer?.clear()" :container="container" />
|
|
<a class="btn btn-circle btn-xs" @click="close()" v-if="closable">
|
|
<mdi:close />
|
|
</a>
|
|
</div>
|
|
</template>
|
|
<template #default>
|
|
<ViewerWithSource
|
|
ref="viewer"
|
|
:stream-source="useContainerStream"
|
|
:entity="container"
|
|
:visible-keys="visibleKeys"
|
|
/>
|
|
</template>
|
|
</ScrollableView>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import ViewerWithSource from "@/components/LogViewer/ViewerWithSource.vue";
|
|
import { ComponentExposed } from "vue-component-type-helpers";
|
|
|
|
const {
|
|
id,
|
|
showTitle = false,
|
|
scrollable = false,
|
|
closable = false,
|
|
} = defineProps<{
|
|
id: string;
|
|
showTitle?: boolean;
|
|
scrollable?: boolean;
|
|
closable?: boolean;
|
|
}>();
|
|
|
|
const close = defineEmit();
|
|
|
|
const store = useContainerStore();
|
|
const container = store.currentContainer(toRef(() => id));
|
|
const visibleKeys = persistentVisibleKeysForContainer(container);
|
|
const viewer = useTemplateRef<ComponentExposed<typeof ViewerWithSource>>("viewer");
|
|
|
|
provideLoggingContext(
|
|
toRef(() => [container.value]),
|
|
{ showContainerName: false, showHostname: false },
|
|
);
|
|
</script>
|