feat(redesign): re-skin admin-ops/platform-admin/public views to DS (Phase D batch 4 — panel re-skin complete)
All checks were successful
Test Asgard Runner / test (push) Successful in 3s

Final re-skin batch: admin ops (Console/FileManager[VueFinder preserved]/WipeCalendar/WipeHistory/Changelog/Migration), platform-admin (Dashboard/Licenses/Servers/Subscriptions/Users), public product pages (ServerInfo/StatusPage/StoreView) + PublicLayout, WarpEditor, ErrorBoundary. All logic/store/router/WebSocket/handlers preserved. Marketing views (Landing/Pricing/FAQ/HowItWorks/Roadmap/EarlyAccess + MarketingLayout) intentionally deferred to the dedicated marketing-site redesign. Build green.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell
2026-06-11 02:55:02 -04:00
parent 376ed9a98d
commit 29615cb4f3
17 changed files with 2843 additions and 1301 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import { ref, onErrorCaptured } from 'vue'
import { AlertTriangle } from 'lucide-vue-next'
import Icon from '@/components/ds/core/Icon.vue'
import Button from '@/components/ds/core/Button.vue'
const hasError = ref(false)
const errorMessage = ref('')
@@ -20,18 +21,67 @@ function retry() {
</script>
<template>
<div v-if="hasError" class="min-h-screen bg-neutral-950 flex items-center justify-center p-6">
<div class="bg-neutral-900 border border-neutral-800 rounded-lg p-8 max-w-md w-full text-center">
<AlertTriangle class="w-12 h-12 text-red-500 mx-auto mb-4" />
<h1 class="text-xl font-bold text-neutral-100 mb-2">Something went wrong</h1>
<p class="text-sm text-neutral-400 mb-6">{{ errorMessage }}</p>
<button
@click="retry"
class="px-4 py-2 bg-oxide-500 hover:bg-oxide-600 text-white font-medium rounded-lg transition-colors"
>
Retry
</button>
<div v-if="hasError" class="eb-screen">
<div class="eb-card">
<div class="eb-icon-wrap">
<Icon name="triangle-alert" :size="24" :stroke-width="1.75" />
</div>
<h1 class="eb-title">Something went wrong</h1>
<p class="eb-msg">{{ errorMessage }}</p>
<Button icon="refresh-cw" @click="retry">Retry</Button>
</div>
</div>
<slot v-else />
</template>
<style scoped>
.eb-screen {
min-height: 100vh;
background: var(--surface-canvas);
display: flex;
align-items: center;
justify-content: center;
padding: var(--space-6);
}
.eb-card {
background: var(--surface-base);
box-shadow: var(--ring-default), var(--shadow-md);
border-radius: var(--radius-xl);
padding: var(--space-8);
max-width: 380px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: var(--space-4);
text-align: center;
}
.eb-icon-wrap {
width: 52px;
height: 52px;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
background: var(--status-offline-soft);
box-shadow: inset 0 0 0 1px var(--status-offline-border);
color: var(--status-offline);
flex: none;
}
.eb-title {
font-size: var(--text-xl);
font-weight: 700;
color: var(--text-primary);
letter-spacing: -0.01em;
}
.eb-msg {
font-size: var(--text-sm);
color: var(--text-tertiary);
line-height: 1.55;
max-width: 300px;
}
</style>