mirror of
https://github.com/ershisan99/coolify.git
synced 2026-02-04 12:34:47 +00:00
84 lines
1.9 KiB
Svelte
84 lines
1.9 KiB
Svelte
<script>
|
|
import { onDestroy, onMount } from 'svelte';
|
|
import { fade } from 'svelte/transition';
|
|
import Loading from '$components/Loading.svelte';
|
|
import { request } from '$lib/request';
|
|
import { page, session } from '$app/stores';
|
|
import { goto } from '$app/navigation';
|
|
import { browser } from '$app/env';
|
|
import { application } from '$store';
|
|
|
|
let loadLogsInterval;
|
|
let logs = [];
|
|
|
|
onMount(() => {
|
|
loadLogsInterval = setInterval(() => {
|
|
loadLogs();
|
|
}, 500);
|
|
});
|
|
|
|
async function loadLogs() {
|
|
try {
|
|
const { events, progress } = await request(
|
|
`/api/v1/application/deploy/logs/${$page.params.deployId}`,
|
|
$session
|
|
);
|
|
logs = [...events];
|
|
if (progress === 'done' || progress === 'failed') {
|
|
clearInterval(loadLogsInterval);
|
|
}
|
|
} catch (error) {
|
|
browser && goto('/dashboard/applications', { replaceState: true });
|
|
}
|
|
}
|
|
onDestroy(() => {
|
|
clearInterval(loadLogsInterval);
|
|
});
|
|
|
|
</script>
|
|
|
|
<div
|
|
class="py-5 text-left px-6 text-3xl tracking-tight font-bold flex items-center"
|
|
in:fade={{ duration: 100 }}
|
|
>
|
|
<div>Deployment log</div>
|
|
<a
|
|
target="_blank"
|
|
class="icon mx-2"
|
|
href={'https://' + $application.publish.domain + $application.publish.path}
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
class="h-6 w-6"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
|
|
/>
|
|
</svg></a
|
|
>
|
|
</div>
|
|
{#await loadLogs()}
|
|
<Loading />
|
|
{:then}
|
|
<div class="text-center px-6" in:fade={{ duration: 100 }}>
|
|
<div in:fade={{ duration: 100 }}>
|
|
<pre
|
|
class="leading-4 text-left text-sm font-semibold tracking-tighter rounded-lg bg-black p-6 whitespace-pre-wrap">
|
|
{#if logs.length > 0}
|
|
{#each logs as log}
|
|
{log + '\n'}
|
|
{/each}
|
|
{:else}
|
|
It's starting soon.
|
|
{/if}
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
{/await}
|