mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 10:23:30 +00:00
Introduce x-table toolbar/search/filter/sort/loading components and multi-select deployment history filters with OR within groups and AND across groups. Add live database/service status for breadcrumbs, shared variables layout controls, logs viewer toolbar polish, and infrastructure list filter consistency. Document patterns in UI_REDESIGN.md and cover with feature tests.
155 lines
11 KiB
PHP
155 lines
11 KiB
PHP
<x-layout>
|
|
<x-slot:title>
|
|
Sources | Coolify
|
|
</x-slot>
|
|
|
|
<div class="application-settings-form w-full">
|
|
<header class="mb-5 flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between">
|
|
<div class="min-w-0">
|
|
<h1 class="truncate text-[24px]! leading-7! font-semibold! tracking-tight!">Sources</h1>
|
|
<p class="mt-1 text-[13px] text-neutral-500 dark:text-fg-dim">
|
|
{{ $sources->count() }} {{ Str::plural('Git source', $sources->count()) }} connected to your team
|
|
</p>
|
|
</div>
|
|
@can('createAnyResource')
|
|
<div x-data="{ dropdownOpen: false }" class="relative w-fit shrink-0"
|
|
@click.outside="dropdownOpen = false" @keydown.escape.window="dropdownOpen = false">
|
|
<button type="button" @click="dropdownOpen = !dropdownOpen"
|
|
class="button button-highlighted"
|
|
aria-haspopup="menu" :aria-expanded="dropdownOpen">
|
|
<x-reicon name="plus" class="size-3.5" />
|
|
New source
|
|
<x-reicon name="chevron-down" class="size-3 opacity-55" />
|
|
</button>
|
|
|
|
<div x-cloak x-show="dropdownOpen" x-transition.origin.top.right role="menu"
|
|
class="listbox-panel left-auto! right-0! z-[90]! w-52! min-w-52!">
|
|
<x-modal-input title="New GitHub App" :closeOutside="false">
|
|
<x-slot:content>
|
|
<button type="button" @click="dropdownOpen = false"
|
|
class="listbox-option justify-start! gap-2.5!" role="menuitem">
|
|
<x-git-icon class="size-3.5 shrink-0 opacity-70" git="App\Models\GithubApp" />
|
|
GitHub App
|
|
</button>
|
|
</x-slot:content>
|
|
<livewire:source.github.create />
|
|
</x-modal-input>
|
|
<x-modal-input title="New GitLab App" :closeOutside="false">
|
|
<x-slot:content>
|
|
<button type="button" @click="dropdownOpen = false"
|
|
class="listbox-option justify-start! gap-2.5!" role="menuitem">
|
|
<x-git-icon class="size-3.5 shrink-0 opacity-70" git="App\Models\GitlabApp" />
|
|
GitLab App
|
|
</button>
|
|
</x-slot:content>
|
|
<livewire:source.gitlab.create />
|
|
</x-modal-input>
|
|
</div>
|
|
</div>
|
|
@endcan
|
|
</header>
|
|
|
|
@if ($sources->isEmpty())
|
|
<x-empty title="No sources yet"
|
|
description="Connect a Git provider to deploy applications directly from your repositories."
|
|
icon-name="sources" />
|
|
@else
|
|
@php
|
|
$items = $sources->map(function ($source) {
|
|
$isGithub = $source->getMorphClass() === 'App\\Models\\GithubApp';
|
|
return [
|
|
'name' => $source->name,
|
|
'provider' => $isGithub ? 'GitHub' : 'GitLab',
|
|
'organization' => $isGithub ? $source->organization : $source->group_name,
|
|
'status' => $source->isConnected() ? 'Connected' : 'Setup incomplete',
|
|
];
|
|
})->values();
|
|
@endphp
|
|
<div x-data="{
|
|
search: '', viewMode: localStorage.getItem('coolify-sources-view') || 'table', items: @js($items),
|
|
get filteredItems() { const query = this.search.trim().toLowerCase(); return query ? this.items.filter(item => Object.values(item).some(value => String(value || '').toLowerCase().includes(query))) : this.items; },
|
|
matches(values) { const query = this.search.trim().toLowerCase(); return !query || values.some(value => String(value || '').toLowerCase().includes(query)); },
|
|
setViewMode(mode) { this.viewMode = mode; localStorage.setItem('coolify-sources-view', mode); }
|
|
}">
|
|
@include('livewire.shared.list-search-controls', ['placeholder' => 'Search sources', 'singular' => 'source', 'plural' => 'sources'])
|
|
<div x-cloak x-show="viewMode === 'grid'" class="grid grid-cols-1 gap-3 sm:grid-cols-2 lg:grid-cols-4">
|
|
@foreach ($sources as $source)
|
|
@if ($source->getMorphClass() === 'App\Models\GithubApp')
|
|
<a x-show="matches(@js([$source->name, 'GitHub', $source->organization, $source->isConnected() ? 'Connected' : 'Setup incomplete']))" class="group flex min-h-28 flex-col rounded-xl border border-neutral-200 bg-white p-3 shadow-sm transition-all hover:-translate-y-px hover:border-neutral-300 hover:no-underline hover:shadow-md dark:border-white/[0.08] dark:bg-white/[0.025] dark:hover:border-white/[0.14]"
|
|
{{ wireNavigate() }}
|
|
href="{{ route('source.github.show', ['github_app_uuid' => data_get($source, 'uuid')]) }}">
|
|
<div class="flex items-start gap-3">
|
|
<div
|
|
class="flex size-8 shrink-0 items-center justify-center rounded-lg border border-neutral-200 bg-neutral-50 text-neutral-500 dark:border-white/[0.08] dark:bg-white/[0.04] dark:text-fg-dim">
|
|
<x-git-icon class="size-4" git="App\Models\GithubApp" />
|
|
</div>
|
|
<div class="min-w-0 flex-1">
|
|
<h2 class="truncate text-[13px]! leading-4! font-semibold! text-black dark:text-fg">
|
|
{{ $source->name }}
|
|
</h2>
|
|
<p class="mt-0.5 truncate text-[11px] text-neutral-500 dark:text-fg-faint">
|
|
{{ $source->organization ? "GitHub · {$source->organization}" : 'GitHub' }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-auto pt-4">
|
|
@if ($source->isConnected())
|
|
<x-status-badge label="Connected" type="success" />
|
|
@else
|
|
<x-status-badge label="Setup incomplete" type="warning" />
|
|
@endif
|
|
</div>
|
|
</a>
|
|
@elseif ($source->getMorphClass() === 'App\Models\GitlabApp')
|
|
<a x-show="matches(@js([$source->name, 'GitLab', $source->group_name, $source->isConnected() ? 'Connected' : 'Setup incomplete']))" class="group flex min-h-28 flex-col rounded-xl border border-neutral-200 bg-white p-3 shadow-sm transition-all hover:-translate-y-px hover:border-neutral-300 hover:no-underline hover:shadow-md dark:border-white/[0.08] dark:bg-white/[0.025] dark:hover:border-white/[0.14]"
|
|
{{ wireNavigate() }}
|
|
href="{{ route('source.gitlab.show', ['gitlab_app_uuid' => data_get($source, 'uuid')]) }}">
|
|
<div class="flex items-start gap-3">
|
|
<div
|
|
class="flex size-8 shrink-0 items-center justify-center rounded-lg border border-neutral-200 bg-neutral-50 text-neutral-500 dark:border-white/[0.08] dark:bg-white/[0.04] dark:text-fg-dim">
|
|
<x-git-icon class="size-4" git="App\Models\GitlabApp" />
|
|
</div>
|
|
<div class="min-w-0 flex-1">
|
|
<h2 class="truncate text-[13px]! leading-4! font-semibold! text-black dark:text-fg">
|
|
{{ $source->name }}
|
|
</h2>
|
|
<p class="mt-0.5 truncate text-[11px] text-neutral-500 dark:text-fg-faint">
|
|
{{ $source->group_name ? "GitLab · {$source->group_name}" : 'GitLab' }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-auto pt-4">
|
|
@if ($source->isConnected())
|
|
<x-status-badge label="Connected" type="success" />
|
|
@else
|
|
<x-status-badge label="Setup required" type="warning" />
|
|
@endif
|
|
</div>
|
|
</a>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
<div x-show="viewMode === 'table'" class="overflow-x-auto rounded-xl border border-neutral-200 bg-white shadow-sm dark:border-white/[0.08] dark:bg-white/[0.025]">
|
|
<div class="grid min-w-[620px] grid-cols-[minmax(0,1fr)_minmax(10rem,.7fr)_9rem] 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>Source</div><div>Provider</div><div>Status</div></div>
|
|
@foreach ($sources as $source)
|
|
@php
|
|
$isGithub = $source->getMorphClass() === 'App\\Models\\GithubApp';
|
|
$provider = $isGithub ? 'GitHub' : 'GitLab';
|
|
$organization = $isGithub ? $source->organization : $source->group_name;
|
|
$href = $isGithub ? route('source.github.show', ['github_app_uuid' => $source->uuid]) : route('source.gitlab.show', ['gitlab_app_uuid' => $source->uuid]);
|
|
@endphp
|
|
<a x-show="matches(@js([$source->name, $provider, $organization, $source->isConnected() ? 'Connected' : 'Setup incomplete']))" {{ wireNavigate() }} href="{{ $href }}" class="grid min-h-14 min-w-[620px] grid-cols-[minmax(0,1fr)_minmax(10rem,.7fr)_9rem] 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]">
|
|
<div class="truncate font-semibold text-black dark:text-fg">{{ $source->name }}</div>
|
|
<div class="truncate text-neutral-500 dark:text-fg-dim">{{ $organization ? "{$provider} · {$organization}" : $provider }}</div>
|
|
<div><x-status-badge :label="$source->isConnected() ? 'Connected' : 'Setup incomplete'" :type="$source->isConnected() ? 'success' : 'warning'" /></div>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
@include('livewire.shared.list-search-empty', ['label' => 'sources'])
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</x-layout>
|