mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 12:23:48 +00:00
Add dedicated service volume-backup Livewire pages and routes, wire shared storage backups for services, and pass S3 trusted hosts into MinIO resolve options. Also refine breadcrumbs, sticky sidebars, destination/GitHub layouts, resource filters, and login recovery link.
49 lines
4.0 KiB
PHP
49 lines
4.0 KiB
PHP
<div x-data="{ search: '' }" class="application-settings-form">
|
|
<x-application.settings-section title="Resources"
|
|
description="Applications currently using this GitHub App." flush>
|
|
@if ($applications->isEmpty())
|
|
<x-empty title="No resources use this source"
|
|
description="Applications will appear here after this GitHub App is selected as their source."
|
|
icon-name="sources" size="sm" />
|
|
@else
|
|
<div class="border-b border-neutral-200 p-3 dark:border-white/[0.08]">
|
|
<div class="relative w-full max-w-sm">
|
|
<x-reicon name="search"
|
|
class="pointer-events-none absolute top-1/2 left-2.5 z-10 size-3.5 -translate-y-1/2 text-neutral-400 dark:text-fg-faint" />
|
|
<input x-model.debounce.150ms="search" type="search"
|
|
placeholder="Search resources"
|
|
class="h-8! w-full rounded-lg! border-neutral-200! bg-white! py-0! pr-3! pl-8! text-[12px]! shadow-none! placeholder:text-neutral-400 focus:border-accent! focus:ring-0! dark:border-white/[0.08]! dark:bg-white/[0.035]! dark:text-fg! dark:placeholder:text-fg-faint">
|
|
</div>
|
|
</div>
|
|
<div class="overflow-x-auto">
|
|
<div
|
|
class="grid min-w-[680px] grid-cols-[minmax(10rem,.8fr)_minmax(10rem,.8fr)_minmax(12rem,1fr)_8rem] border-b border-neutral-200 bg-neutral-50 px-4 py-2.5 text-[11px] font-medium text-neutral-500 dark:border-white/[0.08] dark:bg-white/[0.025] dark:text-fg-faint">
|
|
<div>Project</div>
|
|
<div>Environment</div>
|
|
<div>Resource</div>
|
|
<div>Type</div>
|
|
</div>
|
|
@foreach ($applications->sortBy('name', SORT_NATURAL) as $resource)
|
|
@php
|
|
$projectName = (string) data_get($resource->project(), 'name');
|
|
$environmentName = (string) data_get($resource, 'environment.name');
|
|
$resourceName = (string) $resource->name;
|
|
$resourceType = (string) str($resource->type())->headline();
|
|
$searchValue = strtolower(
|
|
$projectName.' '.$environmentName.' '.$resourceName.' '.$resourceType,
|
|
);
|
|
@endphp
|
|
<a {{ wireNavigate() }} href="{{ $resource->link() }}"
|
|
x-show="search === '' || '{{ addslashes($searchValue) }}'.includes(search.toLowerCase())"
|
|
class="grid min-h-13 min-w-[680px] grid-cols-[minmax(10rem,.8fr)_minmax(10rem,.8fr)_minmax(12rem,1fr)_8rem] items-center border-b border-neutral-200 px-4 py-2.5 text-[12px] transition-colors last:border-b-0 hover:bg-neutral-50 hover:no-underline dark:border-white/[0.07] dark:hover:bg-white/[0.025]">
|
|
<span class="truncate text-neutral-500 dark:text-fg-dim">{{ $projectName }}</span>
|
|
<span class="truncate text-neutral-500 dark:text-fg-dim">{{ $environmentName }}</span>
|
|
<span class="truncate font-medium text-black dark:text-fg">{{ $resourceName }}</span>
|
|
<span class="text-neutral-500 dark:text-fg-dim">{{ $resourceType }}</span>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
</x-application.settings-section>
|
|
</div>
|