mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
I extracted the dropdown portion of the LogActionsToolbar into a separate DropdownMenu component so that it can be reused for Jump to Context. Other Changes: - Remove unused style in LogActionsToolbar
176 lines
4.2 KiB
Vue
176 lines
4.2 KiB
Vue
<template>
|
|
<ul class="events" :class="size">
|
|
<li
|
|
v-for="item in filtered"
|
|
:key="item.key"
|
|
:data-event="item.event"
|
|
:data-key="item.key"
|
|
:class="item.selected ? 'selected' : ''"
|
|
>
|
|
<div class="line-options" v-if="isSearching()">
|
|
<dropdown-menu class="is-top is-small">
|
|
<a class="dropdown-item" @click="jumpToLine">
|
|
<div class="level is-justify-content-start">
|
|
<div class="level-left">
|
|
<div class="level-item">
|
|
<cil-find-in-page class="mr-4" />
|
|
</div>
|
|
</div>
|
|
<div class="level-right">
|
|
<div class="level-item">Jump to Context</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</dropdown-menu>
|
|
</div>
|
|
<div class="line">
|
|
<span class="date" v-if="showTimestamp"> <relative-time :date="item.date"></relative-time></span>
|
|
<span class="text" v-html="colorize(item.message)"></span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { PropType, toRefs } from "vue";
|
|
|
|
import { size, showTimestamp } from "@/composables/settings";
|
|
import RelativeTime from "./RelativeTime.vue";
|
|
import AnsiConvertor from "ansi-to-html";
|
|
import { LogEntry } from "@/types/LogEntry";
|
|
import { useSearchFilter } from "@/composables/search";
|
|
|
|
const props = defineProps({
|
|
messages: {
|
|
type: Array as PropType<LogEntry[]>,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const ansiConvertor = new AnsiConvertor({ escapeXML: true });
|
|
const colorize = (value: string) =>
|
|
ansiConvertor.toHtml(value).replace("<mark>", "<mark>").replace("</mark>", "</mark>");
|
|
const { messages } = toRefs(props);
|
|
const { filteredMessages, searchFilter, resetSearch, isSearching } = useSearchFilter();
|
|
const filtered = filteredMessages(messages);
|
|
const jumpToLine = async (e) => {
|
|
const line = e.target.closest("li");
|
|
if (line.tagName !== "LI") {
|
|
return;
|
|
}
|
|
resetSearch();
|
|
for (const item of messages.value) {
|
|
item.selected = false;
|
|
if (item.key === line.dataset.key) {
|
|
item.selected = true;
|
|
}
|
|
}
|
|
// TODO prevent ScrollableView from automatically sticking to the bottom when closing search and jumping to context (ScrollableView.vue:47)
|
|
// if that could be achieved, then these timing hacks can be removed
|
|
await new Promise((resolve) => setTimeout(resolve, 10));
|
|
window.scrollTo(0, 0);
|
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
window.scrollTo(0, line.offsetTop - 200);
|
|
};
|
|
</script>
|
|
<style scoped lang="scss">
|
|
.events {
|
|
padding: 1em;
|
|
font-family: SFMono-Regular, Consolas, Liberation Mono, monaco, Menlo, monospace;
|
|
|
|
& > li {
|
|
display: flex;
|
|
word-wrap: break-word;
|
|
line-height: 130%;
|
|
&:last-child {
|
|
scroll-snap-align: end;
|
|
scroll-margin-block-end: 5rem;
|
|
}
|
|
&[data-event="container-stopped"] {
|
|
color: #f14668;
|
|
}
|
|
&[data-event="container-started"] {
|
|
color: hsl(141, 53%, 53%);
|
|
}
|
|
&.selected {
|
|
background-color: var(--menu-item-active-background-color);
|
|
color: black;
|
|
|
|
& .jump {
|
|
color: var(--menu-item-hover-color) !important;
|
|
}
|
|
}
|
|
&.selected > .date {
|
|
background-color: white;
|
|
}
|
|
& > .line {
|
|
margin: auto 0;
|
|
}
|
|
& > .line-options {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
margin-right: 1em;
|
|
& .jump {
|
|
padding: 0;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
color: var(--menu-item-hover-background-color);
|
|
border: none;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.small {
|
|
font-size: 60%;
|
|
}
|
|
|
|
&.medium {
|
|
font-size: 80%;
|
|
}
|
|
|
|
&.large {
|
|
font-size: 120%;
|
|
}
|
|
}
|
|
|
|
.date {
|
|
background-color: #262626;
|
|
color: #258ccd;
|
|
|
|
[data-theme="light"] & {
|
|
background-color: #f0f0f0;
|
|
color: #009900;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
white-space: pre-wrap;
|
|
&::before {
|
|
content: " ";
|
|
}
|
|
}
|
|
|
|
:deep(mark) {
|
|
border-radius: 2px;
|
|
background-color: var(--secondary-color);
|
|
animation: pops 200ms ease-out;
|
|
display: inline-block;
|
|
}
|
|
|
|
@keyframes pops {
|
|
0% {
|
|
transform: scale(1.5);
|
|
}
|
|
100% {
|
|
transform: scale(1.05);
|
|
}
|
|
}
|
|
</style>
|