mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-07 12:34:18 +00:00
146 lines
4.1 KiB
Svelte
146 lines
4.1 KiB
Svelte
<script lang="ts">
|
|
import { page } from '$app/stores';
|
|
import { get } from '$lib/api';
|
|
import { t } from '$lib/translations';
|
|
import { errorNotification } from '$lib/common';
|
|
import LoadingLogs from '$lib/components/LoadingLogs.svelte';
|
|
import { onMount, onDestroy } from 'svelte';
|
|
import Tooltip from '$lib/components/Tooltip.svelte';
|
|
import { status } from '$lib/store';
|
|
import { goto } from '$app/navigation';
|
|
let application: any = {};
|
|
let logsLoading = false;
|
|
let loadLogsInterval: any = null;
|
|
let logs: any = [];
|
|
let lastLog: any = null;
|
|
let followingInterval: any;
|
|
let followingLogs: any;
|
|
let logsEl: any;
|
|
let position = 0;
|
|
if (
|
|
!$status.application.isExited &&
|
|
!$status.application.isRestarting &&
|
|
!$status.application.isRunning
|
|
) {
|
|
goto(`/applications/${$page.params.id}/`, { replaceState: true });
|
|
}
|
|
const { id } = $page.params;
|
|
onMount(async () => {
|
|
const response = await get(`/applications/${id}`);
|
|
application = response.application;
|
|
loadAllLogs();
|
|
loadLogsInterval = setInterval(() => {
|
|
loadLogs();
|
|
}, 1000);
|
|
});
|
|
onDestroy(() => {
|
|
clearInterval(loadLogsInterval);
|
|
clearInterval(followingInterval);
|
|
});
|
|
async function loadAllLogs() {
|
|
try {
|
|
logsLoading = true;
|
|
const data: any = await get(`/applications/${id}/logs`);
|
|
if (data?.logs) {
|
|
lastLog = data.logs[data.logs.length - 1];
|
|
logs = data.logs;
|
|
}
|
|
} catch (error) {
|
|
return errorNotification(error);
|
|
} finally {
|
|
logsLoading = false;
|
|
}
|
|
}
|
|
async function loadLogs() {
|
|
if (logsLoading) return;
|
|
try {
|
|
const newLogs: any = await get(
|
|
`/applications/${id}/logs?since=${lastLog?.split(' ')[0] || 0}`
|
|
);
|
|
|
|
if (newLogs?.logs && newLogs.logs[newLogs.logs.length - 1] !== logs[logs.length - 1]) {
|
|
logs = logs.concat(newLogs.logs);
|
|
lastLog = newLogs.logs[newLogs.logs.length - 1];
|
|
}
|
|
} catch (error) {
|
|
return errorNotification(error);
|
|
}
|
|
}
|
|
function detect() {
|
|
if (position < logsEl.scrollTop) {
|
|
position = logsEl.scrollTop;
|
|
} else {
|
|
if (followingLogs) {
|
|
clearInterval(followingInterval);
|
|
followingLogs = false;
|
|
}
|
|
position = logsEl.scrollTop;
|
|
}
|
|
}
|
|
|
|
function followBuild() {
|
|
followingLogs = !followingLogs;
|
|
if (followingLogs) {
|
|
followingInterval = setInterval(() => {
|
|
logsEl.scrollTop = logsEl.scrollHeight;
|
|
window.scrollTo(0, document.body.scrollHeight);
|
|
}, 1000);
|
|
} else {
|
|
clearInterval(followingInterval);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="mx-auto w-full">
|
|
<div class="flex flex-row border-b border-coolgray-500 mb-6 space-x-2">
|
|
<div class="title font-bold pb-3">Application Logs</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex flex-row justify-center space-x-2">
|
|
{#if logs.length === 0}
|
|
<div class="text-xl font-bold tracking-tighter">{$t('application.build.waiting_logs')}</div>
|
|
{:else}
|
|
<div class="relative w-full">
|
|
<div class="flex justify-start sticky space-x-2 pb-2">
|
|
<button
|
|
on:click={followBuild}
|
|
class="btn btn-sm bg-coollabs"
|
|
class:bg-coolgray-300={followingLogs}
|
|
class:text-applications={followingLogs}
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
class="w-6 h-6 mr-2"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
stroke="currentColor"
|
|
fill="none"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
|
<circle cx="12" cy="12" r="9" />
|
|
<line x1="8" y1="12" x2="12" y2="16" />
|
|
<line x1="12" y1="8" x2="12" y2="16" />
|
|
<line x1="16" y1="12" x2="12" y2="16" />
|
|
</svg>
|
|
{followingLogs ? 'Following Logs...' : 'Follow Logs'}
|
|
</button>
|
|
{#if loadLogsInterval}
|
|
<button id="streaming" class="btn btn-sm bg-transparent border-none loading" />
|
|
<Tooltip triggeredBy="#streaming">Streaming logs</Tooltip>
|
|
{/if}
|
|
</div>
|
|
<div
|
|
bind:this={logsEl}
|
|
on:scroll={detect}
|
|
class="font-mono w-full bg-coolgray-100 border border-coolgray-200 p-5 overflow-x-auto overflox-y-auto max-h-[80vh] rounded mb-20 flex flex-col scrollbar-thumb-coollabs scrollbar-track-coolgray-200 scrollbar-w-1"
|
|
>
|
|
{#each logs as log}
|
|
<p>{log + '\n'}</p>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</div>
|