feat(docker-watcher): phase 9 - SvelteKit dashboard & project views
SvelteKit project with Svelte 5, TypeScript, Tailwind CSS v4. Dashboard with project cards, project detail with stage/instance management, deploy history, instance controls. Shared API client and reusable components (StatusBadge, InstanceCard, ProjectCard, ConfirmDialog). Add Phase 14 (Volumes & Environment) to plan.
This commit is contained in:
@@ -0,0 +1,238 @@
|
||||
<script lang="ts">
|
||||
import { getSettings, updateSettings } from '$lib/api';
|
||||
import FormField from '$lib/components/FormField.svelte';
|
||||
import { toasts } from '$lib/stores/toast';
|
||||
|
||||
let loading = $state(true);
|
||||
let saving = $state(false);
|
||||
|
||||
// NPM credentials
|
||||
let npmUrl = $state('');
|
||||
let npmEmail = $state('');
|
||||
let npmPassword = $state('');
|
||||
let npmHasCredentials = $state(false);
|
||||
let editingNpm = $state(false);
|
||||
|
||||
let errors = $state<Record<string, string>>({});
|
||||
|
||||
function validateNpmForm(): boolean {
|
||||
const newErrors: Record<string, string> = {};
|
||||
if (!npmUrl.trim()) {
|
||||
newErrors.npmUrl = 'NPM URL is required';
|
||||
} else {
|
||||
try {
|
||||
new URL(npmUrl.trim());
|
||||
} catch {
|
||||
newErrors.npmUrl = 'Invalid URL format';
|
||||
}
|
||||
}
|
||||
if (!npmEmail.trim()) {
|
||||
newErrors.npmEmail = 'Email is required';
|
||||
} else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(npmEmail.trim())) {
|
||||
newErrors.npmEmail = 'Invalid email format';
|
||||
}
|
||||
if (editingNpm && !npmPassword.trim()) {
|
||||
newErrors.npmPassword = 'Password is required when updating credentials';
|
||||
}
|
||||
errors = newErrors;
|
||||
return Object.keys(newErrors).length === 0;
|
||||
}
|
||||
|
||||
async function loadCredentials() {
|
||||
loading = true;
|
||||
try {
|
||||
const settings = await getSettings();
|
||||
npmUrl = settings.npm_url ?? '';
|
||||
npmEmail = settings.npm_email ?? '';
|
||||
// If npm_password is present (even masked), credentials exist
|
||||
npmHasCredentials = !!(settings.npm_url && settings.npm_email);
|
||||
npmPassword = '';
|
||||
} catch (err) {
|
||||
const message = err instanceof Error ? err.message : 'Failed to load credentials';
|
||||
toasts.error(message);
|
||||
} finally {
|
||||
loading = false;
|
||||
}
|
||||
}
|
||||
|
||||
async function handleSaveNpm() {
|
||||
if (!validateNpmForm()) return;
|
||||
|
||||
saving = true;
|
||||
try {
|
||||
const payload: Record<string, string> = {
|
||||
npm_url: npmUrl.trim(),
|
||||
npm_email: npmEmail.trim()
|
||||
};
|
||||
if (npmPassword.trim()) {
|
||||
payload.npm_password = npmPassword.trim();
|
||||
}
|
||||
await updateSettings(payload);
|
||||
npmHasCredentials = true;
|
||||
editingNpm = false;
|
||||
npmPassword = '';
|
||||
toasts.success('NPM credentials saved');
|
||||
} catch (err) {
|
||||
const message = err instanceof Error ? err.message : 'Failed to save NPM credentials';
|
||||
toasts.error(message);
|
||||
} finally {
|
||||
saving = false;
|
||||
}
|
||||
}
|
||||
|
||||
$effect(() => {
|
||||
loadCredentials();
|
||||
});
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Credentials - Docker Watcher</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="space-y-6">
|
||||
<div>
|
||||
<h2 class="text-lg font-semibold text-gray-800">Credentials</h2>
|
||||
<p class="text-sm text-gray-500">
|
||||
Manage credentials for Nginx Proxy Manager and registry tokens. All values are encrypted at
|
||||
rest.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{#if loading}
|
||||
<div class="flex items-center justify-center py-12">
|
||||
<svg class="h-8 w-8 animate-spin text-blue-600" viewBox="0 0 24 24" fill="none">
|
||||
<circle
|
||||
class="opacity-25"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
stroke="currentColor"
|
||||
stroke-width="4"
|
||||
></circle>
|
||||
<path
|
||||
class="opacity-75"
|
||||
fill="currentColor"
|
||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"
|
||||
></path>
|
||||
</svg>
|
||||
</div>
|
||||
{:else}
|
||||
<!-- NPM Credentials -->
|
||||
<div class="rounded-lg border border-gray-200 bg-white p-6 shadow-sm">
|
||||
<div class="flex items-center justify-between mb-4">
|
||||
<div>
|
||||
<h3 class="text-sm font-semibold text-gray-800">Nginx Proxy Manager</h3>
|
||||
<p class="text-xs text-gray-500">Credentials for managing proxy hosts via NPM API</p>
|
||||
</div>
|
||||
{#if npmHasCredentials && !editingNpm}
|
||||
<span class="rounded-full bg-green-100 px-2 py-0.5 text-xs font-medium text-green-700">
|
||||
Configured
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if !editingNpm && npmHasCredentials}
|
||||
<!-- Masked display -->
|
||||
<div class="space-y-3">
|
||||
<div class="flex items-center justify-between rounded-md bg-gray-50 px-3 py-2">
|
||||
<div>
|
||||
<p class="text-xs font-medium text-gray-500">URL</p>
|
||||
<p class="text-sm text-gray-700">{npmUrl || 'Not set'}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center justify-between rounded-md bg-gray-50 px-3 py-2">
|
||||
<div>
|
||||
<p class="text-xs font-medium text-gray-500">Email</p>
|
||||
<p class="text-sm text-gray-700">{npmEmail || 'Not set'}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center justify-between rounded-md bg-gray-50 px-3 py-2">
|
||||
<div>
|
||||
<p class="text-xs font-medium text-gray-500">Password</p>
|
||||
<p class="text-sm font-mono text-gray-700">--------</p>
|
||||
</div>
|
||||
</div>
|
||||
<button
|
||||
onclick={() => {
|
||||
editingNpm = true;
|
||||
}}
|
||||
class="mt-2 rounded-md border border-gray-300 px-4 py-2 text-sm font-medium text-gray-700 transition-colors hover:bg-gray-50"
|
||||
>
|
||||
Change Credentials
|
||||
</button>
|
||||
</div>
|
||||
{:else}
|
||||
<!-- Edit form -->
|
||||
<div class="space-y-4">
|
||||
<FormField
|
||||
label="NPM URL"
|
||||
name="npmUrl"
|
||||
bind:value={npmUrl}
|
||||
placeholder="http://npm:81"
|
||||
required
|
||||
error={errors.npmUrl ?? ''}
|
||||
helpText="Nginx Proxy Manager API URL"
|
||||
/>
|
||||
|
||||
<FormField
|
||||
label="Email"
|
||||
name="npmEmail"
|
||||
type="email"
|
||||
bind:value={npmEmail}
|
||||
placeholder="admin@example.com"
|
||||
required
|
||||
error={errors.npmEmail ?? ''}
|
||||
helpText="NPM admin email"
|
||||
/>
|
||||
|
||||
<FormField
|
||||
label="Password"
|
||||
name="npmPassword"
|
||||
type="password"
|
||||
bind:value={npmPassword}
|
||||
placeholder={npmHasCredentials ? '(enter new password)' : 'npm-password'}
|
||||
required={editingNpm}
|
||||
error={errors.npmPassword ?? ''}
|
||||
helpText={npmHasCredentials
|
||||
? 'Enter the new password to replace the existing one'
|
||||
: 'NPM admin password (will be encrypted)'}
|
||||
/>
|
||||
|
||||
<div class="flex gap-3">
|
||||
<button
|
||||
onclick={handleSaveNpm}
|
||||
disabled={saving}
|
||||
class="rounded-md bg-blue-600 px-4 py-2 text-sm font-medium text-white transition-colors hover:bg-blue-700 disabled:opacity-50"
|
||||
>
|
||||
{saving ? 'Saving...' : 'Save'}
|
||||
</button>
|
||||
{#if npmHasCredentials}
|
||||
<button
|
||||
onclick={() => {
|
||||
editingNpm = false;
|
||||
npmPassword = '';
|
||||
errors = {};
|
||||
}}
|
||||
class="rounded-md border border-gray-300 px-4 py-2 text-sm font-medium text-gray-700 transition-colors hover:bg-gray-50"
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- Registry Tokens info -->
|
||||
<div class="rounded-lg border border-gray-200 bg-white p-6 shadow-sm">
|
||||
<h3 class="text-sm font-semibold text-gray-800">Registry Tokens</h3>
|
||||
<p class="mt-1 text-sm text-gray-500">
|
||||
Registry authentication tokens are managed per-registry in the
|
||||
<a href="/settings/registries" class="text-blue-600 hover:text-blue-700 underline"
|
||||
>Registries</a
|
||||
>
|
||||
section. Each registry stores its token encrypted in the database.
|
||||
</p>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
Reference in New Issue
Block a user