2023-05-31 10:38:36 +00:00
|
|
|
<div>
|
2023-05-31 12:42:37 +00:00
|
|
|
<livewire:project.application.deployment-navbar :activity="$activity" :application="$application" :deployment_uuid="$deployment_uuid" />
|
|
|
|
<h3 class="pb-0">Logs</h3>
|
2023-05-31 10:38:36 +00:00
|
|
|
@if (data_get($activity, 'properties.status') === 'in_progress')
|
2023-05-31 12:42:37 +00:00
|
|
|
<div class="pt-2 text-sm">Deployment is
|
|
|
|
<span class="text-warning">{{ Str::headline(data_get($activity, 'properties.status')) }}</span>. Logs will
|
|
|
|
be updated
|
|
|
|
automatically.
|
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<div class="pt-2 text-sm">Deployment is <span
|
|
|
|
class="text-warning">{{ Str::headline(data_get($activity, 'properties.status')) }}</span>.</div>
|
2023-05-31 10:38:36 +00:00
|
|
|
@endif
|
|
|
|
<div
|
|
|
|
class="scrollbar flex flex-col-reverse w-full overflow-y-auto border border-solid rounded border-coolgray-300 max-h-[32rem] p-4 mt-4 text-xs text-white">
|
|
|
|
<pre class="font-mono whitespace-pre-wrap" @if ($isKeepAliveOn) wire:poll.2000ms="polling" @endif>{{ \App\Actions\CoolifyTask\RunRemoteProcess::decodeOutput($activity) }}</pre>
|
|
|
|
</div>
|
2023-03-28 20:13:08 +00:00
|
|
|
</div>
|