Compare commits
1 Commits
dev
...
3a0d9cb7ce
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a0d9cb7ce |
45
.env.example
45
.env.example
@@ -1,45 +0,0 @@
|
|||||||
# Control Center - Environment Variables
|
|
||||||
# ======================================
|
|
||||||
|
|
||||||
# ── Backend Variables ───────────────────────────────────────────────────
|
|
||||||
# Server configuration
|
|
||||||
PORT=8080
|
|
||||||
CORS_ORIGIN=http://localhost:3000
|
|
||||||
LOG_LEVEL=info
|
|
||||||
ENVIRONMENT=development
|
|
||||||
|
|
||||||
# Database connection (PostgreSQL DSN)
|
|
||||||
# Format: postgresql://user:password@host:port/database?sslmode=disable
|
|
||||||
DATABASE_URL=postgresql://controlcenter:controlcenter@localhost:5432/controlcenter?sslmode=disable
|
|
||||||
|
|
||||||
# Gateway (OpenClaw) connection
|
|
||||||
# URL to the OpenClaw gateway API for polling agent states
|
|
||||||
GATEWAY_URL=http://localhost:18789/api/agents
|
|
||||||
# Polling interval for agent state updates
|
|
||||||
GATEWAY_POLL_INTERVAL=5s
|
|
||||||
|
|
||||||
# ── Frontend Variables (via Vite) ───────────────────────────────────────
|
|
||||||
# The Vite config exposes these as import.meta.env.VITE_*
|
|
||||||
# Set via environment variable when building: VITE_API_URL
|
|
||||||
# VITE_API_URL=http://localhost:8080
|
|
||||||
|
|
||||||
# ── Docker Compose Specific ─────────────────────────────────────────────
|
|
||||||
# When using docker-compose, these are set in the services section
|
|
||||||
# See docker-compose.yml for service-specific environment variables
|
|
||||||
|
|
||||||
# ── Database Configuration ─────────────────────────────────────────────
|
|
||||||
# Set in the db service environment section of docker-compose.yml
|
|
||||||
# POSTGRES_USER=controlcenter
|
|
||||||
# POSTGRES_PASSWORD=controlcenter
|
|
||||||
# POSTGRES_DB=controlcenter
|
|
||||||
|
|
||||||
# ── Development Notes ───────────────────────────────────────────────────
|
|
||||||
# For local development without Docker:
|
|
||||||
# 1. Start PostgreSQL locally
|
|
||||||
# 2. Run: go run ./cmd/server/main.go
|
|
||||||
# 3. Run: npm run dev in frontend/
|
|
||||||
#
|
|
||||||
# For Docker deployment:
|
|
||||||
# 1. Copy .env.example to .env (backend only)
|
|
||||||
# 2. Run: docker compose up -d
|
|
||||||
# 3. Access frontend at http://localhost:3000
|
|
||||||
@@ -1,268 +0,0 @@
|
|||||||
# Control Center Deployment Guide
|
|
||||||
|
|
||||||
This document covers the Docker Compose deployment and kiosk configuration for the Control Center Go + React application.
|
|
||||||
|
|
||||||
## Quick Start
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Start all services (backend, frontend, database)
|
|
||||||
docker compose up -d
|
|
||||||
|
|
||||||
# View logs
|
|
||||||
docker compose logs -f
|
|
||||||
|
|
||||||
# Stop all services
|
|
||||||
docker compose down
|
|
||||||
|
|
||||||
# Stop and remove volumes (database data)
|
|
||||||
docker compose down -v
|
|
||||||
```
|
|
||||||
|
|
||||||
## Architecture
|
|
||||||
|
|
||||||
```
|
|
||||||
┌─────────────────┐
|
|
||||||
│ Frontend │ Port 3000 (host) → 80 (container)
|
|
||||||
│ React + nginx │ Serves SPA, proxies /api/ to backend
|
|
||||||
└────────┬────────┘
|
|
||||||
│
|
|
||||||
│ HTTP
|
|
||||||
│
|
|
||||||
┌────────▼────────┐
|
|
||||||
│ Backend │ Port 8080 (host) → 8080 (container)
|
|
||||||
│ Go HTTP API │ PostgreSQL-backed REST API
|
|
||||||
└────────┬────────┘
|
|
||||||
│
|
|
||||||
│ PostgreSQL
|
|
||||||
│
|
|
||||||
┌────────▼────────┐
|
|
||||||
│ PostgreSQL │ Port 5432 (internal only)
|
|
||||||
│ Database │ Persistent volume at /var/lib/postgresql/data
|
|
||||||
└─────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
## Services
|
|
||||||
|
|
||||||
### Backend (`go-backend`)
|
|
||||||
|
|
||||||
- **Image**: Custom `alpine:latest` with Go binary
|
|
||||||
- **Port**: 8080
|
|
||||||
- **Build**: Multi-stage from `go-backend/Dockerfile`
|
|
||||||
- **Environment Variables**:
|
|
||||||
- `PORT` (default: 8080)
|
|
||||||
- `DATABASE_URL` (PostgreSQL DSN)
|
|
||||||
- `CORS_ORIGIN` (default: `*`)
|
|
||||||
- `LOG_LEVEL` (default: `info`)
|
|
||||||
- `ENVIRONMENT` (default: `development`)
|
|
||||||
- `GATEWAY_URL` (OpenClaw gateway endpoint)
|
|
||||||
|
|
||||||
### Frontend (`frontend`)
|
|
||||||
|
|
||||||
- **Image**: `nginx:1.27-alpine`
|
|
||||||
- **Port**: 80 (internal) → 3000 (host)
|
|
||||||
- **Build**: Multi-stage from `frontend/Dockerfile`
|
|
||||||
- Node 22 for build
|
|
||||||
- Nginx 1.27 for serving
|
|
||||||
- **Config**: Custom nginx config in `frontend/nginx.conf`
|
|
||||||
- **Environment Variables**:
|
|
||||||
- `VITE_API_URL` (passed at build time via Vite config)
|
|
||||||
|
|
||||||
### Database (`db`)
|
|
||||||
|
|
||||||
- **Image**: `postgres:16-alpine`
|
|
||||||
- **Port**: 5432 (internal only)
|
|
||||||
- **Volume**: `postgres-data:/var/lib/postgresql/data`
|
|
||||||
- **Environment Variables**:
|
|
||||||
- `POSTGRES_USER` (default: `controlcenter`)
|
|
||||||
- `POSTGRES_PASSWORD` (default: `controlcenter`)
|
|
||||||
- `POSTGRES_DB` (default: `controlcenter`)
|
|
||||||
|
|
||||||
## Kiosk Mode
|
|
||||||
|
|
||||||
For dedicated display installations (e.g., control center dashboard), Chromium can run in kiosk mode.
|
|
||||||
|
|
||||||
### Installation
|
|
||||||
|
|
||||||
1. **Install the systemd service** (on Debian/Ubuntu with systemd):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo cp kiosk/control-center-kiosk.service /etc/systemd/system/
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Enable auto-start**:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo systemctl enable control-center-kiosk
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Start the service**:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo systemctl start control-center-kiosk
|
|
||||||
```
|
|
||||||
|
|
||||||
4. **Check status and logs**:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo systemctl status control-center-kiosk
|
|
||||||
sudo journalctl -u control-center-kiosk -f
|
|
||||||
```
|
|
||||||
|
|
||||||
### Manual Launch
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# From project root
|
|
||||||
./kiosk/start-kiosk.sh http://localhost:3000
|
|
||||||
```
|
|
||||||
|
|
||||||
### Uninstall
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Stop and disable service
|
|
||||||
sudo systemctl stop control-center-kiosk
|
|
||||||
sudo systemctl disable control-center-kiosk
|
|
||||||
sudo rm /etc/systemd/system/control-center-kiosk.service
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
```
|
|
||||||
|
|
||||||
### Kiosk Requirements
|
|
||||||
|
|
||||||
- **Browser**: `chromium-browser` (install via `apt-get install chromium`)
|
|
||||||
- **Display**: X11 session with `DISPLAY=:0`
|
|
||||||
- **User**: Must run as a user with X11 access (typically `overseer`)
|
|
||||||
- **Permissions**: Read access to the project directory
|
|
||||||
|
|
||||||
## Environment Variables Reference
|
|
||||||
|
|
||||||
### Backend (`go-backend/.env`)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
PORT=8080
|
|
||||||
DATABASE_URL=postgresql://controlcenter:controlcenter@localhost:5432/controlcenter?sslmode=disable
|
|
||||||
CORS_ORIGIN=*
|
|
||||||
LOG_LEVEL=info
|
|
||||||
ENVIRONMENT=development
|
|
||||||
GATEWAY_URL=http://localhost:18789/api/agents
|
|
||||||
GATEWAY_POLL_INTERVAL=5s
|
|
||||||
```
|
|
||||||
|
|
||||||
### Frontend (build-time)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
VITE_API_URL=http://localhost:8080
|
|
||||||
```
|
|
||||||
|
|
||||||
### Docker Compose
|
|
||||||
|
|
||||||
Set via `services.<name>.environment` in `docker-compose.yml`:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
services:
|
|
||||||
backend:
|
|
||||||
environment:
|
|
||||||
- DATABASE_URL=...
|
|
||||||
frontend:
|
|
||||||
environment:
|
|
||||||
- VITE_API_URL=...
|
|
||||||
db:
|
|
||||||
environment:
|
|
||||||
- POSTGRES_USER=...
|
|
||||||
- POSTGRES_PASSWORD=...
|
|
||||||
- POSTGRES_DB=...
|
|
||||||
```
|
|
||||||
|
|
||||||
## Development
|
|
||||||
|
|
||||||
### Local Development (non-Docker)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Backend
|
|
||||||
cd go-backend
|
|
||||||
go run ./cmd/server/main.go
|
|
||||||
|
|
||||||
# Frontend
|
|
||||||
cd frontend
|
|
||||||
npm install
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### Database Migrations
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# If using pgx/migrate or similar
|
|
||||||
# The database is created automatically on first connection if it doesn't exist
|
|
||||||
```
|
|
||||||
|
|
||||||
## Troubleshooting
|
|
||||||
|
|
||||||
### Backend won't connect to database
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Check database container status
|
|
||||||
docker compose ps
|
|
||||||
|
|
||||||
# View database logs
|
|
||||||
docker compose logs db
|
|
||||||
|
|
||||||
# Test database connectivity from backend
|
|
||||||
docker compose exec backend ping db
|
|
||||||
```
|
|
||||||
|
|
||||||
### Frontend can't reach backend
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Check network connectivity
|
|
||||||
docker compose exec frontend ping backend
|
|
||||||
|
|
||||||
# Verify backend is running
|
|
||||||
docker compose logs backend
|
|
||||||
```
|
|
||||||
|
|
||||||
### Kiosk browser won't start
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Check Chromium installation
|
|
||||||
which chromium-browser
|
|
||||||
|
|
||||||
# Check X11 forwarding
|
|
||||||
echo $DISPLAY
|
|
||||||
|
|
||||||
# Manual launch for debugging
|
|
||||||
./kiosk/start-kiosk.sh http://localhost:3000
|
|
||||||
```
|
|
||||||
|
|
||||||
### Port conflicts
|
|
||||||
|
|
||||||
If ports 8080, 3000, or 5432 are already in use, modify `docker-compose.yml`:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
services:
|
|
||||||
backend:
|
|
||||||
ports:
|
|
||||||
- "8081:8080" # Change host port
|
|
||||||
frontend:
|
|
||||||
ports:
|
|
||||||
- "3001:80" # Change host port
|
|
||||||
```
|
|
||||||
|
|
||||||
## Production Considerations
|
|
||||||
|
|
||||||
1. **HTTPS**: Add a reverse proxy (nginx/Traefik) for SSL termination
|
|
||||||
2. **Database security**: Use strong passwords, enable SSL
|
|
||||||
3. **CORS**: Restrict `CORS_ORIGIN` to production domain
|
|
||||||
4. **Logs**: Configure log aggregation (e.g., ELK, Loki)
|
|
||||||
5. **Backups**: Regular PostgreSQL volume backups
|
|
||||||
6. **Monitoring**: Add health checks and alerting
|
|
||||||
|
|
||||||
## Files
|
|
||||||
|
|
||||||
| File/Directory | Purpose |
|
|
||||||
|----------------|---------|
|
|
||||||
| `docker-compose.yml` | Service definitions and configuration |
|
|
||||||
| `.env.example` | Environment variable template |
|
|
||||||
| `go-backend/Dockerfile` | Backend build definition |
|
|
||||||
| `frontend/Dockerfile` | Frontend build definition |
|
|
||||||
| `frontend/nginx.conf` | Nginx config for SPA routing |
|
|
||||||
| `kiosk/start-kiosk.sh` | Kiosk browser startup script |
|
|
||||||
| `kiosk/control-center-kiosk.service` | Systemd unit for auto-start |
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
// Package models defines the database entities for the Control Center Go backend.
|
|
||||||
// Structs map 1:1 to the PostgreSQL schema defined in backend/migrations/.
|
|
||||||
package models
|
|
||||||
|
|
||||||
import (
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/jackc/pgx/v5/pgtype"
|
|
||||||
)
|
|
||||||
|
|
||||||
// AgentStatus represents the possible lifecycle states of an agent.
|
|
||||||
type AgentStatus string
|
|
||||||
|
|
||||||
const (
|
|
||||||
AgentStatusActive AgentStatus = "active"
|
|
||||||
AgentStatusIdle AgentStatus = "idle"
|
|
||||||
AgentStatusThinking AgentStatus = "thinking"
|
|
||||||
AgentStatusError AgentStatus = "error"
|
|
||||||
AgentStatusOffline AgentStatus = "offline"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Agent represents a registered agent and its current state.
|
|
||||||
type Agent struct {
|
|
||||||
ID pgtype.UUID `db:"id" json:"id"`
|
|
||||||
Name string `db:"name" json:"name"`
|
|
||||||
Status AgentStatus `db:"status" json:"status"`
|
|
||||||
Task *string `db:"task" json:"task,omitempty"`
|
|
||||||
Progress int32 `db:"progress" json:"progress"`
|
|
||||||
SessionKey *string `db:"session_key" json:"session_key,omitempty"`
|
|
||||||
Channel *string `db:"channel" json:"channel,omitempty"`
|
|
||||||
LastActivity time.Time `db:"last_activity" json:"last_activity"`
|
|
||||||
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
||||||
UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// SessionStatus represents the possible states of an agent session.
|
|
||||||
type SessionStatus string
|
|
||||||
|
|
||||||
const (
|
|
||||||
SessionStatusRunning SessionStatus = "running"
|
|
||||||
SessionStatusCompleted SessionStatus = "completed"
|
|
||||||
SessionStatusCrashed SessionStatus = "crashed"
|
|
||||||
SessionStatusTerminated SessionStatus = "terminated"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Session tracks an agent session over time.
|
|
||||||
type Session struct {
|
|
||||||
ID pgtype.UUID `db:"id" json:"id"`
|
|
||||||
AgentID pgtype.UUID `db:"agent_id" json:"agent_id"`
|
|
||||||
StartedAt time.Time `db:"started_at" json:"started_at"`
|
|
||||||
EndedAt *time.Time `db:"ended_at" json:"ended_at,omitempty"`
|
|
||||||
Status SessionStatus `db:"status" json:"status"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// TaskLogStatus represents the possible states of a task log entry.
|
|
||||||
type TaskLogStatus string
|
|
||||||
|
|
||||||
const (
|
|
||||||
TaskLogStatusPending TaskLogStatus = "pending"
|
|
||||||
TaskLogStatusRunning TaskLogStatus = "running"
|
|
||||||
TaskLogStatusCompleted TaskLogStatus = "completed"
|
|
||||||
TaskLogStatusFailed TaskLogStatus = "failed"
|
|
||||||
TaskLogStatusCancelled TaskLogStatus = "cancelled"
|
|
||||||
)
|
|
||||||
|
|
||||||
// TaskLog records a historical task assigned to an agent.
|
|
||||||
type TaskLog struct {
|
|
||||||
ID pgtype.UUID `db:"id" json:"id"`
|
|
||||||
AgentID pgtype.UUID `db:"agent_id" json:"agent_id"`
|
|
||||||
Task string `db:"task" json:"task"`
|
|
||||||
Status TaskLogStatus `db:"status" json:"status"`
|
|
||||||
StartedAt time.Time `db:"started_at" json:"started_at"`
|
|
||||||
CompletedAt *time.Time `db:"completed_at" json:"completed_at,omitempty"`
|
|
||||||
ErrorMessage *string `db:"error_message" json:"error_message,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// ProjectStatus represents the possible states of a project.
|
|
||||||
type ProjectStatus string
|
|
||||||
|
|
||||||
const (
|
|
||||||
ProjectStatusPlanned ProjectStatus = "planned"
|
|
||||||
ProjectStatusInProgress ProjectStatus = "in_progress"
|
|
||||||
ProjectStatusCompleted ProjectStatus = "completed"
|
|
||||||
ProjectStatusPaused ProjectStatus = "paused"
|
|
||||||
ProjectStatusCancelled ProjectStatus = "cancelled"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Project represents a project managed by the Control Center.
|
|
||||||
type Project struct {
|
|
||||||
ID pgtype.UUID `db:"id" json:"id"`
|
|
||||||
Name string `db:"name" json:"name"`
|
|
||||||
Description *string `db:"description" json:"description,omitempty"`
|
|
||||||
Status ProjectStatus `db:"status" json:"status"`
|
|
||||||
AgentID *pgtype.UUID `db:"agent_id" json:"agent_id,omitempty"`
|
|
||||||
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
||||||
UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// AgentEvent represents an event in the agent lifecycle or telemetry stream.
|
|
||||||
type AgentEvent struct {
|
|
||||||
ID pgtype.UUID `db:"id" json:"id"`
|
|
||||||
AgentID pgtype.UUID `db:"agent_id" json:"agent_id"`
|
|
||||||
EventType string `db:"event_type" json:"event_type"`
|
|
||||||
Payload *map[string]interface{} `db:"payload" json:"payload,omitempty"`
|
|
||||||
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
-- Migration: 001_initial_schema (down)
|
|
||||||
-- Description: Reverts the core Control Center database schema.
|
|
||||||
|
|
||||||
-- Drop in reverse dependency order to avoid FK conflicts
|
|
||||||
DROP TABLE IF EXISTS agent_events;
|
|
||||||
DROP TABLE IF EXISTS task_logs;
|
|
||||||
DROP TABLE IF EXISTS sessions;
|
|
||||||
DROP TABLE IF EXISTS projects;
|
|
||||||
DROP TABLE IF EXISTS agents;
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
-- Migration: 001_initial_schema
|
|
||||||
-- Description: Creates the core Control Center database schema.
|
|
||||||
|
|
||||||
-- Enable UUID extension
|
|
||||||
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
|
|
||||||
|
|
||||||
-- ============================================
|
|
||||||
-- Table: agents
|
|
||||||
-- ============================================
|
|
||||||
CREATE TABLE agents (
|
|
||||||
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
||||||
name TEXT NOT NULL,
|
|
||||||
status TEXT NOT NULL DEFAULT 'idle'
|
|
||||||
CHECK (status IN ('active', 'idle', 'thinking', 'error', 'offline')),
|
|
||||||
task TEXT,
|
|
||||||
progress INT NOT NULL DEFAULT 0
|
|
||||||
CHECK (progress >= 0 AND progress <= 100),
|
|
||||||
session_key TEXT,
|
|
||||||
channel TEXT,
|
|
||||||
last_activity TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
|
||||||
);
|
|
||||||
|
|
||||||
COMMENT ON TABLE agents IS 'Registered agents and their current state';
|
|
||||||
COMMENT ON COLUMN agents.status IS 'Agent lifecycle status: active, idle, thinking, error, offline';
|
|
||||||
|
|
||||||
-- ============================================
|
|
||||||
-- Table: sessions
|
|
||||||
-- ============================================
|
|
||||||
CREATE TABLE sessions (
|
|
||||||
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
||||||
agent_id UUID NOT NULL,
|
|
||||||
started_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
ended_at TIMESTAMPTZ,
|
|
||||||
status TEXT NOT NULL DEFAULT 'running'
|
|
||||||
CHECK (status IN ('running', 'completed', 'crashed', 'terminated')),
|
|
||||||
CONSTRAINT fk_sessions_agent
|
|
||||||
FOREIGN KEY (agent_id) REFERENCES agents(id)
|
|
||||||
ON DELETE CASCADE
|
|
||||||
);
|
|
||||||
|
|
||||||
COMMENT ON TABLE sessions IS 'Agent session history';
|
|
||||||
|
|
||||||
-- ============================================
|
|
||||||
-- Table: task_logs
|
|
||||||
-- ============================================
|
|
||||||
CREATE TABLE task_logs (
|
|
||||||
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
||||||
agent_id UUID NOT NULL,
|
|
||||||
task TEXT NOT NULL,
|
|
||||||
status TEXT NOT NULL DEFAULT 'pending'
|
|
||||||
CHECK (status IN ('pending', 'running', 'completed', 'failed', 'cancelled')),
|
|
||||||
started_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
completed_at TIMESTAMPTZ,
|
|
||||||
error_message TEXT,
|
|
||||||
CONSTRAINT fk_task_logs_agent
|
|
||||||
FOREIGN KEY (agent_id) REFERENCES agents(id)
|
|
||||||
ON DELETE CASCADE
|
|
||||||
);
|
|
||||||
|
|
||||||
COMMENT ON TABLE task_logs IS 'Historical record of tasks assigned to agents';
|
|
||||||
|
|
||||||
-- ============================================
|
|
||||||
-- Table: projects
|
|
||||||
-- ============================================
|
|
||||||
CREATE TABLE projects (
|
|
||||||
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
||||||
name TEXT NOT NULL,
|
|
||||||
description TEXT,
|
|
||||||
status TEXT NOT NULL DEFAULT 'planned'
|
|
||||||
CHECK (status IN ('planned', 'in_progress', 'completed', 'paused', 'cancelled')),
|
|
||||||
agent_id UUID,
|
|
||||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
CONSTRAINT fk_projects_agent
|
|
||||||
FOREIGN KEY (agent_id) REFERENCES agents(id)
|
|
||||||
ON DELETE SET NULL
|
|
||||||
);
|
|
||||||
|
|
||||||
COMMENT ON TABLE projects IS 'Projects managed by the Control Center';
|
|
||||||
|
|
||||||
-- ============================================
|
|
||||||
-- Table: agent_events
|
|
||||||
-- ============================================
|
|
||||||
CREATE TABLE agent_events (
|
|
||||||
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
||||||
agent_id UUID NOT NULL,
|
|
||||||
event_type TEXT NOT NULL,
|
|
||||||
payload JSONB,
|
|
||||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
||||||
CONSTRAINT fk_agent_events_agent
|
|
||||||
FOREIGN KEY (agent_id) REFERENCES agents(id)
|
|
||||||
ON DELETE CASCADE
|
|
||||||
);
|
|
||||||
|
|
||||||
COMMENT ON TABLE agent_events IS 'Event stream for agent lifecycle and telemetry';
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
-- Migration: 002_add_indexes (down)
|
|
||||||
-- Description: Remove all indexes added in 002_add_indexes.
|
|
||||||
|
|
||||||
DROP INDEX IF EXISTS idx_agents_status;
|
|
||||||
DROP INDEX IF EXISTS idx_agents_last_activity;
|
|
||||||
DROP INDEX IF EXISTS idx_agents_created_at;
|
|
||||||
|
|
||||||
DROP INDEX IF EXISTS idx_sessions_agent_id;
|
|
||||||
DROP INDEX IF EXISTS idx_sessions_status;
|
|
||||||
DROP INDEX IF EXISTS idx_sessions_started_at;
|
|
||||||
|
|
||||||
DROP INDEX IF EXISTS idx_task_logs_agent_started;
|
|
||||||
DROP INDEX IF EXISTS idx_task_logs_status;
|
|
||||||
|
|
||||||
DROP INDEX IF EXISTS idx_agent_events_agent_created;
|
|
||||||
DROP INDEX IF EXISTS idx_agent_events_event_type;
|
|
||||||
|
|
||||||
DROP INDEX IF EXISTS idx_projects_status;
|
|
||||||
DROP INDEX IF EXISTS idx_projects_agent_id;
|
|
||||||
DROP INDEX IF EXISTS idx_projects_created;
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
-- Migration: 002_add_indexes
|
|
||||||
-- Description: Add performance indexes for common query patterns.
|
|
||||||
|
|
||||||
-- agents: status filtering, activity ordering
|
|
||||||
CREATE INDEX idx_agents_status ON agents(status);
|
|
||||||
CREATE INDEX idx_agents_last_activity ON agents(last_activity DESC);
|
|
||||||
CREATE INDEX idx_agents_created_at ON agents(created_at DESC);
|
|
||||||
|
|
||||||
-- sessions: agent session lookups, active session checks
|
|
||||||
CREATE INDEX idx_sessions_agent_id ON sessions(agent_id);
|
|
||||||
CREATE INDEX idx_sessions_status ON sessions(status);
|
|
||||||
CREATE INDEX idx_sessions_started_at ON sessions(started_at DESC);
|
|
||||||
|
|
||||||
-- task_logs: agent task history, chronological ordering
|
|
||||||
CREATE INDEX idx_task_logs_agent_started ON task_logs(agent_id, started_at DESC);
|
|
||||||
CREATE INDEX idx_task_logs_status ON task_logs(status);
|
|
||||||
|
|
||||||
-- agent_events: event stream queries
|
|
||||||
CREATE INDEX idx_agent_events_agent_created ON agent_events(agent_id, created_at DESC);
|
|
||||||
CREATE INDEX idx_agent_events_event_type ON agent_events(event_type);
|
|
||||||
|
|
||||||
-- projects: status filtering, agent assignment
|
|
||||||
CREATE INDEX idx_projects_status ON projects(status);
|
|
||||||
CREATE INDEX idx_projects_agent_id ON projects(agent_id);
|
|
||||||
CREATE INDEX idx_projects_created ON projects(created_at DESC);
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
# Control Center - Go + React + PostgreSQL Deployment
|
|
||||||
# ============================================================
|
|
||||||
|
|
||||||
services:
|
|
||||||
# ── Backend Service (Go) ───────────────────────────────────────────────
|
|
||||||
backend:
|
|
||||||
build:
|
|
||||||
context: ./go-backend
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
ports:
|
|
||||||
- "8080:8080"
|
|
||||||
environment:
|
|
||||||
- DATABASE_URL=postgresql://controlcenter:controlcenter@db:5432/controlcenter?sslmode=disable
|
|
||||||
- CORS_ORIGIN=http://localhost:3000
|
|
||||||
- LOG_LEVEL=info
|
|
||||||
- ENVIRONMENT=production
|
|
||||||
- PORT=8080
|
|
||||||
- GATEWAY_URL=http://host.docker.internal:18789/api/agents
|
|
||||||
depends_on:
|
|
||||||
db:
|
|
||||||
condition: service_healthy
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "wget", "-qO-", "http://localhost:8080/health"]
|
|
||||||
interval: 30s
|
|
||||||
timeout: 10s
|
|
||||||
retries: 3
|
|
||||||
start_period: 10s
|
|
||||||
networks:
|
|
||||||
- control-center-network
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
# ── Frontend Service (React) ───────────────────────────────────────────
|
|
||||||
frontend:
|
|
||||||
build:
|
|
||||||
context: ./frontend
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
ports:
|
|
||||||
- "3000:80"
|
|
||||||
depends_on:
|
|
||||||
- backend
|
|
||||||
environment:
|
|
||||||
- VITE_API_URL=http://localhost:8080
|
|
||||||
networks:
|
|
||||||
- control-center-network
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
# ── Database Service (PostgreSQL 16) ───────────────────────────────────
|
|
||||||
db:
|
|
||||||
image: postgres:16-alpine
|
|
||||||
container_name: control-center-db
|
|
||||||
environment:
|
|
||||||
- POSTGRES_USER=controlcenter
|
|
||||||
- POSTGRES_PASSWORD=controlcenter
|
|
||||||
- POSTGRES_DB=controlcenter
|
|
||||||
volumes:
|
|
||||||
- postgres-data:/var/lib/postgresql/data
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -U controlcenter -d controlcenter"]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
start_period: 10s
|
|
||||||
networks:
|
|
||||||
- control-center-network
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
networks:
|
|
||||||
control-center-network:
|
|
||||||
driver: bridge
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
postgres-data:
|
|
||||||
44
frontend-legacy/.gitignore
vendored
44
frontend-legacy/.gitignore
vendored
@@ -1,44 +0,0 @@
|
|||||||
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
|
||||||
|
|
||||||
# Compiled output
|
|
||||||
/dist
|
|
||||||
/tmp
|
|
||||||
/out-tsc
|
|
||||||
/bazel-out
|
|
||||||
|
|
||||||
# Node
|
|
||||||
/node_modules
|
|
||||||
npm-debug.log
|
|
||||||
yarn-error.log
|
|
||||||
|
|
||||||
# IDEs and editors
|
|
||||||
.idea/
|
|
||||||
.project
|
|
||||||
.classpath
|
|
||||||
.c9/
|
|
||||||
*.launch
|
|
||||||
.settings/
|
|
||||||
*.sublime-workspace
|
|
||||||
|
|
||||||
# Visual Studio Code
|
|
||||||
.vscode/*
|
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
|
||||||
!.vscode/mcp.json
|
|
||||||
.history/*
|
|
||||||
|
|
||||||
# Miscellaneous
|
|
||||||
/.angular/cache
|
|
||||||
.sass-cache/
|
|
||||||
/connect.lock
|
|
||||||
/coverage
|
|
||||||
/libpeerconnection.log
|
|
||||||
testem.log
|
|
||||||
/typings
|
|
||||||
__screenshots__/
|
|
||||||
|
|
||||||
# System files
|
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
# ============================================================
|
|
||||||
# Control Center Frontend — Multi-stage Docker Build
|
|
||||||
# Angular 21 + nginx for static serving + API proxy
|
|
||||||
# ============================================================
|
|
||||||
|
|
||||||
# --- Build Stage ---
|
|
||||||
FROM node:22-slim AS builder
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# Install dependencies first (layer caching)
|
|
||||||
COPY package.json package-lock.json ./
|
|
||||||
RUN npm ci
|
|
||||||
|
|
||||||
# Copy source and build production bundle
|
|
||||||
COPY . .
|
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
# --- Runtime Stage ---
|
|
||||||
FROM nginx:1.27-alpine AS runtime
|
|
||||||
|
|
||||||
# Remove default nginx config
|
|
||||||
RUN rm /etc/nginx/conf.d/default.conf
|
|
||||||
|
|
||||||
# Copy custom nginx config
|
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
||||||
|
|
||||||
# Copy built Angular app from builder stage
|
|
||||||
COPY --from=builder /app/dist/frontend/browser /usr/share/nginx/html
|
|
||||||
|
|
||||||
# Expose HTTP port
|
|
||||||
EXPOSE 80
|
|
||||||
|
|
||||||
# Health check — confirm nginx is serving
|
|
||||||
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
|
||||||
CMD wget -qO- http://localhost/ || exit 1
|
|
||||||
|
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
# Frontend
|
|
||||||
|
|
||||||
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.2.8.
|
|
||||||
|
|
||||||
## Development server
|
|
||||||
|
|
||||||
To start a local development server, run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ng serve
|
|
||||||
```
|
|
||||||
|
|
||||||
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
|
|
||||||
|
|
||||||
## Code scaffolding
|
|
||||||
|
|
||||||
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ng generate component component-name
|
|
||||||
```
|
|
||||||
|
|
||||||
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ng generate --help
|
|
||||||
```
|
|
||||||
|
|
||||||
## Building
|
|
||||||
|
|
||||||
To build the project run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ng build
|
|
||||||
```
|
|
||||||
|
|
||||||
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
|
|
||||||
|
|
||||||
## Running unit tests
|
|
||||||
|
|
||||||
To execute unit tests with the [Vitest](https://vitest.dev/) test runner, use the following command:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ng test
|
|
||||||
```
|
|
||||||
|
|
||||||
## Running end-to-end tests
|
|
||||||
|
|
||||||
For end-to-end (e2e) testing, run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
ng e2e
|
|
||||||
```
|
|
||||||
|
|
||||||
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
|
|
||||||
|
|
||||||
## Additional Resources
|
|
||||||
|
|
||||||
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
server {
|
|
||||||
listen 80;
|
|
||||||
server_name _;
|
|
||||||
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
index index.html;
|
|
||||||
|
|
||||||
# Gzip compression
|
|
||||||
gzip on;
|
|
||||||
gzip_vary on;
|
|
||||||
gzip_proxied any;
|
|
||||||
gzip_comp_level 6;
|
|
||||||
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
|
|
||||||
|
|
||||||
# Cache static assets (Angular uses content hashes)
|
|
||||||
location /assets/ {
|
|
||||||
expires 1y;
|
|
||||||
add_header Cache-Control "public, immutable";
|
|
||||||
}
|
|
||||||
|
|
||||||
# Cache hashed JS/CSS bundles
|
|
||||||
location ~* \.(js|css)$ {
|
|
||||||
expires 1y;
|
|
||||||
add_header Cache-Control "public, immutable";
|
|
||||||
}
|
|
||||||
|
|
||||||
# Proxy API requests to backend
|
|
||||||
location /api/ {
|
|
||||||
proxy_pass http://backend:8080/api/;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Proxy SignalR WebSocket connections to backend
|
|
||||||
location /hubs/ {
|
|
||||||
proxy_pass http://backend:8080/hubs/;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection "upgrade";
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
proxy_read_timeout 86400;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Angular SPA — all other routes fall back to index.html
|
|
||||||
location / {
|
|
||||||
try_files $uri $uri/ /index.html;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
8034
frontend-legacy/package-lock.json
generated
8034
frontend-legacy/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "frontend",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"scripts": {
|
|
||||||
"ng": "ng",
|
|
||||||
"start": "ng serve",
|
|
||||||
"build": "ng build",
|
|
||||||
"watch": "ng build --watch --configuration development",
|
|
||||||
"test": "ng test"
|
|
||||||
},
|
|
||||||
"private": true,
|
|
||||||
"packageManager": "npm@11.11.0",
|
|
||||||
"dependencies": {
|
|
||||||
"@angular/animations": "^21.2.10",
|
|
||||||
"@angular/cdk": "^21.2.8",
|
|
||||||
"@angular/common": "^21.2.0",
|
|
||||||
"@angular/compiler": "^21.2.0",
|
|
||||||
"@angular/core": "^21.2.0",
|
|
||||||
"@angular/forms": "^21.2.0",
|
|
||||||
"@angular/material": "^21.2.8",
|
|
||||||
"@angular/platform-browser": "^21.2.0",
|
|
||||||
"@angular/router": "^21.2.0",
|
|
||||||
"@microsoft/signalr": "^10.0.0",
|
|
||||||
"rxjs": "~7.8.0",
|
|
||||||
"tslib": "^2.3.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@angular/build": "^21.2.8",
|
|
||||||
"@angular/cli": "^21.2.8",
|
|
||||||
"@angular/compiler-cli": "^21.2.0",
|
|
||||||
"prettier": "^3.8.1",
|
|
||||||
"typescript": "~5.9.2"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
<router-outlet />
|
|
||||||
@@ -1,126 +0,0 @@
|
|||||||
// ============================================================================
|
|
||||||
// Header Bar — Top App Bar
|
|
||||||
// Per CUB-27 spec breakpoints:
|
|
||||||
// Compact (0–599px): SmallTopAppBar — 56px height, compact title, hidden labels
|
|
||||||
// Medium (600–1023px): Medium top bar — 64px height
|
|
||||||
// Expanded (≥1024px): MediumTopAppBar — 64px height, full actions
|
|
||||||
// ============================================================================
|
|
||||||
|
|
||||||
.header-bar {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
height: var(--cc-header-height-compact); // Compact by default (mobile-first)
|
|
||||||
padding: 0 var(--cc-section-padding-compact);
|
|
||||||
background-color: var(--cc-surface-container-high);
|
|
||||||
border-bottom: 1px solid var(--cc-outline);
|
|
||||||
z-index: 20;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__title {
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--cc-on-surface);
|
|
||||||
margin: 0;
|
|
||||||
letter-spacing: -0.01em;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__actions {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__action-btn {
|
|
||||||
color: var(--cc-on-surface-variant) !important;
|
|
||||||
min-width: 48px;
|
|
||||||
min-height: 48px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: var(--cc-on-surface) !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__live-dot {
|
|
||||||
display: inline-block;
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
border-radius: 50%;
|
|
||||||
margin-right: 6px;
|
|
||||||
background-color: var(--status-error);
|
|
||||||
vertical-align: middle;
|
|
||||||
|
|
||||||
&--connected {
|
|
||||||
background-color: var(--status-active);
|
|
||||||
animation: pulse-active 2s ease-in-out infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__live-label {
|
|
||||||
font-size: 13px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--cc-on-surface-variant);
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Compact (0–599px): SmallTopAppBar — hide live label, tighter spacing
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (max-width: 599px) {
|
|
||||||
.header-bar__live-label {
|
|
||||||
display: none; // Space saving on compact — dot alone is enough
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__actions {
|
|
||||||
gap: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Medium (600–1023px): Medium top bar
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (min-width: 600px) and (max-width: 1023px) {
|
|
||||||
.header-bar {
|
|
||||||
height: var(--cc-header-height);
|
|
||||||
padding: 0 var(--cc-section-padding);
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__title {
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__actions {
|
|
||||||
gap: 4px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Expanded (≥1024px): Full top bar
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.header-bar {
|
|
||||||
height: var(--cc-header-height);
|
|
||||||
padding: 0 var(--cc-section-padding);
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__title {
|
|
||||||
font-size: 28px;
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-bar__actions {
|
|
||||||
gap: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Accessibility: Reduced Motion
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
|
||||||
.header-bar__live-dot--connected {
|
|
||||||
animation: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
// ============================================================================
|
|
||||||
// Layout Shell — Adaptive layout container
|
|
||||||
// Per CUB-27 spec breakpoints:
|
|
||||||
// Compact (0–599px): Header + Content + Bottom Nav (stacked)
|
|
||||||
// Medium (600–1023px): Collapsed Nav Rail + Header + Content
|
|
||||||
// Expanded (≥1024px): Expandable Nav Rail + Header + Content
|
|
||||||
// ============================================================================
|
|
||||||
|
|
||||||
.layout-shell {
|
|
||||||
display: flex;
|
|
||||||
min-height: 100vh;
|
|
||||||
background-color: var(--cc-background);
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-shell__nav-rail {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-shell__main {
|
|
||||||
flex: 1;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-width: 0; // Prevent flex overflow
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-shell__header {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-shell__content {
|
|
||||||
flex: 1;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
padding: var(--cc-section-padding);
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-shell__bottom-nav {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Compact (0–599px): Stack layout vertically, bottom nav visible
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (max-width: 599px) {
|
|
||||||
.layout-shell {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-shell__content {
|
|
||||||
padding: var(--cc-section-padding-compact);
|
|
||||||
// Account for bottom nav bar height
|
|
||||||
padding-bottom: calc(var(--cc-bottom-nav-height) + 16px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Medium (600–1023px): Sidebar + content, collapsed nav rail
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (min-width: 600px) and (max-width: 1023px) {
|
|
||||||
.layout-shell__content {
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Expanded (≥1024px): Full nav rail with expandable behavior
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.layout-shell__content {
|
|
||||||
padding: var(--cc-section-padding);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
import { ChangeDetectionStrategy, Component, HostListener, signal, OnDestroy, OnInit } from '@angular/core';
|
|
||||||
import { RouterLink, RouterLinkActive } from '@angular/router';
|
|
||||||
import { MatIconModule } from '@angular/material/icon';
|
|
||||||
import { MatBadgeModule } from '@angular/material/badge';
|
|
||||||
import { NAV_DESTINATIONS } from '../../models/nav.model';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-nav-rail',
|
|
||||||
standalone: true,
|
|
||||||
imports: [RouterLink, RouterLinkActive, MatIconModule, MatBadgeModule],
|
|
||||||
templateUrl: './nav-rail.component.html',
|
|
||||||
styleUrl: './nav-rail.component.scss',
|
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
||||||
})
|
|
||||||
export class NavRailComponent implements OnInit, OnDestroy {
|
|
||||||
protected readonly destinations = NAV_DESTINATIONS;
|
|
||||||
protected readonly expanded = signal(false);
|
|
||||||
protected readonly isExpandedBreakpoint = signal(false);
|
|
||||||
|
|
||||||
private readonly EXPANDED_BP = 1024;
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
|
||||||
this.updateBreakpoint();
|
|
||||||
}
|
|
||||||
|
|
||||||
@HostListener('window:resize')
|
|
||||||
onResize(): void {
|
|
||||||
this.updateBreakpoint();
|
|
||||||
}
|
|
||||||
|
|
||||||
@HostListener('mouseenter')
|
|
||||||
onHoverIn(): void {
|
|
||||||
if (this.isExpandedBreakpoint()) {
|
|
||||||
this.expanded.set(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@HostListener('mouseleave')
|
|
||||||
onHoverOut(): void {
|
|
||||||
if (this.isExpandedBreakpoint()) {
|
|
||||||
this.expanded.set(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
toggleExpand(): void {
|
|
||||||
if (this.isExpandedBreakpoint()) {
|
|
||||||
this.expanded.update(v => !v);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private updateBreakpoint(): void {
|
|
||||||
const isExpanded = window.innerWidth >= this.EXPANDED_BP;
|
|
||||||
this.isExpandedBreakpoint.set(isExpanded);
|
|
||||||
// Collapse when leaving expanded breakpoint
|
|
||||||
if (!isExpanded) {
|
|
||||||
this.expanded.set(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy(): void {
|
|
||||||
// Cleanup is handled by HostListener auto-unsubscribe
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
||||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"outDir": "./out-tsc/app",
|
|
||||||
"types": []
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"src/**/*.ts"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"src/**/*.spec.ts"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
||||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
||||||
{
|
|
||||||
"compileOnSave": false,
|
|
||||||
"compilerOptions": {
|
|
||||||
"strict": true,
|
|
||||||
"noImplicitOverride": true,
|
|
||||||
"noPropertyAccessFromIndexSignature": true,
|
|
||||||
"noImplicitReturns": true,
|
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"isolatedModules": true,
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"importHelpers": true,
|
|
||||||
"target": "ES2022",
|
|
||||||
"module": "preserve"
|
|
||||||
},
|
|
||||||
"angularCompilerOptions": {
|
|
||||||
"enableI18nLegacyMessageIdFormat": false,
|
|
||||||
"strictInjectionParameters": true,
|
|
||||||
"strictInputAccessModifiers": true,
|
|
||||||
"strictTemplates": true
|
|
||||||
},
|
|
||||||
"files": [],
|
|
||||||
"references": [
|
|
||||||
{
|
|
||||||
"path": "./tsconfig.app.json"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
58
frontend/.gitignore
vendored
58
frontend/.gitignore
vendored
@@ -1,24 +1,44 @@
|
|||||||
# Logs
|
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
node_modules
|
# Compiled output
|
||||||
dist
|
/dist
|
||||||
dist-ssr
|
/tmp
|
||||||
*.local
|
/out-tsc
|
||||||
|
/bazel-out
|
||||||
|
|
||||||
# Editor directories and files
|
# Node
|
||||||
|
/node_modules
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
|
# IDEs and editors
|
||||||
|
.idea/
|
||||||
|
.project
|
||||||
|
.classpath
|
||||||
|
.c9/
|
||||||
|
*.launch
|
||||||
|
.settings/
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Visual Studio Code
|
||||||
.vscode/*
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
.idea
|
!.vscode/mcp.json
|
||||||
|
.history/*
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
/.angular/cache
|
||||||
|
.sass-cache/
|
||||||
|
/connect.lock
|
||||||
|
/coverage
|
||||||
|
/libpeerconnection.log
|
||||||
|
testem.log
|
||||||
|
/typings
|
||||||
|
__screenshots__/
|
||||||
|
|
||||||
|
# System files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.suo
|
Thumbs.db
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# ============================================================
|
# ============================================================
|
||||||
# Control Center Frontend — Multi-stage Docker Build
|
# Control Center Frontend — Multi-stage Docker Build
|
||||||
# React 19 + Vite + nginx for static serving + API proxy
|
# Angular 21 + nginx for static serving + API proxy
|
||||||
# ============================================================
|
# ============================================================
|
||||||
|
|
||||||
# --- Build Stage ---
|
# --- Build Stage ---
|
||||||
@@ -25,8 +25,8 @@ RUN rm /etc/nginx/conf.d/default.conf
|
|||||||
# Copy custom nginx config
|
# Copy custom nginx config
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
|
|
||||||
# Copy built React app from builder stage
|
# Copy built Angular app from builder stage
|
||||||
COPY --from=builder /app/dist /usr/share/nginx/html
|
COPY --from=builder /app/dist/frontend/browser /usr/share/nginx/html
|
||||||
|
|
||||||
# Expose HTTP port
|
# Expose HTTP port
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|||||||
@@ -1,73 +1,59 @@
|
|||||||
# React + TypeScript + Vite
|
# Frontend
|
||||||
|
|
||||||
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 21.2.8.
|
||||||
|
|
||||||
Currently, two official plugins are available:
|
## Development server
|
||||||
|
|
||||||
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
|
To start a local development server, run:
|
||||||
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
|
|
||||||
|
|
||||||
## React Compiler
|
```bash
|
||||||
|
ng serve
|
||||||
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
|
|
||||||
|
|
||||||
## Expanding the ESLint configuration
|
|
||||||
|
|
||||||
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
|
|
||||||
|
|
||||||
```js
|
|
||||||
export default defineConfig([
|
|
||||||
globalIgnores(['dist']),
|
|
||||||
{
|
|
||||||
files: ['**/*.{ts,tsx}'],
|
|
||||||
extends: [
|
|
||||||
// Other configs...
|
|
||||||
|
|
||||||
// Remove tseslint.configs.recommended and replace with this
|
|
||||||
tseslint.configs.recommendedTypeChecked,
|
|
||||||
// Alternatively, use this for stricter rules
|
|
||||||
tseslint.configs.strictTypeChecked,
|
|
||||||
// Optionally, add this for stylistic rules
|
|
||||||
tseslint.configs.stylisticTypeChecked,
|
|
||||||
|
|
||||||
// Other configs...
|
|
||||||
],
|
|
||||||
languageOptions: {
|
|
||||||
parserOptions: {
|
|
||||||
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
||||||
tsconfigRootDir: import.meta.dirname,
|
|
||||||
},
|
|
||||||
// other options...
|
|
||||||
},
|
|
||||||
},
|
|
||||||
])
|
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
|
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
|
||||||
|
|
||||||
```js
|
## Code scaffolding
|
||||||
// eslint.config.js
|
|
||||||
import reactX from 'eslint-plugin-react-x'
|
|
||||||
import reactDom from 'eslint-plugin-react-dom'
|
|
||||||
|
|
||||||
export default defineConfig([
|
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
|
||||||
globalIgnores(['dist']),
|
|
||||||
{
|
```bash
|
||||||
files: ['**/*.{ts,tsx}'],
|
ng generate component component-name
|
||||||
extends: [
|
|
||||||
// Other configs...
|
|
||||||
// Enable lint rules for React
|
|
||||||
reactX.configs['recommended-typescript'],
|
|
||||||
// Enable lint rules for React DOM
|
|
||||||
reactDom.configs.recommended,
|
|
||||||
],
|
|
||||||
languageOptions: {
|
|
||||||
parserOptions: {
|
|
||||||
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
||||||
tsconfigRootDir: import.meta.dirname,
|
|
||||||
},
|
|
||||||
// other options...
|
|
||||||
},
|
|
||||||
},
|
|
||||||
])
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng generate --help
|
||||||
|
```
|
||||||
|
|
||||||
|
## Building
|
||||||
|
|
||||||
|
To build the project run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng build
|
||||||
|
```
|
||||||
|
|
||||||
|
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
|
||||||
|
|
||||||
|
## Running unit tests
|
||||||
|
|
||||||
|
To execute unit tests with the [Vitest](https://vitest.dev/) test runner, use the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng test
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running end-to-end tests
|
||||||
|
|
||||||
|
For end-to-end (e2e) testing, run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng e2e
|
||||||
|
```
|
||||||
|
|
||||||
|
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
|
||||||
|
|
||||||
|
## Additional Resources
|
||||||
|
|
||||||
|
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
import js from '@eslint/js'
|
|
||||||
import globals from 'globals'
|
|
||||||
import reactHooks from 'eslint-plugin-react-hooks'
|
|
||||||
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
||||||
import tseslint from 'typescript-eslint'
|
|
||||||
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
||||||
|
|
||||||
export default defineConfig([
|
|
||||||
globalIgnores(['dist']),
|
|
||||||
{
|
|
||||||
files: ['**/*.{ts,tsx}'],
|
|
||||||
extends: [
|
|
||||||
js.configs.recommended,
|
|
||||||
tseslint.configs.recommended,
|
|
||||||
reactHooks.configs.flat.recommended,
|
|
||||||
reactRefresh.configs.vite,
|
|
||||||
],
|
|
||||||
languageOptions: {
|
|
||||||
globals: globals.browser,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
])
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<title>Control Center</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="root"></div>
|
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -12,7 +12,7 @@ server {
|
|||||||
gzip_comp_level 6;
|
gzip_comp_level 6;
|
||||||
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
|
||||||
|
|
||||||
# Cache static assets (Vite uses content hashes)
|
# Cache static assets (Angular uses content hashes)
|
||||||
location /assets/ {
|
location /assets/ {
|
||||||
expires 1y;
|
expires 1y;
|
||||||
add_header Cache-Control "public, immutable";
|
add_header Cache-Control "public, immutable";
|
||||||
@@ -34,7 +34,20 @@ server {
|
|||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
}
|
}
|
||||||
|
|
||||||
# React SPA — all other routes fall back to index.html
|
# Proxy SignalR WebSocket connections to backend
|
||||||
|
location /hubs/ {
|
||||||
|
proxy_pass http://backend:8080/hubs/;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_read_timeout 86400;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Angular SPA — all other routes fall back to index.html
|
||||||
location / {
|
location / {
|
||||||
try_files $uri $uri/ /index.html;
|
try_files $uri $uri/ /index.html;
|
||||||
}
|
}
|
||||||
|
|||||||
8218
frontend/package-lock.json
generated
8218
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,38 +1,34 @@
|
|||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"private": true,
|
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"ng": "ng",
|
||||||
"build": "tsc -b && vite build",
|
"start": "ng serve",
|
||||||
"lint": "eslint .",
|
"build": "ng build",
|
||||||
"preview": "vite preview"
|
"watch": "ng build --watch --configuration development",
|
||||||
|
"test": "ng test"
|
||||||
},
|
},
|
||||||
|
"private": true,
|
||||||
|
"packageManager": "npm@11.11.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@tanstack/react-query": "^5.100.9",
|
"@angular/animations": "^21.2.10",
|
||||||
"axios": "^1.16.0",
|
"@angular/cdk": "^21.2.8",
|
||||||
"lucide-react": "^1.14.0",
|
"@angular/common": "^21.2.0",
|
||||||
"react": "^19.2.5",
|
"@angular/compiler": "^21.2.0",
|
||||||
"react-dom": "^19.2.5",
|
"@angular/core": "^21.2.0",
|
||||||
"react-router-dom": "^7.15.0"
|
"@angular/forms": "^21.2.0",
|
||||||
|
"@angular/material": "^21.2.8",
|
||||||
|
"@angular/platform-browser": "^21.2.0",
|
||||||
|
"@angular/router": "^21.2.0",
|
||||||
|
"@microsoft/signalr": "^10.0.0",
|
||||||
|
"rxjs": "~7.8.0",
|
||||||
|
"tslib": "^2.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^10.0.1",
|
"@angular/build": "^21.2.8",
|
||||||
"@tailwindcss/vite": "^4.2.4",
|
"@angular/cli": "^21.2.8",
|
||||||
"@types/node": "^24.12.2",
|
"@angular/compiler-cli": "^21.2.0",
|
||||||
"@types/react": "^19.2.14",
|
"prettier": "^3.8.1",
|
||||||
"@types/react-dom": "^19.2.3",
|
"typescript": "~5.9.2"
|
||||||
"@vitejs/plugin-react": "^6.0.1",
|
|
||||||
"autoprefixer": "^10.5.0",
|
|
||||||
"eslint": "^10.2.1",
|
|
||||||
"eslint-plugin-react-hooks": "^7.1.1",
|
|
||||||
"eslint-plugin-react-refresh": "^0.5.2",
|
|
||||||
"globals": "^17.5.0",
|
|
||||||
"postcss": "^8.5.14",
|
|
||||||
"tailwindcss": "^4.2.4",
|
|
||||||
"typescript": "~6.0.2",
|
|
||||||
"typescript-eslint": "^8.58.2",
|
|
||||||
"vite": "^8.0.10"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 9.3 KiB |
@@ -1,24 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<symbol id="bluesky-icon" viewBox="0 0 16 17">
|
|
||||||
<g clip-path="url(#bluesky-clip)"><path fill="#08060d" d="M7.75 7.735c-.693-1.348-2.58-3.86-4.334-5.097-1.68-1.187-2.32-.981-2.74-.79C.188 2.065.1 2.812.1 3.251s.241 3.602.398 4.13c.52 1.744 2.367 2.333 4.07 2.145-2.495.37-4.71 1.278-1.805 4.512 3.196 3.309 4.38-.71 4.987-2.746.608 2.036 1.307 5.91 4.93 2.746 2.72-2.746.747-4.143-1.747-4.512 1.702.189 3.55-.4 4.07-2.145.156-.528.397-3.691.397-4.13s-.088-1.186-.575-1.406c-.42-.19-1.06-.395-2.741.79-1.755 1.24-3.64 3.752-4.334 5.099"/></g>
|
|
||||||
<defs><clipPath id="bluesky-clip"><path fill="#fff" d="M.1.85h15.3v15.3H.1z"/></clipPath></defs>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="discord-icon" viewBox="0 0 20 19">
|
|
||||||
<path fill="#08060d" d="M16.224 3.768a14.5 14.5 0 0 0-3.67-1.153c-.158.286-.343.67-.47.976a13.5 13.5 0 0 0-4.067 0c-.128-.306-.317-.69-.476-.976A14.4 14.4 0 0 0 3.868 3.77C1.546 7.28.916 10.703 1.231 14.077a14.7 14.7 0 0 0 4.5 2.306q.545-.748.965-1.587a9.5 9.5 0 0 1-1.518-.74q.191-.14.372-.293c2.927 1.369 6.107 1.369 8.999 0q.183.152.372.294-.723.437-1.52.74.418.838.963 1.588a14.6 14.6 0 0 0 4.504-2.308c.37-3.911-.63-7.302-2.644-10.309m-9.13 8.234c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.894 0 1.614.82 1.599 1.82.001 1-.705 1.82-1.6 1.82m5.91 0c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.893 0 1.614.82 1.599 1.82 0 1-.706 1.82-1.6 1.82"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="documentation-icon" viewBox="0 0 21 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="m15.5 13.333 1.533 1.322c.645.555.967.833.967 1.178s-.322.623-.967 1.179L15.5 18.333m-3.333-5-1.534 1.322c-.644.555-.966.833-.966 1.178s.322.623.966 1.179l1.534 1.321"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M17.167 10.836v-4.32c0-1.41 0-2.117-.224-2.68-.359-.906-1.118-1.621-2.08-1.96-.599-.21-1.349-.21-2.848-.21-2.623 0-3.935 0-4.983.369-1.684.591-3.013 1.842-3.641 3.428C3 6.449 3 7.684 3 10.154v2.122c0 2.558 0 3.838.706 4.726q.306.383.713.671c.76.536 1.79.64 3.581.66"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M3 10a2.78 2.78 0 0 1 2.778-2.778c.555 0 1.209.097 1.748-.047.48-.129.854-.503.982-.982.145-.54.048-1.194.048-1.749a2.78 2.78 0 0 1 2.777-2.777"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="github-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M9.356 1.85C5.05 1.85 1.57 5.356 1.57 9.694a7.84 7.84 0 0 0 5.324 7.44c.387.079.528-.168.528-.376 0-.182-.013-.805-.013-1.454-2.165.467-2.616-.935-2.616-.935-.349-.91-.864-1.143-.864-1.143-.71-.48.051-.48.051-.48.787.051 1.2.805 1.2.805.695 1.194 1.817.857 2.268.649.064-.507.27-.857.49-1.052-1.728-.182-3.545-.857-3.545-3.87 0-.857.31-1.558.8-2.104-.078-.195-.349-1 .077-2.078 0 0 .657-.208 2.14.805a7.5 7.5 0 0 1 1.946-.26c.657 0 1.328.092 1.946.26 1.483-1.013 2.14-.805 2.14-.805.426 1.078.155 1.883.078 2.078.502.546.799 1.247.799 2.104 0 3.013-1.818 3.675-3.558 3.87.284.247.528.714.528 1.454 0 1.052-.012 1.896-.012 2.156 0 .208.142.455.528.377a7.84 7.84 0 0 0 5.324-7.441c.013-4.338-3.48-7.844-7.773-7.844" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="social-icon" viewBox="0 0 20 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M12.5 6.667a4.167 4.167 0 1 0-8.334 0 4.167 4.167 0 0 0 8.334 0"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M2.5 16.667a5.833 5.833 0 0 1 8.75-5.053m3.837.474.513 1.035c.07.144.257.282.414.309l.93.155c.596.1.736.536.307.965l-.723.73a.64.64 0 0 0-.152.531l.207.903c.164.715-.213.991-.84.618l-.872-.52a.63.63 0 0 0-.577 0l-.872.52c-.624.373-1.003.094-.84-.618l.207-.903a.64.64 0 0 0-.152-.532l-.723-.729c-.426-.43-.289-.864.306-.964l.93-.156a.64.64 0 0 0 .412-.31l.513-1.034c.28-.562.735-.562 1.012 0"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="x-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M1.893 1.98c.052.072 1.245 1.769 2.653 3.77l2.892 4.114c.183.261.333.48.333.486s-.068.089-.152.183l-.522.593-.765.867-3.597 4.087c-.375.426-.734.834-.798.905a1 1 0 0 0-.118.148c0 .01.236.017.664.017h.663l.729-.83c.4-.457.796-.906.879-.999a692 692 0 0 0 1.794-2.038c.034-.037.301-.34.594-.675l.551-.624.345-.392a7 7 0 0 1 .34-.374c.006 0 .93 1.306 2.052 2.903l2.084 2.965.045.063h2.275c1.87 0 2.273-.003 2.266-.021-.008-.02-1.098-1.572-3.894-5.547-2.013-2.862-2.28-3.246-2.273-3.266.008-.019.282-.332 2.085-2.38l2-2.274 1.567-1.782c.022-.028-.016-.03-.65-.03h-.674l-.3.342a871 871 0 0 1-1.782 2.025c-.067.075-.405.458-.75.852a100 100 0 0 1-.803.91c-.148.172-.299.344-.99 1.127-.304.343-.32.358-.345.327-.015-.019-.904-1.282-1.976-2.808L6.365 1.85H1.8zm1.782.91 8.078 11.294c.772 1.08 1.413 1.973 1.425 1.984.016.017.241.02 1.05.017l1.03-.004-2.694-3.766L7.796 5.75 5.722 2.852l-1.039-.004-1.039-.004z" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,23 +0,0 @@
|
|||||||
import { Routes, Route } from 'react-router-dom'
|
|
||||||
import Layout from './components/Layout'
|
|
||||||
import HubPage from './pages/HubPage'
|
|
||||||
import LogsPage from './pages/LogsPage'
|
|
||||||
import ProjectsPage from './pages/ProjectsPage'
|
|
||||||
import SessionsPage from './pages/SessionsPage'
|
|
||||||
import SettingsPage from './pages/SettingsPage'
|
|
||||||
|
|
||||||
function App() {
|
|
||||||
return (
|
|
||||||
<Layout>
|
|
||||||
<Routes>
|
|
||||||
<Route path="/" element={<HubPage />} />
|
|
||||||
<Route path="/logs" element={<LogsPage />} />
|
|
||||||
<Route path="/projects" element={<ProjectsPage />} />
|
|
||||||
<Route path="/sessions" element={<SessionsPage />} />
|
|
||||||
<Route path="/settings" element={<SettingsPage />} />
|
|
||||||
</Routes>
|
|
||||||
</Layout>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App
|
|
||||||
344
frontend/src/app/app.html
Normal file
344
frontend/src/app/app.html
Normal file
@@ -0,0 +1,344 @@
|
|||||||
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * * The content below * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * Delete the template below * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * to get started with your project! * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
|
||||||
|
<style>
|
||||||
|
:host {
|
||||||
|
--bright-blue: oklch(51.01% 0.274 263.83);
|
||||||
|
--electric-violet: oklch(53.18% 0.28 296.97);
|
||||||
|
--french-violet: oklch(47.66% 0.246 305.88);
|
||||||
|
--vivid-pink: oklch(69.02% 0.277 332.77);
|
||||||
|
--hot-red: oklch(61.42% 0.238 15.34);
|
||||||
|
--orange-red: oklch(63.32% 0.24 31.68);
|
||||||
|
|
||||||
|
--gray-900: oklch(19.37% 0.006 300.98);
|
||||||
|
--gray-700: oklch(36.98% 0.014 302.71);
|
||||||
|
--gray-400: oklch(70.9% 0.015 304.04);
|
||||||
|
|
||||||
|
--red-to-pink-to-purple-vertical-gradient: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
var(--orange-red) 0%,
|
||||||
|
var(--vivid-pink) 50%,
|
||||||
|
var(--electric-violet) 100%
|
||||||
|
);
|
||||||
|
|
||||||
|
--red-to-pink-to-purple-horizontal-gradient: linear-gradient(
|
||||||
|
90deg,
|
||||||
|
var(--orange-red) 0%,
|
||||||
|
var(--vivid-pink) 50%,
|
||||||
|
var(--electric-violet) 100%
|
||||||
|
);
|
||||||
|
|
||||||
|
--pill-accent: var(--bright-blue);
|
||||||
|
|
||||||
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||||
|
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
||||||
|
"Segoe UI Symbol";
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
display: block;
|
||||||
|
height: 100dvh;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 3.125rem;
|
||||||
|
color: var(--gray-900);
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 100%;
|
||||||
|
letter-spacing: -0.125rem;
|
||||||
|
margin: 0;
|
||||||
|
font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||||
|
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
||||||
|
"Segoe UI Symbol";
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--gray-700);
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 1rem;
|
||||||
|
box-sizing: inherit;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.angular-logo {
|
||||||
|
max-width: 9.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 700px;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content h1 {
|
||||||
|
margin-top: 1.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content p {
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.divider {
|
||||||
|
width: 1px;
|
||||||
|
background: var(--red-to-pink-to-purple-vertical-gradient);
|
||||||
|
margin-inline: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pill-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: start;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pill {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
--pill-accent: var(--bright-blue);
|
||||||
|
background: color-mix(in srgb, var(--pill-accent) 5%, transparent);
|
||||||
|
color: var(--pill-accent);
|
||||||
|
padding-inline: 0.75rem;
|
||||||
|
padding-block: 0.375rem;
|
||||||
|
border-radius: 2.75rem;
|
||||||
|
border: 0;
|
||||||
|
transition: background 0.3s ease;
|
||||||
|
font-family: var(--inter-font);
|
||||||
|
font-size: 0.875rem;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.4rem;
|
||||||
|
letter-spacing: -0.00875rem;
|
||||||
|
text-decoration: none;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pill:hover {
|
||||||
|
background: color-mix(in srgb, var(--pill-accent) 15%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pill-group .pill:nth-child(6n + 1) {
|
||||||
|
--pill-accent: var(--bright-blue);
|
||||||
|
}
|
||||||
|
.pill-group .pill:nth-child(6n + 2) {
|
||||||
|
--pill-accent: var(--electric-violet);
|
||||||
|
}
|
||||||
|
.pill-group .pill:nth-child(6n + 3) {
|
||||||
|
--pill-accent: var(--french-violet);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pill-group .pill:nth-child(6n + 4),
|
||||||
|
.pill-group .pill:nth-child(6n + 5),
|
||||||
|
.pill-group .pill:nth-child(6n + 6) {
|
||||||
|
--pill-accent: var(--hot-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pill-group svg {
|
||||||
|
margin-inline-start: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-links {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.73rem;
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-links path {
|
||||||
|
transition: fill 0.3s ease;
|
||||||
|
fill: var(--gray-400);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social-links a:hover svg path {
|
||||||
|
fill: var(--gray-900);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 650px) {
|
||||||
|
.content {
|
||||||
|
flex-direction: column;
|
||||||
|
width: max-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
.divider {
|
||||||
|
height: 1px;
|
||||||
|
width: 100%;
|
||||||
|
background: var(--red-to-pink-to-purple-horizontal-gradient);
|
||||||
|
margin-block: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<main class="main">
|
||||||
|
<div class="content">
|
||||||
|
<div class="left-side">
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 982 239"
|
||||||
|
fill="none"
|
||||||
|
class="angular-logo"
|
||||||
|
>
|
||||||
|
<g clip-path="url(#a)">
|
||||||
|
<path
|
||||||
|
fill="url(#b)"
|
||||||
|
d="M388.676 191.625h30.849L363.31 31.828h-35.758l-56.215 159.797h30.848l13.174-39.356h60.061l13.256 39.356Zm-65.461-62.675 21.602-64.311h1.227l21.602 64.311h-44.431Zm126.831-7.527v70.202h-28.23V71.839h27.002v20.374h1.392c2.782-6.71 7.2-12.028 13.255-15.956 6.056-3.927 13.584-5.89 22.503-5.89 8.264 0 15.465 1.8 21.684 5.318 6.137 3.518 10.964 8.673 14.319 15.382 3.437 6.71 5.074 14.81 4.992 24.383v76.175h-28.23v-71.92c0-8.019-2.046-14.237-6.219-18.819-4.173-4.5-9.819-6.791-17.102-6.791-4.91 0-9.328 1.063-13.174 3.272-3.846 2.128-6.792 5.237-9.001 9.328-2.046 4.009-3.191 8.918-3.191 14.728ZM589.233 239c-10.147 0-18.82-1.391-26.103-4.091-7.282-2.7-13.092-6.382-17.511-10.964-4.418-4.582-7.528-9.655-9.164-15.219l25.448-6.136c1.145 2.372 2.782 4.663 4.991 6.954 2.209 2.291 5.155 4.255 8.837 5.81 3.683 1.554 8.428 2.291 14.074 2.291 8.019 0 14.647-1.964 19.884-5.81 5.237-3.845 7.856-10.227 7.856-19.064v-22.665h-1.391c-1.473 2.946-3.601 5.892-6.383 9.001-2.782 3.109-6.464 5.645-10.965 7.691-4.582 2.046-10.228 3.109-17.101 3.109-9.165 0-17.511-2.209-25.039-6.545-7.446-4.337-13.42-10.883-17.757-19.474-4.418-8.673-6.628-19.473-6.628-32.565 0-13.091 2.21-24.301 6.628-33.383 4.419-9.082 10.311-15.955 17.839-20.7 7.528-4.746 15.874-7.037 25.039-7.037 7.037 0 12.846 1.145 17.347 3.518 4.582 2.373 8.182 5.236 10.883 8.51 2.7 3.272 4.746 6.382 6.137 9.327h1.554v-19.8h27.821v121.749c0 10.228-2.454 18.737-7.364 25.447-4.91 6.709-11.538 11.7-20.048 15.055-8.509 3.355-18.165 4.991-28.884 4.991Zm.245-71.266c5.974 0 11.047-1.473 15.302-4.337 4.173-2.945 7.446-7.118 9.573-12.519 2.21-5.482 3.274-12.027 3.274-19.637 0-7.609-1.064-14.155-3.274-19.8-2.127-5.646-5.318-10.064-9.491-13.255-4.174-3.11-9.329-4.746-15.384-4.746s-11.537 1.636-15.792 4.91c-4.173 3.272-7.365 7.772-9.492 13.418-2.128 5.727-3.191 12.191-3.191 19.392 0 7.2 1.063 13.745 3.273 19.228 2.127 5.482 5.318 9.736 9.573 12.764 4.174 3.027 9.41 4.582 15.629 4.582Zm141.56-26.51V71.839h28.23v119.786h-27.412v-21.273h-1.227c-2.7 6.709-7.119 12.191-13.338 16.446-6.137 4.255-13.747 6.382-22.748 6.382-7.855 0-14.81-1.718-20.783-5.237-5.974-3.518-10.72-8.591-14.075-15.382-3.355-6.709-5.073-14.891-5.073-24.464V71.839h28.312v71.921c0 7.609 2.046 13.664 6.219 18.083 4.173 4.5 9.655 6.709 16.365 6.709 4.173 0 8.183-.982 12.111-3.028 3.927-2.045 7.118-5.072 9.655-9.082 2.537-4.091 3.764-9.164 3.764-15.218Zm65.707-109.395v159.796h-28.23V31.828h28.23Zm44.841 162.169c-7.61 0-14.402-1.391-20.457-4.091-6.055-2.7-10.883-6.791-14.32-12.109-3.518-5.319-5.237-11.946-5.237-19.801 0-6.791 1.228-12.355 3.765-16.773 2.536-4.419 5.891-7.937 10.228-10.637 4.337-2.618 9.164-4.664 14.647-6.055 5.4-1.391 11.046-2.373 16.856-3.027 7.037-.737 12.683-1.391 17.102-1.964 4.337-.573 7.528-1.555 9.574-2.782 1.963-1.309 3.027-3.273 3.027-5.973v-.491c0-5.891-1.718-10.391-5.237-13.664-3.518-3.191-8.51-4.828-15.056-4.828-6.955 0-12.356 1.473-16.447 4.5-4.009 3.028-6.71 6.546-8.183 10.719l-26.348-3.764c2.046-7.282 5.483-13.336 10.31-18.328 4.746-4.909 10.638-8.59 17.511-11.045 6.955-2.455 14.565-3.682 22.912-3.682 5.809 0 11.537.654 17.265 2.045s10.965 3.6 15.711 6.71c4.746 3.109 8.51 7.282 11.455 12.6 2.864 5.318 4.337 11.946 4.337 19.883v80.184h-27.166v-16.446h-.9c-1.719 3.355-4.092 6.464-7.201 9.328-3.109 2.864-6.955 5.237-11.619 6.955-4.828 1.718-10.229 2.536-16.529 2.536Zm7.364-20.701c5.646 0 10.556-1.145 14.729-3.354 4.173-2.291 7.364-5.237 9.655-9.001 2.292-3.763 3.355-7.854 3.355-12.273v-14.155c-.9.737-2.373 1.391-4.5 2.046-2.128.654-4.419 1.145-7.037 1.636-2.619.491-5.155.9-7.692 1.227-2.537.328-4.746.655-6.628.901-4.173.572-8.019 1.472-11.292 2.781-3.355 1.31-5.973 3.11-7.855 5.401-1.964 2.291-2.864 5.318-2.864 8.918 0 5.237 1.882 9.164 5.728 11.782 3.682 2.782 8.51 4.091 14.401 4.091Zm64.643 18.328V71.839h27.412v19.965h1.227c2.21-6.955 5.974-12.274 11.292-16.038 5.319-3.763 11.456-5.645 18.329-5.645 1.555 0 3.355.082 5.237.163 1.964.164 3.601.328 4.91.573v25.938c-1.227-.41-3.109-.819-5.646-1.146a58.814 58.814 0 0 0-7.446-.49c-5.155 0-9.738 1.145-13.829 3.354-4.091 2.209-7.282 5.236-9.655 9.164-2.373 3.927-3.519 8.427-3.519 13.5v70.448h-28.312ZM222.077 39.192l-8.019 125.923L137.387 0l84.69 39.192Zm-53.105 162.825-57.933 33.056-57.934-33.056 11.783-28.556h92.301l11.783 28.556ZM111.039 62.675l30.357 73.803H80.681l30.358-73.803ZM7.937 165.115 0 39.192 84.69 0 7.937 165.115Z"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
fill="url(#c)"
|
||||||
|
d="M388.676 191.625h30.849L363.31 31.828h-35.758l-56.215 159.797h30.848l13.174-39.356h60.061l13.256 39.356Zm-65.461-62.675 21.602-64.311h1.227l21.602 64.311h-44.431Zm126.831-7.527v70.202h-28.23V71.839h27.002v20.374h1.392c2.782-6.71 7.2-12.028 13.255-15.956 6.056-3.927 13.584-5.89 22.503-5.89 8.264 0 15.465 1.8 21.684 5.318 6.137 3.518 10.964 8.673 14.319 15.382 3.437 6.71 5.074 14.81 4.992 24.383v76.175h-28.23v-71.92c0-8.019-2.046-14.237-6.219-18.819-4.173-4.5-9.819-6.791-17.102-6.791-4.91 0-9.328 1.063-13.174 3.272-3.846 2.128-6.792 5.237-9.001 9.328-2.046 4.009-3.191 8.918-3.191 14.728ZM589.233 239c-10.147 0-18.82-1.391-26.103-4.091-7.282-2.7-13.092-6.382-17.511-10.964-4.418-4.582-7.528-9.655-9.164-15.219l25.448-6.136c1.145 2.372 2.782 4.663 4.991 6.954 2.209 2.291 5.155 4.255 8.837 5.81 3.683 1.554 8.428 2.291 14.074 2.291 8.019 0 14.647-1.964 19.884-5.81 5.237-3.845 7.856-10.227 7.856-19.064v-22.665h-1.391c-1.473 2.946-3.601 5.892-6.383 9.001-2.782 3.109-6.464 5.645-10.965 7.691-4.582 2.046-10.228 3.109-17.101 3.109-9.165 0-17.511-2.209-25.039-6.545-7.446-4.337-13.42-10.883-17.757-19.474-4.418-8.673-6.628-19.473-6.628-32.565 0-13.091 2.21-24.301 6.628-33.383 4.419-9.082 10.311-15.955 17.839-20.7 7.528-4.746 15.874-7.037 25.039-7.037 7.037 0 12.846 1.145 17.347 3.518 4.582 2.373 8.182 5.236 10.883 8.51 2.7 3.272 4.746 6.382 6.137 9.327h1.554v-19.8h27.821v121.749c0 10.228-2.454 18.737-7.364 25.447-4.91 6.709-11.538 11.7-20.048 15.055-8.509 3.355-18.165 4.991-28.884 4.991Zm.245-71.266c5.974 0 11.047-1.473 15.302-4.337 4.173-2.945 7.446-7.118 9.573-12.519 2.21-5.482 3.274-12.027 3.274-19.637 0-7.609-1.064-14.155-3.274-19.8-2.127-5.646-5.318-10.064-9.491-13.255-4.174-3.11-9.329-4.746-15.384-4.746s-11.537 1.636-15.792 4.91c-4.173 3.272-7.365 7.772-9.492 13.418-2.128 5.727-3.191 12.191-3.191 19.392 0 7.2 1.063 13.745 3.273 19.228 2.127 5.482 5.318 9.736 9.573 12.764 4.174 3.027 9.41 4.582 15.629 4.582Zm141.56-26.51V71.839h28.23v119.786h-27.412v-21.273h-1.227c-2.7 6.709-7.119 12.191-13.338 16.446-6.137 4.255-13.747 6.382-22.748 6.382-7.855 0-14.81-1.718-20.783-5.237-5.974-3.518-10.72-8.591-14.075-15.382-3.355-6.709-5.073-14.891-5.073-24.464V71.839h28.312v71.921c0 7.609 2.046 13.664 6.219 18.083 4.173 4.5 9.655 6.709 16.365 6.709 4.173 0 8.183-.982 12.111-3.028 3.927-2.045 7.118-5.072 9.655-9.082 2.537-4.091 3.764-9.164 3.764-15.218Zm65.707-109.395v159.796h-28.23V31.828h28.23Zm44.841 162.169c-7.61 0-14.402-1.391-20.457-4.091-6.055-2.7-10.883-6.791-14.32-12.109-3.518-5.319-5.237-11.946-5.237-19.801 0-6.791 1.228-12.355 3.765-16.773 2.536-4.419 5.891-7.937 10.228-10.637 4.337-2.618 9.164-4.664 14.647-6.055 5.4-1.391 11.046-2.373 16.856-3.027 7.037-.737 12.683-1.391 17.102-1.964 4.337-.573 7.528-1.555 9.574-2.782 1.963-1.309 3.027-3.273 3.027-5.973v-.491c0-5.891-1.718-10.391-5.237-13.664-3.518-3.191-8.51-4.828-15.056-4.828-6.955 0-12.356 1.473-16.447 4.5-4.009 3.028-6.71 6.546-8.183 10.719l-26.348-3.764c2.046-7.282 5.483-13.336 10.31-18.328 4.746-4.909 10.638-8.59 17.511-11.045 6.955-2.455 14.565-3.682 22.912-3.682 5.809 0 11.537.654 17.265 2.045s10.965 3.6 15.711 6.71c4.746 3.109 8.51 7.282 11.455 12.6 2.864 5.318 4.337 11.946 4.337 19.883v80.184h-27.166v-16.446h-.9c-1.719 3.355-4.092 6.464-7.201 9.328-3.109 2.864-6.955 5.237-11.619 6.955-4.828 1.718-10.229 2.536-16.529 2.536Zm7.364-20.701c5.646 0 10.556-1.145 14.729-3.354 4.173-2.291 7.364-5.237 9.655-9.001 2.292-3.763 3.355-7.854 3.355-12.273v-14.155c-.9.737-2.373 1.391-4.5 2.046-2.128.654-4.419 1.145-7.037 1.636-2.619.491-5.155.9-7.692 1.227-2.537.328-4.746.655-6.628.901-4.173.572-8.019 1.472-11.292 2.781-3.355 1.31-5.973 3.11-7.855 5.401-1.964 2.291-2.864 5.318-2.864 8.918 0 5.237 1.882 9.164 5.728 11.782 3.682 2.782 8.51 4.091 14.401 4.091Zm64.643 18.328V71.839h27.412v19.965h1.227c2.21-6.955 5.974-12.274 11.292-16.038 5.319-3.763 11.456-5.645 18.329-5.645 1.555 0 3.355.082 5.237.163 1.964.164 3.601.328 4.91.573v25.938c-1.227-.41-3.109-.819-5.646-1.146a58.814 58.814 0 0 0-7.446-.49c-5.155 0-9.738 1.145-13.829 3.354-4.091 2.209-7.282 5.236-9.655 9.164-2.373 3.927-3.519 8.427-3.519 13.5v70.448h-28.312ZM222.077 39.192l-8.019 125.923L137.387 0l84.69 39.192Zm-53.105 162.825-57.933 33.056-57.934-33.056 11.783-28.556h92.301l11.783 28.556ZM111.039 62.675l30.357 73.803H80.681l30.358-73.803ZM7.937 165.115 0 39.192 84.69 0 7.937 165.115Z"
|
||||||
|
/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<radialGradient
|
||||||
|
id="c"
|
||||||
|
cx="0"
|
||||||
|
cy="0"
|
||||||
|
r="1"
|
||||||
|
gradientTransform="rotate(118.122 171.182 60.81) scale(205.794)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stop-color="#FF41F8" />
|
||||||
|
<stop offset=".707" stop-color="#FF41F8" stop-opacity=".5" />
|
||||||
|
<stop offset="1" stop-color="#FF41F8" stop-opacity="0" />
|
||||||
|
</radialGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="b"
|
||||||
|
x1="0"
|
||||||
|
x2="982"
|
||||||
|
y1="192"
|
||||||
|
y2="192"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stop-color="#F0060B" />
|
||||||
|
<stop offset="0" stop-color="#F0070C" />
|
||||||
|
<stop offset=".526" stop-color="#CC26D5" />
|
||||||
|
<stop offset="1" stop-color="#7702FF" />
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath id="a"><path fill="#fff" d="M0 0h982v239H0z" /></clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<h1>Hello, {{ title() }}</h1>
|
||||||
|
<p>Congratulations! Your app is running. 🎉</p>
|
||||||
|
</div>
|
||||||
|
<div class="divider" role="separator" aria-label="Divider"></div>
|
||||||
|
<div class="right-side">
|
||||||
|
<div class="pill-group">
|
||||||
|
@for (item of [
|
||||||
|
{ title: 'Explore the Docs', link: 'https://angular.dev' },
|
||||||
|
{ title: 'Learn with Tutorials', link: 'https://angular.dev/tutorials' },
|
||||||
|
{ title: 'Prompt and best practices for AI', link: 'https://angular.dev/ai/develop-with-ai'},
|
||||||
|
{ title: 'CLI Docs', link: 'https://angular.dev/tools/cli' },
|
||||||
|
{ title: 'Angular Language Service', link: 'https://angular.dev/tools/language-service' },
|
||||||
|
{ title: 'Angular DevTools', link: 'https://angular.dev/tools/devtools' },
|
||||||
|
]; track item.title) {
|
||||||
|
<a
|
||||||
|
class="pill"
|
||||||
|
[href]="item.link"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>
|
||||||
|
<span>{{ item.title }}</span>
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
height="14"
|
||||||
|
viewBox="0 -960 960 960"
|
||||||
|
width="14"
|
||||||
|
fill="currentColor"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
<div class="social-links">
|
||||||
|
<a
|
||||||
|
href="https://github.com/angular/angular"
|
||||||
|
aria-label="Github"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="25"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 25 24"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
alt="Github"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M12.3047 0C5.50634 0 0 5.50942 0 12.3047C0 17.7423 3.52529 22.3535 8.41332 23.9787C9.02856 24.0946 9.25414 23.7142 9.25414 23.3871C9.25414 23.0949 9.24389 22.3207 9.23876 21.2953C5.81601 22.0377 5.09414 19.6444 5.09414 19.6444C4.53427 18.2243 3.72524 17.8449 3.72524 17.8449C2.61064 17.082 3.81137 17.0973 3.81137 17.0973C5.04697 17.1835 5.69604 18.3647 5.69604 18.3647C6.79321 20.2463 8.57636 19.7029 9.27978 19.3881C9.39052 18.5924 9.70736 18.0499 10.0591 17.7423C7.32641 17.4347 4.45429 16.3765 4.45429 11.6618C4.45429 10.3185 4.9311 9.22133 5.72065 8.36C5.58222 8.04931 5.16694 6.79833 5.82831 5.10337C5.82831 5.10337 6.85883 4.77319 9.2121 6.36459C10.1965 6.09082 11.2424 5.95546 12.2883 5.94931C13.3342 5.95546 14.3801 6.09082 15.3644 6.36459C17.7023 4.77319 18.7328 5.10337 18.7328 5.10337C19.3942 6.79833 18.9789 8.04931 18.8559 8.36C19.6403 9.22133 20.1171 10.3185 20.1171 11.6618C20.1171 16.3888 17.2409 17.4296 14.5031 17.7321C14.9338 18.1012 15.3337 18.8559 15.3337 20.0084C15.3337 21.6552 15.3183 22.978 15.3183 23.3779C15.3183 23.7009 15.5336 24.0854 16.1642 23.9623C21.0871 22.3484 24.6094 17.7341 24.6094 12.3047C24.6094 5.50942 19.0999 0 12.3047 0Z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://x.com/angular"
|
||||||
|
aria-label="X"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
alt="X"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="https://www.youtube.com/channel/UCbn1OgGei-DV7aSRo_HaAiw"
|
||||||
|
aria-label="Youtube"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="29"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 0 29 20"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
alt="Youtube"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="M27.4896 1.52422C27.9301 1.96749 28.2463 2.51866 28.4068 3.12258C29.0004 5.35161 29.0004 10 29.0004 10C29.0004 10 29.0004 14.6484 28.4068 16.8774C28.2463 17.4813 27.9301 18.0325 27.4896 18.4758C27.0492 18.9191 26.5 19.2389 25.8972 19.4032C23.6778 20 14.8068 20 14.8068 20C14.8068 20 5.93586 20 3.71651 19.4032C3.11363 19.2389 2.56449 18.9191 2.12405 18.4758C1.68361 18.0325 1.36732 17.4813 1.20683 16.8774C0.613281 14.6484 0.613281 10 0.613281 10C0.613281 10 0.613281 5.35161 1.20683 3.12258C1.36732 2.51866 1.68361 1.96749 2.12405 1.52422C2.56449 1.08095 3.11363 0.76113 3.71651 0.596774C5.93586 0 14.8068 0 14.8068 0C14.8068 0 23.6778 0 25.8972 0.596774C26.5 0.76113 27.0492 1.08095 27.4896 1.52422ZM19.3229 10L11.9036 5.77905V14.221L19.3229 10Z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * * The content above * * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * End of Placeholder * * * * * * * * * * * * -->
|
||||||
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
|
||||||
|
|
||||||
|
<router-outlet />
|
||||||
@@ -5,7 +5,7 @@ import { RouterOutlet } from '@angular/router';
|
|||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [RouterOutlet],
|
imports: [RouterOutlet],
|
||||||
template: '<router-outlet />',
|
template: `<router-outlet />`,
|
||||||
styles: [`
|
styles: [`
|
||||||
:host {
|
:host {
|
||||||
display: block;
|
display: block;
|
||||||
@@ -1,16 +1,14 @@
|
|||||||
// ============================================================================
|
// ============================================================================
|
||||||
// Adaptive Navigation — Desktop sidebar / Mobile header
|
// Adaptive Navigation — Desktop sidebar / Mobile header
|
||||||
// Per CUB-27 spec breakpoints:
|
// Desktop (≥768px): 72px sidebar with full navigation items
|
||||||
// Compact (0–599px): Mobile header + hamburger + drawer
|
// Mobile (<768px): 56px compact header with hamburger menu
|
||||||
// Medium (600–1023px): Collapsed sidebar (icon-only, 72px)
|
|
||||||
// Expanded (≥1024px): Full sidebar with labels (72px collapsed, 256px expanded)
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Desktop Sidebar (visible ≥600px)
|
// Desktop Sidebar (visible ≥768px)
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
.adaptive-nav__sidebar {
|
.adaptive-nav__sidebar {
|
||||||
display: none; // Hidden by default (mobile-first)
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: var(--cc-nav-rail-collapsed-width, 72px);
|
width: var(--cc-nav-rail-collapsed-width, 72px);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@@ -154,12 +152,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Mobile Header (visible <600px only)
|
// Mobile Header (visible <768px)
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
.adaptive-nav__mobile-header {
|
.adaptive-nav__mobile-header {
|
||||||
display: none; // Hidden on desktop, shown on mobile via media query
|
display: none; // Hidden on desktop, shown on mobile via media query
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: var(--cc-header-height-compact, 56px);
|
height: 56px;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
background-color: var(--cc-surface-container-high);
|
background-color: var(--cc-surface-container-high);
|
||||||
border-bottom: 1px solid var(--cc-outline);
|
border-bottom: 1px solid var(--cc-outline);
|
||||||
@@ -169,8 +167,6 @@
|
|||||||
|
|
||||||
.adaptive-nav__hamburger {
|
.adaptive-nav__hamburger {
|
||||||
color: var(--cc-on-surface-variant) !important;
|
color: var(--cc-on-surface-variant) !important;
|
||||||
min-width: 48px;
|
|
||||||
min-height: 48px;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--cc-on-surface) !important;
|
color: var(--cc-on-surface) !important;
|
||||||
@@ -200,8 +196,6 @@
|
|||||||
|
|
||||||
.adaptive-nav__mobile-action {
|
.adaptive-nav__mobile-action {
|
||||||
color: var(--cc-on-surface-variant) !important;
|
color: var(--cc-on-surface-variant) !important;
|
||||||
min-width: 48px;
|
|
||||||
min-height: 48px;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--cc-on-surface) !important;
|
color: var(--cc-on-surface) !important;
|
||||||
@@ -220,7 +214,7 @@
|
|||||||
|
|
||||||
.adaptive-nav__mobile-drawer {
|
.adaptive-nav__mobile-drawer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: var(--cc-header-height-compact, 56px); // Below header
|
top: 56px; // Below header
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 280px;
|
width: 280px;
|
||||||
@@ -277,73 +271,34 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Media Queries — Layout Switch (CUB-27 breakpoints)
|
// Media Queries — Layout Switch
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
// Desktop (≥768px): Show sidebar, hide mobile header
|
||||||
// Compact (0–599px): Show mobile header, hide sidebar
|
// Mobile (<768px): Hide sidebar, show compact header
|
||||||
@media (max-width: 599px) {
|
// ---------------------------------------------------------------------------
|
||||||
|
@media (min-width: 768px) {
|
||||||
.adaptive-nav__sidebar {
|
.adaptive-nav__sidebar {
|
||||||
display: none;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adaptive-nav__mobile-header {
|
.adaptive-nav__mobile-header {
|
||||||
display: flex;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hide mobile drawer and overlay on desktop
|
// Hide mobile drawer and overlay on desktop
|
||||||
.adaptive-nav__overlay,
|
.adaptive-nav__overlay,
|
||||||
.adaptive-nav__mobile-drawer {
|
.adaptive-nav__mobile-drawer {
|
||||||
// These are conditional via @if in template, no display:none needed
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Medium (600–1023px): Show collapsed sidebar (icon-only), hide mobile
|
|
||||||
@media (min-width: 600px) and (max-width: 1023px) {
|
|
||||||
.adaptive-nav__sidebar {
|
|
||||||
display: flex;
|
|
||||||
width: var(--cc-nav-rail-collapsed-width, 72px);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Hide labels on medium (collapsed)
|
|
||||||
.adaptive-nav__sidebar-label,
|
|
||||||
.adaptive-nav__brand {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adaptive-nav__sidebar-header {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.adaptive-nav__sidebar-item {
|
@media (max-width: 767px) {
|
||||||
flex-direction: column;
|
.adaptive-nav__sidebar {
|
||||||
justify-content: center;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adaptive-nav__mobile-header {
|
.adaptive-nav__mobile-header {
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.adaptive-nav__overlay,
|
|
||||||
.adaptive-nav__mobile-drawer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Expanded (≥1024px): Show sidebar with labels
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.adaptive-nav__sidebar {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
width: var(--cc-nav-rail-collapsed-width, 72px);
|
|
||||||
transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.adaptive-nav__mobile-header {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.adaptive-nav__overlay,
|
|
||||||
.adaptive-nav__mobile-drawer {
|
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -358,8 +313,4 @@
|
|||||||
.adaptive-nav__mobile-drawer {
|
.adaptive-nav__mobile-drawer {
|
||||||
animation: none;
|
animation: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.adaptive-nav__sidebar {
|
|
||||||
transition: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { ChangeDetectionStrategy, Component, signal, HostListener, OnDestroy, OnInit } from '@angular/core';
|
import { ChangeDetectionStrategy, Component, signal } from '@angular/core';
|
||||||
import { RouterLink, RouterLinkActive } from '@angular/router';
|
import { RouterLink, RouterLinkActive } from '@angular/router';
|
||||||
import { MatIconModule } from '@angular/material/icon';
|
import { MatIconModule } from '@angular/material/icon';
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
@@ -8,14 +8,13 @@ import { NAV_DESTINATIONS } from '../../models/nav.model';
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Adaptive Navigation Component — switches between desktop sidebar
|
* Adaptive Navigation Component — switches between desktop sidebar
|
||||||
* and mobile header layouts using CSS media queries + JS breakpoint sync.
|
* and mobile header layouts using CSS media queries.
|
||||||
*
|
*
|
||||||
* Per CUB-27 spec breakpoints:
|
* Desktop (≥768px): 72px sidebar with full navigation items.
|
||||||
* Compact (0–599px): Mobile header + hamburger + bottom nav
|
* Mobile (<768px): 56px compact header with hamburger menu.
|
||||||
* Medium (600–1023px): Collapsed sidebar (icon-only)
|
|
||||||
* Expanded (≥1024px): Expandable sidebar (hover/click)
|
|
||||||
*
|
*
|
||||||
* The LIVE status indicator is visible in all layouts.
|
* The LIVE status indicator is visible in both layouts.
|
||||||
|
* Per spec Section 3.1 (kiosk) and 3.2 (mobile).
|
||||||
*/
|
*/
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-adaptive-navigation',
|
selector: 'app-adaptive-navigation',
|
||||||
@@ -32,7 +31,7 @@ import { NAV_DESTINATIONS } from '../../models/nav.model';
|
|||||||
styleUrl: './adaptive-navigation.component.scss',
|
styleUrl: './adaptive-navigation.component.scss',
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export class AdaptiveNavigationComponent implements OnInit, OnDestroy {
|
export class AdaptiveNavigationComponent {
|
||||||
/** Navigation destinations shared with other nav components */
|
/** Navigation destinations shared with other nav components */
|
||||||
protected readonly destinations = NAV_DESTINATIONS;
|
protected readonly destinations = NAV_DESTINATIONS;
|
||||||
|
|
||||||
@@ -42,22 +41,6 @@ export class AdaptiveNavigationComponent implements OnInit, OnDestroy {
|
|||||||
/** Live connection status */
|
/** Live connection status */
|
||||||
protected readonly isConnected = signal(true);
|
protected readonly isConnected = signal(true);
|
||||||
|
|
||||||
/** Responsive breakpoint state */
|
|
||||||
protected readonly isMedium = signal(false);
|
|
||||||
protected readonly isExpanded = signal(false);
|
|
||||||
|
|
||||||
private readonly COMPACT_MAX = 599;
|
|
||||||
private readonly MEDIUM_MAX = 1023;
|
|
||||||
|
|
||||||
ngOnInit(): void {
|
|
||||||
this.updateBreakpoint();
|
|
||||||
}
|
|
||||||
|
|
||||||
@HostListener('window:resize')
|
|
||||||
onResize(): void {
|
|
||||||
this.updateBreakpoint();
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Toggle mobile menu */
|
/** Toggle mobile menu */
|
||||||
toggleMobileMenu(): void {
|
toggleMobileMenu(): void {
|
||||||
this.mobileMenuOpen.update((v) => !v);
|
this.mobileMenuOpen.update((v) => !v);
|
||||||
@@ -67,18 +50,4 @@ export class AdaptiveNavigationComponent implements OnInit, OnDestroy {
|
|||||||
closeMobileMenu(): void {
|
closeMobileMenu(): void {
|
||||||
this.mobileMenuOpen.set(false);
|
this.mobileMenuOpen.set(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
private updateBreakpoint(): void {
|
|
||||||
const w = window.innerWidth;
|
|
||||||
this.isMedium.set(w >= this.COMPACT_MAX + 1 && w <= this.MEDIUM_MAX);
|
|
||||||
this.isExpanded.set(w > this.MEDIUM_MAX);
|
|
||||||
// Close mobile menu when switching to desktop
|
|
||||||
if (w > this.COMPACT_MAX) {
|
|
||||||
this.mobileMenuOpen.set(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnDestroy(): void {
|
|
||||||
// HostListener auto-unsubscribes
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
// ============================================================================
|
// ============================================================================
|
||||||
// Bottom Navigation Bar — Mobile Navigation
|
// Bottom Navigation Bar — Mobile Navigation
|
||||||
// Per CUB-27 spec breakpoints:
|
// Per spec Section 3.2: M3 NavigationBar pattern
|
||||||
// Compact (0–599px): Visible — M3 NavigationBar pattern
|
// Visible only on compact breakpoint (< 600px)
|
||||||
// Medium+ (≥600px): Hidden — nav rail takes over
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
.bottom-nav {
|
.bottom-nav {
|
||||||
@@ -18,8 +17,6 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
// Safe area inset for notched devices
|
|
||||||
padding-bottom: env(safe-area-inset-bottom, 0px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-nav__item {
|
.bottom-nav__item {
|
||||||
@@ -71,24 +68,9 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// Show bottom nav only on compact breakpoint
|
||||||
// Compact (0–599px): Show bottom nav
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (max-width: 599px) {
|
@media (max-width: 599px) {
|
||||||
.bottom-nav {
|
.bottom-nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Medium+ (≥600px): Hidden — nav rail takes over
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Accessibility: Reduced Motion
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
|
||||||
.bottom-nav__item {
|
|
||||||
transition: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
76
frontend/src/app/layout/header-bar/header-bar.component.scss
Normal file
76
frontend/src/app/layout/header-bar/header-bar.component.scss
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
// ============================================================================
|
||||||
|
// Header Bar — Top App Bar
|
||||||
|
// Per spec Section 3.1: 64px tall, M3 MediumTopAppBar on expanded
|
||||||
|
// Section 3.2: SmallTopAppBar on mobile
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
.header-bar {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: var(--cc-header-height);
|
||||||
|
padding: 0 var(--cc-section-padding);
|
||||||
|
background-color: var(--cc-surface-container-high);
|
||||||
|
border-bottom: 1px solid var(--cc-outline);
|
||||||
|
z-index: 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__title {
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: var(--cc-on-surface);
|
||||||
|
margin: 0;
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__actions {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__action-btn {
|
||||||
|
color: var(--cc-on-surface-variant) !important;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--cc-on-surface) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__live-dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 6px;
|
||||||
|
background-color: var(--status-error);
|
||||||
|
vertical-align: middle;
|
||||||
|
|
||||||
|
&--connected {
|
||||||
|
background-color: var(--status-active);
|
||||||
|
animation: pulse-active 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__live-label {
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--cc-on-surface-variant);
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mobile: smaller title
|
||||||
|
@media (max-width: 599px) {
|
||||||
|
.header-bar {
|
||||||
|
padding: 0 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__title {
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-bar__live-label {
|
||||||
|
display: none; // Space saving on mobile — dot alone is enough
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
// ============================================================================
|
||||||
|
// Layout Shell — Adaptive layout container
|
||||||
|
// Desktop: Nav Rail (left) + Main Content (right)
|
||||||
|
// Mobile: Header + Content + Bottom Nav (stacked)
|
||||||
|
// ============================================================================
|
||||||
|
|
||||||
|
.layout-shell {
|
||||||
|
display: flex;
|
||||||
|
min-height: 100vh;
|
||||||
|
background-color: var(--cc-background);
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-shell__nav-rail {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-shell__main {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-width: 0; // Prevent flex overflow
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-shell__header {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-shell__content {
|
||||||
|
flex: 1;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
padding: var(--cc-section-padding);
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-shell__bottom-nav {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mobile: Stack layout vertically, add bottom padding for bottom nav
|
||||||
|
@media (max-width: 599px) {
|
||||||
|
.layout-shell {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-shell__content {
|
||||||
|
// Account for bottom nav bar height
|
||||||
|
padding-bottom: calc(var(--cc-bottom-nav-height) + 16px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tablet: Ensure content padding accommodates collapsed nav rail
|
||||||
|
@media (min-width: 600px) and (max-width: 1023px) {
|
||||||
|
.layout-shell__content {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,14 +1,11 @@
|
|||||||
// ============================================================================
|
// ============================================================================
|
||||||
// Nav Rail — Desktop/Kiosk Navigation
|
// Nav Rail — Desktop/Kiosk Navigation
|
||||||
// Per CUB-27 spec breakpoints:
|
// Per spec Section 3.1: 72px collapsed / 256px expanded
|
||||||
// Compact (0–599px): Hidden — bottom nav takes over
|
|
||||||
// Medium (600–1023px): Collapsed (72px), icon-only
|
|
||||||
// Expanded (≥1024px): Expandable (72px collapsed / 256px expanded on hover)
|
|
||||||
// Section 5.4: Spacing & Grid
|
// Section 5.4: Spacing & Grid
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
.nav-rail {
|
.nav-rail {
|
||||||
display: none; // Hidden by default (mobile-first)
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: var(--cc-nav-rail-collapsed-width);
|
width: var(--cc-nav-rail-collapsed-width);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@@ -107,52 +104,9 @@
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// Responsive: Hide nav rail on mobile (bottom nav takes over)
|
||||||
// Medium (600–1023px): Show collapsed nav rail (icon-only)
|
@media (max-width: 599px) {
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (min-width: 600px) and (max-width: 1023px) {
|
|
||||||
.nav-rail {
|
.nav-rail {
|
||||||
display: flex;
|
|
||||||
width: var(--cc-nav-rail-collapsed-width);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Always collapsed on medium — hide labels
|
|
||||||
.nav-rail__brand,
|
|
||||||
.nav-rail__label {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-rail__header {
|
|
||||||
justify-content: center;
|
|
||||||
padding: 16px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-rail__item {
|
|
||||||
justify-content: center;
|
|
||||||
padding: 0;
|
|
||||||
margin: 2px 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Disable expand on medium
|
|
||||||
.nav-rail--expanded {
|
|
||||||
width: var(--cc-nav-rail-collapsed-width);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Expanded (≥1024px): Full expandable nav rail
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (min-width: 1024px) {
|
|
||||||
.nav-rail {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
// Accessibility: Reduced Motion
|
|
||||||
// ---------------------------------------------------------------------------
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
|
||||||
.nav-rail {
|
|
||||||
transition: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
32
frontend/src/app/layout/nav-rail/nav-rail.component.ts
Normal file
32
frontend/src/app/layout/nav-rail/nav-rail.component.ts
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import { ChangeDetectionStrategy, Component, signal, HostListener } from '@angular/core';
|
||||||
|
import { RouterLink, RouterLinkActive } from '@angular/router';
|
||||||
|
import { MatIconModule } from '@angular/material/icon';
|
||||||
|
import { MatBadgeModule } from '@angular/material/badge';
|
||||||
|
import { NAV_DESTINATIONS } from '../../models/nav.model';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-nav-rail',
|
||||||
|
standalone: true,
|
||||||
|
imports: [RouterLink, RouterLinkActive, MatIconModule, MatBadgeModule],
|
||||||
|
templateUrl: './nav-rail.component.html',
|
||||||
|
styleUrl: './nav-rail.component.scss',
|
||||||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
|
})
|
||||||
|
export class NavRailComponent {
|
||||||
|
protected readonly destinations = NAV_DESTINATIONS;
|
||||||
|
protected readonly expanded = signal(false);
|
||||||
|
|
||||||
|
@HostListener('mouseenter')
|
||||||
|
onHoverIn(): void {
|
||||||
|
this.expanded.set(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@HostListener('mouseleave')
|
||||||
|
onHoverOut(): void {
|
||||||
|
this.expanded.set(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleExpand(): void {
|
||||||
|
this.expanded.update(v => !v);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,21 +6,23 @@
|
|||||||
// Expanded (≥1024px): 3+ column auto-fill grid
|
// Expanded (≥1024px): 3+ column auto-fill grid
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
|
@use '../../../styles/tokens' as tokens;
|
||||||
|
|
||||||
.hub-page {
|
.hub-page {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 16px;
|
gap: tokens.$spacing-4;
|
||||||
min-height: 400px;
|
min-height: 400px;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
padding: var(--cc-section-padding);
|
padding: tokens.$cc-section-padding;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hub-page__title {
|
.hub-page__title {
|
||||||
grid-column: 1 / -1;
|
grid-column: 1 / -1;
|
||||||
font-size: 24px;
|
font-size: tokens.$font-size-headline-small;
|
||||||
font-weight: 600;
|
font-weight: tokens.$font-weight-bold;
|
||||||
color: var(--cc-on-surface);
|
color: var(--cc-on-surface);
|
||||||
margin: 0 0 8px;
|
margin: 0 0 tokens.$spacing-2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
@@ -28,8 +30,8 @@
|
|||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
.hub-page__filters {
|
.hub-page__filters {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 8px;
|
gap: tokens.$spacing-2;
|
||||||
padding: 4px 0;
|
padding: tokens.$spacing-1 0;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
scrollbar-width: none; // Firefox
|
scrollbar-width: none; // Firefox
|
||||||
@@ -47,15 +49,17 @@
|
|||||||
min-width: 48px; // Touch target
|
min-width: 48px; // Touch target
|
||||||
padding: 6px 16px;
|
padding: 6px 16px;
|
||||||
border: 1px solid var(--cc-outline);
|
border: 1px solid var(--cc-outline);
|
||||||
border-radius: 20px;
|
border-radius: tokens.$radius-full;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: var(--cc-on-surface-variant);
|
color: var(--cc-on-surface-variant);
|
||||||
font-size: 13px;
|
font-size: tokens.$font-size-label-medium;
|
||||||
font-weight: 500;
|
font-weight: tokens.$font-weight-medium;
|
||||||
letter-spacing: 0.02em;
|
letter-spacing: tokens.$letter-spacing-wide;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
|
transition: background-color tokens.$duration-short tokens.$easing-standard,
|
||||||
|
color tokens.$duration-short tokens.$easing-standard,
|
||||||
|
border-color tokens.$duration-short tokens.$easing-standard;
|
||||||
flex-shrink: 0; // Prevent shrinking in scroll container
|
flex-shrink: 0; // Prevent shrinking in scroll container
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@@ -64,8 +68,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:focus-visible {
|
&:focus-visible {
|
||||||
outline: 2px solid var(--status-active);
|
outline: tokens.$focus-ring-width tokens.$focus-ring-style var(--status-active);
|
||||||
outline-offset: 2px;
|
outline-offset: tokens.$focus-ring-offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
@@ -81,7 +85,7 @@
|
|||||||
.hub-page__grid {
|
.hub-page__grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
gap: var(--cc-card-gap);
|
gap: tokens.$cc-card-gap;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
@@ -92,31 +96,30 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 48px 24px;
|
padding: 48px tokens.$spacing-6;
|
||||||
color: var(--cc-on-surface-variant);
|
color: var(--cc-on-surface-variant);
|
||||||
font-size: 16px;
|
font-size: tokens.$font-size-body-large;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Compact (0–599px): Single-column cards
|
// Compact (0–599px): Single-column cards
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
@media (max-width: 599px) {
|
@media (max-width: tokens.$cc-breakpoint-mobile) {
|
||||||
.hub-page {
|
.hub-page {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hub-page__grid {
|
.hub-page__grid {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
gap: 12px;
|
gap: tokens.$spacing-3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hub-page__filters {
|
.hub-page__filters {
|
||||||
padding: 4px 0 8px;
|
padding: tokens.$spacing-1 0 tokens.$spacing-2;
|
||||||
// Ensure horizontal scroll on mobile
|
margin: 0 (0 - tokens.$spacing-2);
|
||||||
margin: 0 -8px;
|
padding-left: tokens.$spacing-2;
|
||||||
padding-left: 8px;
|
padding-right: tokens.$spacing-2;
|
||||||
padding-right: 8px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -126,16 +129,16 @@
|
|||||||
@media (min-width: 600px) and (max-width: 1023px) {
|
@media (min-width: 600px) and (max-width: 1023px) {
|
||||||
.hub-page__grid {
|
.hub-page__grid {
|
||||||
grid-template-columns: repeat(2, 1fr);
|
grid-template-columns: repeat(2, 1fr);
|
||||||
gap: var(--cc-card-gap);
|
gap: tokens.$cc-card-gap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
// Expanded (≥1024px): 3+ column auto-fill grid
|
// Expanded (≥1024px): 3+ column auto-fill grid
|
||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: tokens.$cc-breakpoint-desktop) {
|
||||||
.hub-page__grid {
|
.hub-page__grid {
|
||||||
grid-template-columns: repeat(auto-fill, minmax(var(--cc-card-min-width), 1fr));
|
grid-template-columns: repeat(auto-fill, minmax(tokens.$cc-card-min-width, 1fr));
|
||||||
gap: var(--cc-card-gap);
|
gap: tokens.$cc-card-gap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user