refactor: clean up overview component
- Remove terminal integration now handled by main layout - Streamline grid layout and component structure - Maintain status panel functionality
This commit is contained in:
@@ -1,41 +1,17 @@
|
|||||||
<!-- components/Overview.svelte -->
|
<!-- components/Overview.svelte -->
|
||||||
<script>
|
<script>
|
||||||
import StatusPanel from './StatusPanel.svelte';
|
import StatusPanel from './StatusPanel.svelte';
|
||||||
import Terminal from './Terminal.svelte';
|
|
||||||
|
|
||||||
export let status = 'Looking for QR-codes';
|
export let status = 'Looking for QR-codes';
|
||||||
export let uptime = '1h 12m 15s';
|
export let uptime = '1h 12m 15s';
|
||||||
export let qrCodesFound = 12;
|
export let qrCodesFound = 12;
|
||||||
|
|
||||||
const terminalLines = [
|
|
||||||
'Window()',
|
|
||||||
'[Fx] INVOKE main.main.func1()',
|
|
||||||
'[Fx] BEFORE RUN provide: git.weirdcat.su/weirdcat/auto-attendance/internal/ui.NewBuilder()',
|
|
||||||
'[Fx] RUN provide: git.weirdcat.su/weirdcat/auto-attendance/internal/ui.NewBuilder() in',
|
|
||||||
'46.723905ms',
|
|
||||||
'[Fx] BEFORE RUN provide: git.weirdcat.su/weirdcat/auto-attendance/internal/ui.NewMainWindow()',
|
|
||||||
'[Fx] RUN provide: git.weirdcat.su/weirdcat/auto-attendance/internal/ui.NewMainWindow()',
|
|
||||||
'in 11.655448ms',
|
|
||||||
'[Fx] RUNNING',
|
|
||||||
' '
|
|
||||||
];
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="overview-layout">
|
<div class="overview-layout">
|
||||||
<div class="grid-layout">
|
<div class="grid-layout">
|
||||||
<!-- QR Code Section -->
|
|
||||||
<!-- <div class="qr-container"> -->
|
|
||||||
<!-- <div class="qr-placeholder"> -->
|
|
||||||
<!-- QR Code Display -->
|
|
||||||
<!-- </div> -->
|
|
||||||
<!-- </div> -->
|
|
||||||
|
|
||||||
<!-- Status Panel -->
|
<!-- Status Panel -->
|
||||||
<StatusPanel {status} {uptime} {qrCodesFound} />
|
<StatusPanel {status} {uptime} {qrCodesFound} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Terminal Output -->
|
|
||||||
<Terminal {terminalLines} />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|||||||
Reference in New Issue
Block a user