Refactor code to load tags for environment applications and databases

This commit is contained in:
Andras Bacsai 2024-02-05 19:52:06 +01:00
parent 26ccc4afb4
commit 0b518a3b76
2 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,8 @@ public function mount()
}
$this->project = $project;
$this->environment = $environment;
$this->applications = $environment->applications->load(['tags']);
$this->applications = $this->environment->applications->load(['tags']);
$this->applications = $this->applications->map(function ($application) {
if (data_get($application, 'environment.project.uuid')) {
$application->hrefLink = route('project.application.configuration', [
@ -40,8 +41,7 @@ public function mount()
}
return $application;
});
ray($this->applications);
$this->postgresqls = $environment->postgresqls->load(['tags'])->sortBy('name');
$this->postgresqls = $this->environment->postgresqls->load(['tags'])->sortBy('name');
$this->postgresqls = $this->postgresqls->map(function ($postgresql) {
if (data_get($postgresql, 'environment.project.uuid')) {
$postgresql->hrefLink = route('project.database.configuration', [
@ -52,7 +52,7 @@ public function mount()
}
return $postgresql;
});
$this->redis = $environment->redis->load(['tags'])->sortBy('name');
$this->redis = $this->environment->redis->load(['tags'])->sortBy('name');
$this->redis = $this->redis->map(function ($redis) {
if (data_get($redis, 'environment.project.uuid')) {
$redis->hrefLink = route('project.database.configuration', [
@ -63,7 +63,7 @@ public function mount()
}
return $redis;
});
$this->mongodbs = $environment->mongodbs->load(['tags'])->sortBy('name');
$this->mongodbs = $this->environment->mongodbs->load(['tags'])->sortBy('name');
$this->mongodbs = $this->mongodbs->map(function ($mongodb) {
if (data_get($mongodb, 'environment.project.uuid')) {
$mongodb->hrefLink = route('project.database.configuration', [
@ -74,7 +74,7 @@ public function mount()
}
return $mongodb;
});
$this->mysqls = $environment->mysqls->load(['tags'])->sortBy('name');
$this->mysqls = $this->environment->mysqls->load(['tags'])->sortBy('name');
$this->mysqls = $this->mysqls->map(function ($mysql) {
if (data_get($mysql, 'environment.project.uuid')) {
$mysql->hrefLink = route('project.database.configuration', [
@ -85,7 +85,7 @@ public function mount()
}
return $mysql;
});
$this->mariadbs = $environment->mariadbs->load(['tags'])->sortBy('name');
$this->mariadbs = $this->environment->mariadbs->load(['tags'])->sortBy('name');
$this->mariadbs = $this->mariadbs->map(function ($mariadb) {
if (data_get($mariadb, 'environment.project.uuid')) {
$mariadb->hrefLink = route('project.database.configuration', [
@ -96,7 +96,7 @@ public function mount()
}
return $mariadb;
});
$this->services = $environment->services->load(['tags'])->sortBy('name');
$this->services = $this->environment->services->load(['tags'])->sortBy('name');
$this->services = $this->services->map(function ($service) {
if (data_get($service, 'environment.project.uuid')) {
$service->hrefLink = route('project.service.configuration', [

View File

@ -10,7 +10,7 @@
class StandaloneMariadb extends BaseModel
{
use HasFactory,SoftDeletes;
use HasFactory, SoftDeletes;
protected $guarded = [];
protected $casts = [