Frontend: - Connect MetroMap to live Inertia props (replace hardcoded demo data) - Drill-down navigation via router.visit for project-level maps - Reactive breadcrumb based on map level - Empty state when no projects exist - Reusable Modal component with retro styling - ProjectForm and CommitmentForm with Inertia useForm - FormInput reusable component (text, date, textarea, select) - FloatingActions FAB button for creating projects/themes Backend: - CommitmentService + CommitmentController (CRUD, mark complete, overdue) - DocumentService + DocumentController (upload, download, delete) - MapController now passes users and speerpunten to frontend - 7 new routes (4 commitment, 3 document) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
226 lines
5.8 KiB
Vue
226 lines
5.8 KiB
Vue
<script setup>
|
|
import { ref, computed } from 'vue'
|
|
import { usePage, router } from '@inertiajs/vue3'
|
|
import MetroCanvas from '@/Components/MetroMap/MetroCanvas.vue'
|
|
import Breadcrumb from '@/Components/MetroMap/Breadcrumb.vue'
|
|
import NodePreview from '@/Components/MetroMap/NodePreview.vue'
|
|
import FloatingActions from '@/Components/MetroMap/FloatingActions.vue'
|
|
import ProjectForm from '@/Components/Forms/ProjectForm.vue'
|
|
import CommitmentForm from '@/Components/Forms/CommitmentForm.vue'
|
|
import CliBar from '@/Components/Cli/CliBar.vue'
|
|
|
|
const page = usePage()
|
|
|
|
const props = defineProps({
|
|
mapData: { type: Object, default: () => ({ lines: [], nodes: [], connections: [], level: 1 }) },
|
|
users: { type: Array, default: () => [] },
|
|
speerpunten: { type: Array, default: () => [] },
|
|
})
|
|
|
|
// Navigation state
|
|
const selectedNode = ref(null)
|
|
const showPreview = ref(false)
|
|
|
|
// Reactive breadcrumb based on mapData level and project
|
|
const breadcrumbPath = computed(() => {
|
|
const level = props.mapData.level ?? 1
|
|
const project = props.mapData.project ?? null
|
|
const path = [{ label: 'Strategie', level: 1, data: null }]
|
|
if (level === 2 && project) {
|
|
path.push({ label: project.name ?? project, level: 2, data: project })
|
|
}
|
|
return path
|
|
})
|
|
|
|
// Handlers
|
|
const handleNodeClick = (node) => {
|
|
selectedNode.value = node
|
|
showPreview.value = true
|
|
}
|
|
|
|
const handleNodeHover = (node) => {
|
|
// Could highlight related nodes/connections
|
|
}
|
|
|
|
const handleNodeLeave = () => {
|
|
// Reset highlights
|
|
}
|
|
|
|
const handleZoomIn = (node) => {
|
|
showPreview.value = false
|
|
if (node.entityType === 'project') {
|
|
router.visit(`/map/project/${node.entityId}`)
|
|
}
|
|
}
|
|
|
|
const handleBreadcrumbNavigate = (item, index) => {
|
|
showPreview.value = false
|
|
selectedNode.value = null
|
|
if (index === 0) {
|
|
router.visit('/map')
|
|
}
|
|
}
|
|
|
|
const handleCliCommand = (command) => {
|
|
console.log('CLI command:', command)
|
|
// Will be connected to AI service
|
|
}
|
|
|
|
const logout = () => {
|
|
router.post('/logout')
|
|
}
|
|
|
|
const user = computed(() => page.props.auth?.user)
|
|
|
|
const hasNodes = computed(() => props.mapData.nodes && props.mapData.nodes.length > 0)
|
|
|
|
// Modal state
|
|
const showProjectForm = ref(false)
|
|
const showCommitmentForm = ref(false)
|
|
const editingProject = ref(null)
|
|
|
|
const handleCreateProject = () => {
|
|
editingProject.value = null
|
|
showProjectForm.value = true
|
|
}
|
|
|
|
const handleCreateCommitment = () => {
|
|
showCommitmentForm.value = true
|
|
}
|
|
|
|
// Get current project ID when at level 2
|
|
const currentProjectId = computed(() => props.mapData.project?.id ?? null)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="metro-map-page">
|
|
<!-- Top bar: breadcrumb left, user/logout right -->
|
|
<div class="top-bar">
|
|
<Breadcrumb
|
|
:path="breadcrumbPath"
|
|
@navigate="handleBreadcrumbNavigate"
|
|
/>
|
|
<div class="user-controls">
|
|
<span v-if="user" class="user-name">{{ user.name }}</span>
|
|
<button @click="logout" class="logout-btn">[LOGOUT]</button>
|
|
</div>
|
|
</div>
|
|
|
|
<template v-if="hasNodes">
|
|
<MetroCanvas
|
|
:nodes="props.mapData.nodes"
|
|
:lines="props.mapData.lines"
|
|
:connections="props.mapData.connections"
|
|
:current-level="props.mapData.level ?? 1"
|
|
@node-click="handleNodeClick"
|
|
@node-hover="handleNodeHover"
|
|
@node-leave="handleNodeLeave"
|
|
/>
|
|
|
|
<NodePreview
|
|
:node="selectedNode"
|
|
:visible="showPreview"
|
|
@close="showPreview = false"
|
|
@zoom-in="handleZoomIn"
|
|
/>
|
|
</template>
|
|
|
|
<div v-else class="empty-state">
|
|
<span class="empty-message">Nog geen projecten. Gebruik het + icoon om een thema toe te voegen.</span>
|
|
</div>
|
|
|
|
<FloatingActions
|
|
@create-project="handleCreateProject"
|
|
@create-theme="handleCreateProject"
|
|
/>
|
|
|
|
<ProjectForm
|
|
:show="showProjectForm"
|
|
:project="editingProject"
|
|
:speerpunten="speerpunten"
|
|
@close="showProjectForm = false"
|
|
/>
|
|
|
|
<CommitmentForm
|
|
v-if="currentProjectId"
|
|
:show="showCommitmentForm"
|
|
:project-id="currentProjectId"
|
|
:users="users"
|
|
@close="showCommitmentForm = false"
|
|
/>
|
|
|
|
<CliBar @command="handleCliCommand" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.metro-map-page {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background: #1a1a2e;
|
|
}
|
|
|
|
.top-bar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 50;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px 16px;
|
|
background: rgba(26, 26, 46, 0.85);
|
|
border-bottom: 1px solid rgba(0, 210, 255, 0.15);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.user-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.user-name {
|
|
font-family: 'VT323', monospace;
|
|
font-size: 16px;
|
|
color: #8892b0;
|
|
}
|
|
|
|
.logout-btn {
|
|
font-family: 'VT323', monospace;
|
|
font-size: 14px;
|
|
color: #e94560;
|
|
background: none;
|
|
border: 1px solid rgba(233, 69, 96, 0.3);
|
|
padding: 4px 10px;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.logout-btn:hover {
|
|
background: rgba(233, 69, 96, 0.15);
|
|
border-color: #e94560;
|
|
box-shadow: 0 0 10px rgba(233, 69, 96, 0.2);
|
|
}
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
padding-top: 48px; /* account for top-bar */
|
|
}
|
|
|
|
.empty-message {
|
|
font-family: 'VT323', monospace;
|
|
font-size: 20px;
|
|
color: #8892b0;
|
|
text-align: center;
|
|
opacity: 0.7;
|
|
}
|
|
</style>
|