Compare commits

..

2 Commits

Author SHA1 Message Date
devops 0f9809e423 chore: bump version to v0.2.25 [skip ci] 2026-06-09 21:01:16 +00:00
developer c2736d20c1 feat: Cards, Offene Aufgaben, Feed – Komplettumbau
CI - Build & Test / Backend (.NET) (push) Successful in 23s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 16s
CI - Build & Test / Security Check (push) Successful in 3s
TeamNetwork: Footer→Arrow, Current Task+Runtime inline
Missions→Offene Aufgaben (TaskCard) mit +New Task, Iris/Bao-Quelle
OperationsFeed: Text-Wrap, 5 Items, Mehr-Button→Tag-Navigation-Modal
2026-06-09 23:00:26 +02:00
6 changed files with 494 additions and 260 deletions
+1 -1
View File
@@ -1 +1 @@
0.2.24 0.2.25
+183 -139
View File
@@ -1,79 +1,77 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue' import { ref } from 'vue'
import { Clock, ChevronRight } from '@lucide/vue' import { Plus, Circle } from '@lucide/vue'
import type { MissionData } from '../../composables/useDashboardData' import type { OpenTask } from '../../composables/useDashboardData'
const props = defineProps<{ defineProps<{
mission: MissionData tasks: OpenTask[]
}>() }>()
const statusColor: Record<string, string> = { const emit = defineEmits<{
healthy: '#22c55e', newTask: []
attention: '#eab308', }>()
blocked: '#ef4444',
paused: '#6b7280',
}
const statusLabel = computed(() => { const expandedId = ref<string | null>(null)
const map: Record<string, string> = {
healthy: 'Healthy', function toggleExpand(id: string) {
attention: 'Warning', expandedId.value = expandedId.value === id ? null : id
blocked: 'Blocked', }
paused: 'Paused',
}
return map[props.mission.status] ?? props.mission.status
})
</script> </script>
<template> <template>
<article class="mission-card" tabindex="0"> <div class="task-card-panel">
<div class="mission-head"> <div class="task-header">
<h3>{{ mission.name }}</h3> <h2 class="task-title">Offene Aufgaben</h2>
<span <button class="new-task-btn" @click="emit('newTask')">
class="mission-status" <Plus :size="12" />
:style="{ color: statusColor[mission.status] }" <span>New Task</span>
> </button>
{{ statusLabel }}
</span>
</div> </div>
<div class="progress-track"> <div class="task-list">
<div <div v-if="tasks.length === 0" class="task-empty">
class="progress-fill" Keine offenen Aufgaben. Erstelle eine mit + New Task.
:style="{
width: `${mission.progress}%`,
background: `linear-gradient(90deg, ${statusColor[mission.status]}, color-mix(in srgb, ${statusColor[mission.status]} 65%, #fff))`,
}"
></div>
</div>
<div class="mission-body">
<div class="mission-detail">
<span class="detail-label">Current Task</span>
<span class="detail-value">{{ mission.currentTask }}</span>
</div> </div>
<div class="mission-footer"> <TransitionGroup name="task">
<div class="mission-meta"> <div
<Clock :size="10" /> v-for="task in tasks"
<span>{{ mission.lastActivity }}</span> :key="task.id"
class="task-item"
:class="{ expanded: expandedId === task.id }"
@click="toggleExpand(task.id)"
>
<div class="task-main">
<Circle
:size="8"
class="task-source-dot"
:class="task.source === 'iris' ? 'dot-iris' : 'dot-bao'"
fill="currentColor"
/>
<div class="task-content">
<div class="task-title-row">
<span class="task-name">{{ task.title }}</span>
<span class="task-time">{{ task.createdAt }}</span>
</div>
<span
class="task-source-tag"
:class="task.source === 'iris' ? 'tag-iris' : 'tag-bao'"
>
{{ task.source === 'iris' ? 'Iris' : 'Bao' }}
</span>
</div>
</div>
<div v-if="expandedId === task.id" class="task-detail">
{{ task.detail }}
</div>
</div> </div>
<div class="mission-tasks"> </TransitionGroup>
<span class="tasks-count">{{ mission.remainingTasks }}</span>
<span class="tasks-label">remaining</span>
</div>
</div>
</div> </div>
</div>
<div class="mission-arrow">
<ChevronRight :size="14" />
</div>
</article>
</template> </template>
<style scoped> <style scoped>
.mission-card { .task-card-panel {
position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 10px; gap: 10px;
@@ -81,121 +79,167 @@ const statusLabel = computed(() => {
background: rgba(22, 27, 34, 0.65); background: rgba(22, 27, 34, 0.65);
border: 1px solid rgba(139, 124, 246, 0.08); border: 1px solid rgba(139, 124, 246, 0.08);
border-radius: 14px; border-radius: 14px;
cursor: pointer; transition: border-color 0.2s ease;
transition: all 0.25s ease;
backdrop-filter: blur(6px); backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
} }
.mission-card:hover { .task-card-panel:hover {
border-color: rgba(139, 124, 246, 0.2); border-color: rgba(139, 124, 246, 0.15);
transform: translateY(-1px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.mission-card:focus-visible {
outline: 2px solid #a78bfa;
outline-offset: 2px;
} }
.mission-head { .task-header {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
gap: 8px; gap: 8px;
} }
.mission-head h3 { .task-title {
margin: 0; margin: 0;
font-size: 12px; font-size: 11px;
font-weight: 600; font-weight: 600;
color: #e8eaf0; color: #e8eaf0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.mission-status { .new-task-btn {
font-size: 8px; display: flex;
align-items: center;
gap: 4px;
padding: 4px 10px;
background: rgba(139, 124, 246, 0.12);
border: 1px solid rgba(139, 124, 246, 0.2);
border-radius: 6px;
color: #a78bfa;
font-size: 9px;
font-weight: 600; font-weight: 600;
text-transform: capitalize; cursor: pointer;
letter-spacing: 0.04em; transition: all 0.2s;
flex-shrink: 0; }
.new-task-btn:hover {
background: rgba(139, 124, 246, 0.2);
border-color: rgba(139, 124, 246, 0.35);
} }
.progress-track { .task-list {
height: 3px;
background: rgba(255, 255, 255, 0.06);
border-radius: 3px;
overflow: hidden;
}
.progress-fill {
height: 100%;
border-radius: 3px;
transition: width 0.5s ease;
}
.mission-body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 4px;
}
.task-item {
display: flex;
flex-direction: column;
gap: 4px;
padding: 8px 10px;
border-radius: 8px;
cursor: pointer;
transition: background 0.15s;
border: 1px solid transparent;
}
.task-item:hover {
background: rgba(255, 255, 255, 0.03);
border-color: rgba(139, 124, 246, 0.08);
}
.task-item.expanded {
background: rgba(139, 124, 246, 0.04);
border-color: rgba(139, 124, 246, 0.1);
}
.task-main {
display: flex;
align-items: flex-start;
gap: 8px; gap: 8px;
} }
.mission-detail {
.task-source-dot {
margin-top: 4px;
flex-shrink: 0;
}
.dot-iris {
color: #a78bfa;
}
.dot-bao {
color: #3b82f6;
}
.task-content {
flex: 1;
min-width: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 3px; gap: 3px;
} }
.detail-label { .task-title-row {
font-size: 8px;
color: #6b7385;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.detail-value {
font-size: 10px;
color: #7e8799;
line-height: 1.35;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.mission-footer {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
gap: 8px;
} }
.mission-meta { .task-name {
display: flex; font-size: 10px;
align-items: center; font-weight: 500;
gap: 4px; color: #d1d5db;
font-size: 9px; line-height: 1.35;
}
.task-time {
font-size: 8.5px;
color: #6b7385; color: #6b7385;
} flex-shrink: 0;
.mission-tasks {
display: flex;
align-items: center;
gap: 4px;
}
.tasks-count {
font-size: 12px;
font-weight: 700;
color: #a78bfa;
font-variant-numeric: tabular-nums; font-variant-numeric: tabular-nums;
} }
.tasks-label { .task-source-tag {
display: inline-block;
font-size: 8px; font-size: 8px;
color: #6b7385; font-weight: 600;
text-transform: uppercase; padding: 1px 7px;
letter-spacing: 0.04em; border-radius: 4px;
letter-spacing: 0.02em;
align-self: flex-start;
line-height: 1.4;
}
.tag-iris {
background: rgba(167, 139, 250, 0.15);
color: #a78bfa;
}
.tag-bao {
background: rgba(59, 130, 246, 0.15);
color: #3b82f6;
} }
.mission-arrow { .task-detail {
position: absolute; padding: 6px 10px;
right: 10px; margin: 0 0 2px 16px;
bottom: 10px; font-size: 9.5px;
color: #6b7385; color: #7e8799;
opacity: 0; line-height: 1.45;
transition: opacity 0.2s ease, transform 0.2s ease; background: rgba(0, 0, 0, 0.15);
border-radius: 6px;
border-left: 2px solid rgba(139, 124, 246, 0.2);
} }
.mission-card:hover .mission-arrow {
opacity: 1; .task-empty {
transform: translateX(2px); text-align: center;
padding: 16px 8px;
font-size: 10px;
color: #6b7385;
line-height: 1.5;
}
/* TransitionGroup */
.task-enter-active {
transition: all 0.3s ease;
}
.task-leave-active {
transition: all 0.3s ease;
position: absolute;
}
.task-enter-from {
opacity: 0;
transform: translateY(-6px);
}
.task-leave-to {
opacity: 0;
transform: translateY(6px);
}
.task-move {
transition: transform 0.3s ease;
} }
</style> </style>
@@ -1,10 +1,52 @@
<script setup lang="ts"> <script setup lang="ts">
import { Activity } from '@lucide/vue' import { ref, computed } from 'vue'
import { Activity, ChevronLeft, ChevronRight, X } from '@lucide/vue'
import type { FeedEntry } from '../../composables/useDashboardData' import type { FeedEntry } from '../../composables/useDashboardData'
defineProps<{ const props = defineProps<{
entries: FeedEntry[] entries: FeedEntry[]
}>() }>()
// ── Compact feed (5 items) ──
const compactEntries = computed(() => props.entries.slice(0, 5))
// ── Feed Detail Modal ──
const showDetailModal = ref(false)
const selectedDayOffset = ref(0) // 0 = today, -1 = yesterday, etc.
function openDetailModal() {
selectedDayOffset.value = 0
showDetailModal.value = true
}
function closeDetailModal() {
showDetailModal.value = false
}
function dayLabel(offset: number): string {
if (offset === 0) return 'Heute'
if (offset === -1) return 'Gestern'
if (offset === -2) return 'Vorgestern'
const d = new Date()
d.setDate(d.getDate() + offset)
return d.toLocaleDateString('de-DE', { weekday: 'long', day: 'numeric', month: 'long' })
}
function navigateDay(dir: -1 | 1) {
const next = selectedDayOffset.value + dir
if (next >= -6 && next <= 0) {
selectedDayOffset.value = next
}
}
const filteredEntries = computed(() => {
const targetDate = new Date()
targetDate.setDate(targetDate.getDate() + selectedDayOffset.value)
const targetStr = targetDate.toISOString().slice(0, 10)
return props.entries.filter(e => e.timestamp.slice(0, 10) === targetStr)
})
</script> </script>
<template> <template>
@@ -17,7 +59,7 @@ defineProps<{
<div class="feed-list"> <div class="feed-list">
<TransitionGroup name="feed"> <TransitionGroup name="feed">
<div <div
v-for="(entry, idx) in entries.slice(0, 8)" v-for="(entry, idx) in compactEntries"
:key="entry.timestamp + '-' + idx" :key="entry.timestamp + '-' + idx"
class="feed-entry" class="feed-entry"
> >
@@ -33,7 +75,61 @@ defineProps<{
<div v-if="entries.length === 0" class="feed-empty"> <div v-if="entries.length === 0" class="feed-empty">
<span>No operations recorded yet.</span> <span>No operations recorded yet.</span>
</div> </div>
<button v-if="entries.length > 5" class="feed-more-btn" @click="openDetailModal">
Mehr anzeigen
</button>
</div> </div>
<!-- Feed Detail Modal -->
<Teleport to="body">
<div v-if="showDetailModal" class="modal-overlay" @click.self="closeDetailModal">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title">Operations Log</h2>
<button class="modal-close-btn" @click="closeDetailModal">
<X :size="16" />
</button>
</div>
<div class="modal-nav">
<button
class="nav-btn"
:disabled="selectedDayOffset <= -6"
@click="navigateDay(-1)"
>
<ChevronLeft :size="14" />
</button>
<span class="nav-label">{{ dayLabel(selectedDayOffset) }}</span>
<button
class="nav-btn"
:disabled="selectedDayOffset >= 0"
@click="navigateDay(1)"
>
<ChevronRight :size="14" />
</button>
</div>
<div class="modal-entries">
<div v-if="filteredEntries.length === 0" class="modal-empty">
Keine Einträge für diesen Tag.
</div>
<div
v-for="(entry, idx) in filteredEntries"
:key="entry.timestamp + '-' + idx"
class="feed-entry"
>
<span class="feed-time">{{ entry.time }}</span>
<span class="feed-bullet">&middot;</span>
<span class="feed-agent" :class="'agent-' + entry.agent.toLowerCase()">
{{ entry.agent }}
</span>
<span class="feed-action">{{ entry.action }}</span>
</div>
</div>
</div>
</div>
</Teleport>
</div> </div>
</template> </template>
@@ -121,9 +217,8 @@ defineProps<{
} }
.feed-action { .feed-action {
color: #7e8799; color: #7e8799;
white-space: nowrap; white-space: normal;
overflow: hidden; word-break: break-word;
text-overflow: ellipsis;
} }
.feed-empty { .feed-empty {
@@ -133,6 +228,26 @@ defineProps<{
color: #6b7385; color: #6b7385;
} }
.feed-more-btn {
display: block;
width: 100%;
padding: 8px;
margin-top: 4px;
background: rgba(139, 124, 246, 0.08);
border: 1px solid rgba(139, 124, 246, 0.12);
border-radius: 8px;
color: #a78bfa;
font-size: 9.5px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
text-align: center;
}
.feed-more-btn:hover {
background: rgba(139, 124, 246, 0.14);
border-color: rgba(139, 124, 246, 0.2);
}
/* TransitionGroup */ /* TransitionGroup */
.feed-enter-active { .feed-enter-active {
transition: all 0.3s ease; transition: all 0.3s ease;
@@ -152,4 +267,104 @@ defineProps<{
.feed-move { .feed-move {
transition: transform 0.3s ease; transition: transform 0.3s ease;
} }
/* ── Modal Overlay ── */
:global(.modal-overlay) {
position: fixed;
inset: 0;
z-index: 1000;
display: grid;
place-items: center;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px);
padding: 20px;
}
:global(.modal-content) {
background: #161b22;
border: 1px solid rgba(139, 124, 246, 0.15);
border-radius: 16px;
padding: 24px;
width: 100%;
max-width: 520px;
max-height: 80vh;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
:global(.modal-header) {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
:global(.modal-title) {
margin: 0;
font-size: 15px;
font-weight: 600;
color: #e8eaf0;
}
:global(.modal-close-btn) {
display: grid;
place-items: center;
width: 28px;
height: 28px;
border: none;
background: rgba(255, 255, 255, 0.05);
border-radius: 6px;
color: #7e8799;
cursor: pointer;
transition: all 0.15s;
}
:global(.modal-close-btn:hover) {
background: rgba(255, 255, 255, 0.1);
color: #e8eaf0;
}
:global(.modal-nav) {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
:global(.nav-btn) {
display: grid;
place-items: center;
width: 30px;
height: 30px;
border: 1px solid rgba(139, 124, 246, 0.15);
background: rgba(139, 124, 246, 0.08);
border-radius: 8px;
color: #a78bfa;
cursor: pointer;
transition: all 0.15s;
}
:global(.nav-btn:hover:not(:disabled)) {
background: rgba(139, 124, 246, 0.16);
border-color: rgba(139, 124, 246, 0.3);
}
:global(.nav-btn:disabled) {
opacity: 0.3;
cursor: not-allowed;
}
:global(.nav-label) {
font-size: 12px;
font-weight: 600;
color: #d1d5db;
min-width: 100px;
text-align: center;
}
:global(.modal-entries) {
display: flex;
flex-direction: column;
gap: 4px;
overflow-y: auto;
max-height: 50vh;
padding-right: 4px;
}
:global(.modal-empty) {
text-align: center;
padding: 24px 0;
font-size: 11px;
color: #6b7385;
}
</style> </style>
@@ -356,19 +356,20 @@ onUnmounted(() => {
<span class="card-role-tag" :style="{ background: `${hero.color}18`, color: hero.color, borderColor: `${hero.color}30` }">{{ hero.role }}</span> <span class="card-role-tag" :style="{ background: `${hero.color}18`, color: hero.color, borderColor: `${hero.color}30` }">{{ hero.role }}</span>
</div> </div>
<p class="card-desc">{{ hero.description }}</p> <p class="card-desc">{{ hero.description }}</p>
<span v-if="hero.task" class="node-task"> <div v-if="hero.task" class="task-row">
<span class="node-task-dot"></span> <span class="node-task">
{{ hero.task }} <span class="node-task-dot"></span>
</span> {{ hero.task }}
</span>
<span v-if="hero.runtime" class="node-runtime">{{ hero.runtime }}</span>
</div>
<div class="card-tags"> <div class="card-tags">
<span v-for="tag in hero.tags" :key="tag" class="card-tag" :style="{ background: `${hero.color}18`, color: hero.color }">{{ tag }}</span> <span v-for="tag in hero.tags" :key="tag" class="card-tag" :style="{ background: `${hero.color}18`, color: hero.color }">{{ tag }}</span>
</div> </div>
</div> </div>
</div> </div>
<div class="card-footer-action"> <div class="card-arrow">
<span>ROLE CARD</span> <span class="arrow-icon">&rarr;</span>
<span class="arrow">&rarr;</span>
<span v-if="hero.runtime" class="node-runtime">{{ hero.runtime }}</span>
</div> </div>
</article> </article>
</div> </div>
@@ -402,19 +403,20 @@ onUnmounted(() => {
<span class="card-role-tag" :style="{ background: `${agent.color}18`, color: agent.color, borderColor: `${agent.color}30` }">{{ agent.role }}</span> <span class="card-role-tag" :style="{ background: `${agent.color}18`, color: agent.color, borderColor: `${agent.color}30` }">{{ agent.role }}</span>
</div> </div>
<p class="card-desc">{{ agent.description }}</p> <p class="card-desc">{{ agent.description }}</p>
<span v-if="agent.task" class="node-task"> <div v-if="agent.task" class="task-row">
<span class="node-task-dot"></span> <span class="node-task">
{{ agent.task }} <span class="node-task-dot"></span>
</span> {{ agent.task }}
</span>
<span v-if="agent.runtime" class="node-runtime">{{ agent.runtime }}</span>
</div>
<div class="card-tags"> <div class="card-tags">
<span v-for="tag in agent.tags" :key="tag" class="card-tag" :style="{ background: `${agent.color}18`, color: agent.color }">{{ tag }}</span> <span v-for="tag in agent.tags" :key="tag" class="card-tag" :style="{ background: `${agent.color}18`, color: agent.color }">{{ tag }}</span>
</div> </div>
</div> </div>
</div> </div>
<div class="card-footer-action"> <div class="card-arrow">
<span>ROLE CARD</span> <span class="arrow-icon">&rarr;</span>
<span class="arrow">&rarr;</span>
<span v-if="agent.runtime" class="node-runtime">{{ agent.runtime }}</span>
</div> </div>
</article> </article>
</div> </div>
@@ -535,6 +537,38 @@ onUnmounted(() => {
line-height: 1.5; line-height: 1.5;
margin: 0 0 8px; margin: 0 0 8px;
} }
/* ── Task + Runtime Row ── */
.task-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
margin-bottom: 8px;
}
.node-task {
display: inline-flex;
align-items: center;
font-size: 10px;
color: #9ea5b3;
line-height: 1.4;
flex: 1;
min-width: 0;
}
.node-task-dot {
display: inline-block;
margin-right: 4px;
font-size: 8px;
vertical-align: middle;
}
.node-runtime {
font-size: 9px;
color: #6b7385;
font-variant-numeric: tabular-nums;
flex-shrink: 0;
}
/* ── Tags ── */
.card-tags { .card-tags {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
@@ -548,49 +582,25 @@ onUnmounted(() => {
border-radius: 5px; border-radius: 5px;
letter-spacing: 0.02em; letter-spacing: 0.02em;
} }
.card-footer-action {
display: flex; /* ── Hover Arrow (bottom-right) ── */
align-items: center; .card-arrow {
justify-content: flex-end; position: absolute;
gap: 6px; right: 12px;
margin-top: 12px; bottom: 12px;
padding-top: 10px;
border-top: 1px solid var(--line, #1f2330);
font-size: 9px;
font-weight: 600;
color: #6b7385; color: #6b7385;
text-transform: uppercase; opacity: 0;
letter-spacing: 0.06em; transform: translateX(-6px);
transition: opacity 0.2s ease, transform 0.2s ease;
} }
.card-footer-action .arrow { .agent-card:hover .card-arrow {
font-size: 13px; opacity: 1;
transform: translateX(0);
}
.arrow-icon {
font-size: 14px;
line-height: 1; line-height: 1;
}
.agent-card:hover .card-footer-action {
color: var(--card-color, #8b7cf6);
}
/* ── Node Task ── */
.node-task {
display: block; display: block;
font-size: 10px;
color: #9ea5b3;
margin-bottom: 8px;
line-height: 1.4;
}
.node-task-dot {
display: inline-block;
margin-right: 4px;
font-size: 8px;
vertical-align: middle;
}
/* ── Node Runtime ── */
.node-runtime {
font-size: 9px;
color: #6b7385;
font-variant-numeric: tabular-nums;
margin-left: auto;
} }
@media (max-width: 720px) { @media (max-width: 720px) {
+21 -55
View File
@@ -17,21 +17,19 @@ export interface AgentNodeData {
thinkingStream?: Array<{ time: string; text: string }> thinkingStream?: Array<{ time: string; text: string }>
} }
export interface MissionData { export interface OpenTask {
id: string id: string
name: string title: string
progress: number detail: string
currentTask: string source: 'bao' | 'iris'
lastActivity: string createdAt: string
remainingTasks: number
status: 'healthy' | 'attention' | 'blocked' | 'paused'
} }
export interface FeedEntry { export interface FeedEntry {
time: string time: string
agent: string agent: string
action: string action: string
timestamp: number timestamp: string
} }
export interface ChatMessage { export interface ChatMessage {
@@ -226,56 +224,24 @@ export function useDashboardData() {
}, },
]) ])
// Missions // Open Tasks
const missions = ref<MissionData[]>([ const openTasks = ref<OpenTask[]>([
{ { id: 't1', title: 'Agent Thinking Panel visualisieren', detail: 'Live-Animation der Denkprozesse im AgentModal', source: 'iris', createdAt: '22:30' },
id: 'dungeon-system', { id: 't2', title: 'CI/CD Pipeline Monitoring Dashboard', detail: 'Echtzeit-Status der Gitea Actions im Dashboard', source: 'iris', createdAt: '21:15' },
name: 'Dungeon System', { id: 't3', title: 'Dungeon System Dokumentation', detail: 'API-Doku für Room-Generation-Endpunkte schreiben', source: 'bao', createdAt: '20:00' },
progress: 62,
currentTask: 'Implement room generation',
lastActivity: '3 min ago',
remainingTasks: 8,
status: 'healthy',
},
{
id: 'dashboard-redesign',
name: 'Dashboard Redesign',
progress: 45,
currentTask: 'AI Team Network layout',
lastActivity: 'Just now',
remainingTasks: 6,
status: 'healthy',
},
{
id: 'infra-optimization',
name: 'Infra Optimization',
progress: 30,
currentTask: 'Optimize build caching',
lastActivity: '12 min ago',
remainingTasks: 4,
status: 'attention',
},
{
id: 'auth-system',
name: 'Auth System',
progress: 88,
currentTask: 'Finalize refresh token flow',
lastActivity: '45 min ago',
remainingTasks: 2,
status: 'healthy',
},
]) ])
// Feed // Feed
const ts = (offset: number) => new Date(now + offset).toISOString()
const feedEntries = ref<FeedEntry[]>([ const feedEntries = ref<FeedEntry[]>([
{ time: '20:42', agent: 'Developer', action: 'Created DungeonController endpoints', timestamp: now - 60000 }, { time: '22:50', agent: 'Developer', action: 'Created DungeonController endpoints', timestamp: ts(-120000) },
{ time: '20:38', agent: 'DevOps', action: 'Optimized Docker COPY order', timestamp: now - 300000 }, { time: '22:46', agent: 'DevOps', action: 'Optimized Docker COPY order for layer caching', timestamp: ts(-360000) },
{ time: '20:35', agent: 'Iris', action: 'Delegated room generation to Developer', timestamp: now - 540000 }, { time: '22:42', agent: 'Iris', action: 'Delegated room generation to Developer with spec', timestamp: ts(-600000) },
{ time: '20:28', agent: 'Researcher', action: 'Documented WebSocket vs SSE analysis', timestamp: now - 780000 }, { time: '22:35', agent: 'Researcher', action: 'Documented WebSocket vs SSE analysis results', timestamp: ts(-960000) },
{ time: '20:22', agent: 'Reviewer', action: 'Approved RoomValidator PR', timestamp: now - 900000 }, { time: '22:28', agent: 'Reviewer', action: 'Approved RoomValidator PR with minor fixes', timestamp: ts(-1200000) },
{ time: '20:15', agent: 'DevOps', action: 'Added .dockerignore for node_modules', timestamp: now - 1200000 }, { time: '22:18', agent: 'DevOps', action: 'Added .dockerignore for node_modules and build artifacts', timestamp: ts(-1500000) },
{ time: '20:08', agent: 'Iris', action: 'Broke down Dungeon System tasks', timestamp: now - 1500000 }, { time: '22:08', agent: 'Iris', action: 'Broke down Dungeon System tasks into sub-tasks', timestamp: ts(-1800000) },
{ time: '19:55', agent: 'Developer', action: 'Defined dungeon schema models', timestamp: now - 1800000 }, { time: '21:55', agent: 'Developer', action: 'Defined dungeon schema models with validation', timestamp: ts(-2400000) },
]) ])
// Chat // Chat
@@ -324,7 +290,7 @@ export function useDashboardData() {
return { return {
agents, agents,
missions, openTasks,
feedEntries, feedEntries,
chatMessages, chatMessages,
irisBusy, irisBusy,
+3 -4
View File
@@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { onMounted, onUnmounted, ref } from 'vue' import { onMounted, onUnmounted, ref } from 'vue'
import MissionCard from '../components/dashboard/MissionCard.vue' import TaskCard from '../components/dashboard/MissionCard.vue'
import OperationsFeed from '../components/dashboard/OperationsFeed.vue' import OperationsFeed from '../components/dashboard/OperationsFeed.vue'
import TeamNetwork from '../components/dashboard/TeamNetwork.vue' import TeamNetwork from '../components/dashboard/TeamNetwork.vue'
import ChatPanel from '../components/dashboard/ChatPanel.vue' import ChatPanel from '../components/dashboard/ChatPanel.vue'
@@ -10,7 +10,7 @@ import { useDashboardData } from '../composables/useDashboardData'
import type { AgentNodeData } from '../../composables/useDashboardData' import type { AgentNodeData } from '../../composables/useDashboardData'
const { const {
agents, missions, feedEntries, chatMessages, agents, openTasks, feedEntries, chatMessages,
irisBusy, irisFocus, irisRuntime, queue, irisBusy, irisFocus, irisRuntime, queue,
getAgentRuntime, startRuntime, stopRuntime, getAgentRuntime, startRuntime, stopRuntime,
sendChat, removeQueueItem, moveQueueItem, changeQueuePriority, sendChat, removeQueueItem, moveQueueItem, changeQueuePriority,
@@ -48,8 +48,7 @@ function onQueueExecuteNow(id: string): void {
<div class="dashboard"> <div class="dashboard">
<div class="col-left"> <div class="col-left">
<section class="missions-section"> <section class="missions-section">
<h2 class="column-title">Active Missions</h2> <TaskCard :tasks="openTasks" @new-task="console.log('New task requested')" />
<MissionCard v-for="m in missions" :key="m.id" :mission="m" />
</section> </section>
<OperationsFeed :entries="feedEntries" /> <OperationsFeed :entries="feedEntries" />
</div> </div>