2023-06-02 10:34:45 +00:00
|
|
|
<div class="pt-4">
|
2023-08-11 18:19:42 +00:00
|
|
|
<livewire:project.application.deployment-navbar :application_deployment_queue="$application_deployment_queue" />
|
2023-06-30 13:57:40 +00:00
|
|
|
@if (data_get($application_deployment_queue, 'status') === 'in_progress')
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="flex items-center gap-1 pt-2 ">Deployment is
|
2023-06-30 13:57:40 +00:00
|
|
|
<div class="text-warning"> {{ Str::headline(data_get($this->application_deployment_queue, 'status')) }}.
|
|
|
|
</div>
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-loading class="loading-ring" />
|
2023-05-31 12:42:37 +00:00
|
|
|
</div>
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="">Logs will be updated automatically.</div>
|
2023-05-31 12:42:37 +00:00
|
|
|
@else
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="pt-2 ">Deployment is <span
|
2023-06-30 13:57:40 +00:00
|
|
|
class="text-warning">{{ Str::headline(data_get($application_deployment_queue, 'status')) }}</span>.
|
2023-06-05 10:07:55 +00:00
|
|
|
</div>
|
2023-05-31 10:38:36 +00:00
|
|
|
@endif
|
2023-06-30 13:57:40 +00:00
|
|
|
<div @if ($isKeepAliveOn) wire:poll.2000ms="polling" @endif
|
2023-08-11 18:19:42 +00:00
|
|
|
class="scrollbar flex flex-col-reverse w-full overflow-y-auto border border-dotted rounded border-coolgray-400 max-h-[32rem] p-2 px-4 mt-4 text-xs">
|
2023-06-30 13:57:40 +00:00
|
|
|
<span class="flex flex-col">
|
|
|
|
@if (decode_remote_command_output($application_deployment_queue)->count() > 0)
|
|
|
|
@foreach (decode_remote_command_output($application_deployment_queue) as $line)
|
2023-06-30 19:22:14 +00:00
|
|
|
<div @class([
|
2023-08-27 20:05:37 +00:00
|
|
|
'font-mono whitespace-pre-line',
|
2023-06-30 13:57:40 +00:00
|
|
|
'text-neutral-400' => $line['type'] == 'stdout',
|
|
|
|
'text-error' => $line['type'] == 'stderr',
|
2023-06-30 19:22:14 +00:00
|
|
|
'text-warning' => $line['hidden'],
|
2023-08-08 09:51:36 +00:00
|
|
|
])>[{{ $line['timestamp'] }}] @if ($line['hidden'])
|
2023-08-27 20:05:37 +00:00
|
|
|
<br>COMMAND: <br>{{ $line['command'] }} <br><br>OUTPUT:
|
2023-08-11 18:19:42 +00:00
|
|
|
@endif{{ $line['output'] }}@if ($line['hidden'])
|
|
|
|
@endif
|
|
|
|
</div>
|
2023-06-30 13:57:40 +00:00
|
|
|
@endforeach
|
|
|
|
@else
|
|
|
|
<span class="font-mono text-neutral-400">No logs yet.</span>
|
|
|
|
@endif
|
|
|
|
</span>
|
2023-05-31 10:38:36 +00:00
|
|
|
</div>
|
2023-03-28 20:13:08 +00:00
|
|
|
</div>
|