fix(terminal): now it should work
This commit is contained in:
@@ -27,8 +27,6 @@ class ExecuteContainerCommand extends Component
|
|||||||
|
|
||||||
public Collection $servers;
|
public Collection $servers;
|
||||||
|
|
||||||
public bool $hasShell = true;
|
|
||||||
|
|
||||||
public bool $containersLoaded = false;
|
public bool $containersLoaded = false;
|
||||||
|
|
||||||
public bool $autoConnectAttempted = false;
|
public bool $autoConnectAttempted = false;
|
||||||
@@ -250,7 +248,6 @@ class ExecuteContainerCommand extends Component
|
|||||||
if (! $this->server->isTerminalEnabled()) {
|
if (! $this->server->isTerminalEnabled()) {
|
||||||
throw new \RuntimeException('Terminal access is disabled on this server.');
|
throw new \RuntimeException('Terminal access is disabled on this server.');
|
||||||
}
|
}
|
||||||
$this->hasShell = true;
|
|
||||||
$this->isConnecting = true;
|
$this->isConnecting = true;
|
||||||
$this->connectionStatus = 'Establishing connection to server terminal...';
|
$this->connectionStatus = 'Establishing connection to server terminal...';
|
||||||
$this->dispatch(
|
$this->dispatch(
|
||||||
@@ -309,14 +306,6 @@ class ExecuteContainerCommand extends Component
|
|||||||
throw new \RuntimeException('Server ownership verification failed.');
|
throw new \RuntimeException('Server ownership verification failed.');
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->hasShell = $this->checkShellAvailability($server, data_get($container, 'container.Names'));
|
|
||||||
if (! $this->hasShell) {
|
|
||||||
$this->isConnecting = false;
|
|
||||||
$this->connectionStatus = 'Shell not available in container.';
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->isConnecting = true;
|
$this->isConnecting = true;
|
||||||
$this->connectionStatus = 'Establishing connection to container terminal...';
|
$this->connectionStatus = 'Establishing connection to container terminal...';
|
||||||
$this->dispatch(
|
$this->dispatch(
|
||||||
|
|||||||
@@ -17,25 +17,8 @@
|
|||||||
<livewire:server.navbar :server="$server" />
|
<livewire:server.navbar :server="$server" />
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if (!$hasShell)
|
|
||||||
<div class="flex items-center justify-center w-full py-4 mx-auto">
|
|
||||||
<div class="p-4 w-full rounded-sm border dark:bg-coolgray-100 dark:border-coolgray-300">
|
|
||||||
<div class="flex flex-col items-center justify-center space-y-4">
|
|
||||||
<svg class="w-12 h-12 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
||||||
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
|
|
||||||
</svg>
|
|
||||||
<div class="text-center">
|
|
||||||
<h3 class="text-lg font-medium">Terminal Not Available</h3>
|
|
||||||
<p class="mt-2 text-sm text-gray-500">No shell (bash/sh) is available in this container. Please
|
|
||||||
ensure either bash or sh is installed to use the terminal.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@endif
|
|
||||||
@if ($type === 'server')
|
@if ($type === 'server')
|
||||||
@if ($server->isTerminalEnabled())
|
@if (!$server->isForceDisabled() && $server->isTerminalEnabled())
|
||||||
<form class="w-full flex gap-2 items-start justify-start" wire:submit="$dispatchSelf('connectToServer')">
|
<form class="w-full flex gap-2 items-start justify-start" wire:submit="$dispatchSelf('connectToServer')">
|
||||||
<h2 class="pb-4">Terminal</h2>
|
<h2 class="pb-4">Terminal</h2>
|
||||||
<x-forms.button type="submit" :disabled="$isConnecting">
|
<x-forms.button type="submit" :disabled="$isConnecting">
|
||||||
@@ -93,7 +76,7 @@
|
|||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
<div class="mx-auto w-full">
|
<div class="mx-auto w-full">
|
||||||
<livewire:project.shared.terminal />
|
<livewire:project.shared.terminal wire:key="terminal-{{ $this->getId() }}-container" />
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
|
|||||||
Reference in New Issue
Block a user