fix: tags

This commit is contained in:
Andras Bacsai 2024-02-03 12:39:07 +01:00
parent bc31df6fb2
commit 0b5baf60a5
9 changed files with 70 additions and 40 deletions

View File

@ -73,12 +73,17 @@ class Deploy extends Controller
$message->push("Tag {$tag} not found."); $message->push("Tag {$tag} not found.");
continue; continue;
} }
$resources = $found_tag->resources()->get(); $applications = $found_tag->applications();
if ($resources->count() === 0) { $services = $found_tag->services();
if ($applications->count() === 0 && $services->count() === 0) {
$message->push("No resources found for tag {$tag}."); $message->push("No resources found for tag {$tag}.");
continue; continue;
} }
foreach ($resources as $resource) { foreach ($applications as $resource) {
$return_message = $this->deploy_resource($resource, $force);
$message = $message->merge($return_message);
}
foreach ($services as $resource) {
$return_message = $this->deploy_resource($resource, $force); $return_message = $this->deploy_resource($resource, $force);
$message = $message->merge($return_message); $message = $message->merge($return_message);
} }

View File

@ -37,12 +37,13 @@ class Tags extends Component
return handleError($e, $this); return handleError($e, $this);
} }
} }
public function deleteTag($id, $name) public function deleteTag(string $id)
{ {
try { try {
$found_more_tags = Tag::where(['name' => $name, 'team_id' => currentTeam()->id])->first();
$this->resource->tags()->detach($id); $this->resource->tags()->detach($id);
if ($found_more_tags->resources()->get()->count() == 0) {
$found_more_tags = Tag::where(['id' => $id, 'team_id' => currentTeam()->id])->first();
if ($found_more_tags->applications()->count() == 0 && $found_more_tags->services()->count() == 0){
$found_more_tags->delete(); $found_more_tags->delete();
} }
$this->refresh(); $this->refresh();

View File

@ -10,14 +10,27 @@ use Livewire\Component;
class Show extends Component class Show extends Component
{ {
public Tag $tag; public Tag $tag;
public $resources; public $applications;
public $services;
public $webhook = null; public $webhook = null;
public $deployments_per_tag_per_server = []; public $deployments_per_tag_per_server = [];
public function mount()
{
$tag = Tag::ownedByCurrentTeam()->where('name', request()->tag_name)->first();
if (!$tag) {
return redirect()->route('tags.index');
}
$this->webhook = generatTagDeployWebhook($tag->name);
$this->applications = $tag->applications()->get();
$this->services = $tag->services()->get();
$this->tag = $tag;
$this->get_deployments();
}
public function get_deployments() public function get_deployments()
{ {
try { try {
$resource_ids = $this->resources->pluck('id'); $resource_ids = $this->applications->pluck('id');
$this->deployments_per_tag_per_server = ApplicationDeploymentQueue::whereIn("status", ["in_progress", "queued"])->whereIn('application_id', $resource_ids)->get([ $this->deployments_per_tag_per_server = ApplicationDeploymentQueue::whereIn("status", ["in_progress", "queued"])->whereIn('application_id', $resource_ids)->get([
"id", "id",
"application_id", "application_id",
@ -35,7 +48,11 @@ class Show extends Component
public function redeploy_all() public function redeploy_all()
{ {
try { try {
$this->resources->each(function ($resource) { $this->applications->each(function ($resource) {
$deploy = new Deploy();
$deploy->deploy_resource($resource);
});
$this->services->each(function ($resource) {
$deploy = new Deploy(); $deploy = new Deploy();
$deploy->deploy_resource($resource); $deploy->deploy_resource($resource);
}); });
@ -44,17 +61,7 @@ class Show extends Component
return handleError($e, $this); return handleError($e, $this);
} }
} }
public function mount()
{
$tag = Tag::ownedByCurrentTeam()->where('name', request()->tag_name)->first();
if (!$tag) {
return redirect()->route('tags.index');
}
$this->webhook = generatTagDeployWebhook($tag->name);
$this->resources = $tag->resources()->get();
$this->tag = $tag;
$this->get_deployments();
}
public function render() public function render()
{ {
return view('livewire.tags.show'); return view('livewire.tags.show');

View File

@ -216,6 +216,9 @@ class Application extends BaseModel
{ {
return $this->morphToMany(Tag::class, 'taggable'); return $this->morphToMany(Tag::class, 'taggable');
} }
public function project() {
return data_get($this, 'environment.project');
}
public function team() public function team()
{ {
return data_get($this, 'environment.project.team'); return data_get($this, 'environment.project.team');

View File

@ -16,6 +16,10 @@ class Service extends BaseModel
{ {
return 'service'; return 'service';
} }
public function project()
{
return data_get($this, 'environment.project');
}
public function team() public function team()
{ {
return data_get($this, 'environment.project.team'); return data_get($this, 'environment.project.team');

View File

@ -24,9 +24,8 @@ class Tag extends BaseModel
{ {
return $this->morphedByMany(Application::class, 'taggable'); return $this->morphedByMany(Application::class, 'taggable');
} }
public function services()
public function resources() { {
return $this->applications(); return $this->morphedByMany(Service::class, 'taggable');
} }
} }

View File

@ -46,7 +46,7 @@
@else @else
<div x-data="searchComponent()"> <div x-data="searchComponent()">
<x-forms.input placeholder="Search for name, fqdn..." class="w-full" x-model="search" /> <x-forms.input placeholder="Search for name, fqdn..." class="w-full" x-model="search" />
<div class="grid gap-4 pt-4 lg:grid-cols-4"> <div class="grid grid-cols-1 gap-4 pt-4 lg:grid-cols-2 xl:grid-cols-3">
<template x-for="item in filteredApplications" :key="item.id"> <template x-for="item in filteredApplications" :key="item.id">
<span class="relative"> <span class="relative">
<a class="h-24 box group" :href="item.hrefLink"> <a class="h-24 box group" :href="item.hrefLink">

View File

@ -4,7 +4,7 @@
@forelse ($this->resource->tags as $tagId => $tag) @forelse ($this->resource->tags as $tagId => $tag)
<div class="px-2 py-1 text-center text-white select-none w-fit bg-coolgray-100 hover:bg-coolgray-200"> <div class="px-2 py-1 text-center text-white select-none w-fit bg-coolgray-100 hover:bg-coolgray-200">
{{ $tag->name }} {{ $tag->name }}
<svg wire:click="deleteTag('{{ $tag->id }}','{{ $tag->name }}')" <svg wire:click="deleteTag('{{ $tag->id }}')"
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
class="inline-block w-3 h-3 rounded cursor-pointer stroke-current hover:bg-red-500"> class="inline-block w-3 h-3 rounded cursor-pointer stroke-current hover:bg-red-500">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
@ -17,16 +17,19 @@
<form wire:submit='submit' class="flex items-end gap-2 pt-4"> <form wire:submit='submit' class="flex items-end gap-2 pt-4">
<div class="w-64"> <div class="w-64">
<x-forms.input label="Create new or assign existing tags" <x-forms.input label="Create new or assign existing tags"
helper="You add more at once with space seperated list: web api something<br><br>If the tag does not exists, it will be created." wire:model="new_tag" /> helper="You add more at once with space seperated list: web api something<br><br>If the tag does not exists, it will be created."
wire:model="new_tag" />
</div> </div>
<x-forms.button type="submit">Add</x-forms.button> <x-forms.button type="submit">Add</x-forms.button>
</form> </form>
<h3 class="pt-4">Already defined tags</h3> @if ($tags->count() > 0)
<div>Click to quickly add</div> <h3 class="pt-4">Already defined tags</h3>
<div class="flex gap-2 pt-4"> <div>Click to quickly add</div>
@foreach ($tags as $tag) <div class="flex gap-2 pt-4">
<x-forms.button wire:click="addTag('{{ $tag->id }}','{{ $tag->name }}')"> @foreach ($tags as $tag)
{{ $tag->name }}</x-forms.button> <x-forms.button wire:click="addTag('{{ $tag->id }}','{{ $tag->name }}')">
@endforeach {{ $tag->name }}</x-forms.button>
</div> @endforeach
</div>
@endif
</div> </div>

View File

@ -14,11 +14,19 @@
All resources will be redeployed. All resources will be redeployed.
</x-new-modal> </x-new-modal>
</div> </div>
<div class="grid gap-2 pt-4 lg:grid-cols-4"> <div class="grid grid-cols-1 gap-2 pt-4 lg:grid-cols-2 xl:grid-cols-3">
@foreach ($resources as $resource) @foreach ($applications as $application)
<a href="{{ $resource->link() }}" class="flex flex-col box group"> <a href="{{ $application->link() }}" class="flex flex-col box group">
<span class="font-bold text-white">{{ $resource->name }}</span> <span class="font-bold text-white">{{ $application->project()->name }}/{{$application->environment->name}}</span>
<span class="description">{{ $resource->description }}</span> <span class="text-white ">{{ $application->name }}</span>
<span class="description">{{ $application->description }}</span>
</a>
@endforeach
@foreach ($services as $service)
<a href="{{ $service->link() }}" class="flex flex-col box group">
<span class="font-bold text-white">{{ $service->project()->name }}/{{$service->environment->name}}</span>
<span class="text-white ">{{ $service->name }}</span>
<span class="description">{{ $service->description }}</span>
</a> </a>
@endforeach @endforeach
</div> </div>