wip revert

This commit is contained in:
Andras Bacsai 2023-05-16 17:53:48 +02:00
parent 339d94e300
commit 3565dd9c56
6 changed files with 72 additions and 3 deletions

View File

@ -0,0 +1,43 @@
<?php
namespace App\Http\Livewire\Project\Application;
use App\Models\Application;
use Livewire\Component;
use Illuminate\Support\Str;
class Revert extends Component
{
public Application $application;
public $images = [];
public string $current;
public function loadImages()
{
try {
$image = $this->application->uuid;
$output = instantRemoteProcess([
"docker inspect --format='{{.Config.Image}}' {$this->application->uuid}",
], $this->application->destination->server, throwError: false);
$current_tag = Str::of($output)->trim()->explode(":");
$this->current = data_get($current_tag, 1);
$output = instantRemoteProcess([
"docker images --format '{{.Repository}}#{{.Tag}}#{{.CreatedAt}}'",
], $this->application->destination->server);
$this->images = Str::of($output)->trim()->explode("\n")->filter(function ($item) use ($image) {
return Str::of($item)->contains($image);
})->map(function ($item) {
$item = Str::of($item)->explode('#');
if ($item[1] === $this->current) {
$item[1] = $item[1] . " (current)";
}
return [
'tag' => $item[1],
'createdAt' => $item[2],
];
})->toArray();
} catch (\Throwable $e) {
return generalErrorHandler($e, $this);
}
}
}

View File

@ -73,7 +73,6 @@ public function gitCommits(): Attribute
return "{$this->source->html_url}/{$this->git_repository}/commits/{$this->git_branch}"; return "{$this->source->html_url}/{$this->git_repository}/commits/{$this->git_branch}";
} }
} }
); );
} }
public function baseDirectory(): Attribute public function baseDirectory(): Attribute

View File

@ -0,0 +1,27 @@
<div x-init="$wire.loadImages">
<div wire:loading wire:target='loadImages'>
<x-loading />
</div>
<div wire:loading.remove>
<div class="flex flex-wrap">
@forelse ($images as $image)
<div class="w-1/2 p-2">
<div class="rounded-lg shadow-lg bg-coolgray-200 ">
<div class="p-2">
<div class="text-sm font-bold">{{ data_get($image, 'tag') }}</div>
<div class="text-xs">{{ data_get($image, 'createdAt') }}</div>
</div>
<div class="flex justify-end p-2">
<x-inputs.button
wire:click="revertImage('{{ data_get($image, 'name') }}', '{{ data_get($image, 'tag') }}')">
Revert
</x-inputs.button>
</div>
</div>
</div>
@empty
<div>No images found</div>
@endforelse
</div>
</div>
</div>

View File

@ -30,7 +30,7 @@
</div> </div>
<div x-init="$wire.checkProxySettingsInSync"> <div x-init="$wire.checkProxySettingsInSync">
<div wire:loading wire:target="checkProxySettingsInSync"> <div wire:loading wire:target="checkProxySettingsInSync">
<x-proxy.loading /> <x-loading />
</div> </div>
@isset($proxy_settings) @isset($proxy_settings)
<h3>Configuration</h3> <h3>Configuration</h3>

View File

@ -42,7 +42,7 @@
<livewire:project.application.storages.all :application="$application" /> <livewire:project.application.storages.all :application="$application" />
</div> </div>
<div x-cloak x-show="activeTab === 'revert'"> <div x-cloak x-show="activeTab === 'revert'">
<h3>TODO 🚧</h3> <livewire:project.application.revert :application="$application" />
</div> </div>
{{-- <div x-cloak x-show="activeTab === 'previews'"> {{-- <div x-cloak x-show="activeTab === 'previews'">
<livewire:project.application.previews :application="$application" /> <livewire:project.application.previews :application="$application" />