2023-03-28 20:13:08 +00:00
|
|
|
<div>
|
2023-04-12 13:42:01 +00:00
|
|
|
@if ($application->status === 'running')
|
2023-04-19 12:28:39 +00:00
|
|
|
<button wire:click='start'>Restart</button>
|
|
|
|
<button wire:click='forceRebuild'>Force Rebuild</button>
|
2023-04-12 13:42:01 +00:00
|
|
|
<button wire:click='stop'>Stop</button>
|
|
|
|
@else
|
2023-04-14 09:24:58 +00:00
|
|
|
<button wire:click='start'>Start</button>
|
2023-04-19 12:28:39 +00:00
|
|
|
<button wire:click='forceRebuild'>Start (no cache)</button>
|
2023-04-12 13:42:01 +00:00
|
|
|
@endif
|
2023-04-14 11:18:55 +00:00
|
|
|
<button wire:click='kill'>Kill</button>
|
2023-04-25 12:57:02 +00:00
|
|
|
<span wire:poll.5000ms='pollingStatus'>
|
2023-04-19 10:42:15 +00:00
|
|
|
@if ($application->status === 'running')
|
2023-04-19 12:28:39 +00:00
|
|
|
@if (!data_get($application, 'settings.is_bot') && data_get($application, 'fqdn'))
|
2023-04-24 11:25:02 +00:00
|
|
|
<a target="_blank" href="{{ data_get($application, 'fqdn') }}">Open URL</a>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if (data_get($application, 'ports_exposes_array'))
|
|
|
|
@foreach ($application->ports_exposes_array as $port)
|
|
|
|
@if (env('APP_ENV') === 'local')
|
|
|
|
<a target="_blank" href="http://localhost:{{ $port }}">Open
|
|
|
|
{{ $port }}</a>
|
|
|
|
@else
|
|
|
|
<a target="_blank"
|
|
|
|
href="http://{{ $application->destination->server->ip }}:{{ $port }}">Open
|
|
|
|
{{ $port }}</a>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2023-04-19 12:28:39 +00:00
|
|
|
@endif
|
2023-04-25 12:57:02 +00:00
|
|
|
<span class="text-xs text-pink-600" wire:loading.delay.longer>Loading current status...</span>
|
|
|
|
<span class="text-green-500" wire:loading.remove.delay.longer>{{ $application->status }}</span>
|
2023-04-19 10:42:15 +00:00
|
|
|
@else
|
2023-04-25 12:57:02 +00:00
|
|
|
<span class="text-xs text-pink-600" wire:loading.delay.longer>Loading current status...</span>
|
|
|
|
<span class="text-red-500" wire:loading.remove.delay.longer>{{ $application->status }}</span>
|
2023-04-19 10:42:15 +00:00
|
|
|
@endif
|
2023-04-25 12:57:02 +00:00
|
|
|
|
2023-04-19 10:42:15 +00:00
|
|
|
</span>
|
2023-03-28 20:13:08 +00:00
|
|
|
</div>
|