Compare commits
76 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fc5ef23af8 | |||
| c47eae1381 | |||
| bcfe73411c | |||
| 32acf6dc17 | |||
| 6b87e8a1fe | |||
| 3247f28c87 | |||
| 891e8b83ed | |||
| ae1f347549 | |||
| 7e62ff6d9a | |||
| adcc9afe05 | |||
| 24d1e472a2 | |||
| da1b210865 | |||
| eadf630c61 | |||
| 4fb073a1ff | |||
| 9ddfa0c3c7 | |||
| a92e188f84 | |||
| dcf181d640 | |||
| 1a8556df68 | |||
| a5f0c41cba | |||
| 268093d223 | |||
| c64a7b8d44 | |||
| 0b368b09fa | |||
| 212dd1c435 | |||
| 69af324b1b | |||
| 5758074f6f | |||
| 5b9e14b442 | |||
| 618e3e84be | |||
| 2ff7fbd9e7 | |||
| 8a94d83e7e | |||
| 07590f1c4f | |||
| 3c7a73853d | |||
| 9b4f1ce197 | |||
| 5735e3008d | |||
| 626ae02df0 | |||
| 7f47ca84fa | |||
| eac4fb423e | |||
| 14ac0f46de | |||
| 5a565f8165 | |||
| 12cbc68db6 | |||
| 699574e345 | |||
| 35c1a861f5 | |||
| 27101bbdd6 | |||
| 6ba04effcf | |||
| 913825f596 | |||
| 93ce3e07f0 | |||
| 25c6934801 | |||
| fcf96590bb | |||
| eeba19bbb6 | |||
| dea9e7e6ff | |||
| 85bf971547 | |||
| 5d86a5124b | |||
| 7fdc5f2d22 | |||
| 630b3778db | |||
| 248a0b1828 | |||
| fd429bdcdd | |||
| bbebccfcf3 | |||
| fd67af7101 | |||
| 829d7b3d8f | |||
| 35586729ba | |||
| 7d57792a82 | |||
| f41dbc43fa | |||
| 76c24782c8 | |||
| 4ebee9e695 | |||
| a5ca826a6e | |||
| ecd214652a | |||
| 99538e30c8 | |||
| 90de5ca868 | |||
| 354dbc849b | |||
| ddd25b6eb3 | |||
| cc6243d630 | |||
| 9bceb2312d | |||
| 4c219c0084 | |||
| a75293fce4 | |||
| 883e8a8bcc | |||
| 282e6b604d | |||
| fdd6fc8376 |
@@ -0,0 +1,13 @@
|
|||||||
|
.DS_Store
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
|
||||||
|
**/.pnpm-store
|
||||||
|
**/.output
|
||||||
|
**/dist
|
||||||
|
**/node_modules
|
||||||
|
|
||||||
|
Commands
|
||||||
|
Docker
|
||||||
|
Documentation
|
||||||
|
Env
|
||||||
@@ -21,3 +21,11 @@ pnpm-debug.log*
|
|||||||
# OS / editor files
|
# OS / editor files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
|
# Go build output
|
||||||
|
tmp/
|
||||||
|
bin/
|
||||||
|
|
||||||
|
.cgcignore
|
||||||
|
|
||||||
|
POSIX/
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
root = "."
|
||||||
|
testdata_dir = "testdata"
|
||||||
|
tmp_dir = "tmp/dev"
|
||||||
|
|
||||||
|
[build]
|
||||||
|
args_bin = []
|
||||||
|
bin = "./tmp/dev/bin/api"
|
||||||
|
cmd = "go build -o ./tmp/dev/bin/api ./cmd/api"
|
||||||
|
delay = 1000
|
||||||
|
exclude_dir = ["tmp", "vendor", "testdata"]
|
||||||
|
exclude_file = []
|
||||||
|
exclude_regex = ["_test.go"]
|
||||||
|
exclude_unchanged = false
|
||||||
|
follow_symlink = false
|
||||||
|
full_bin = ""
|
||||||
|
include_dir = []
|
||||||
|
include_ext = ["go", "sql"]
|
||||||
|
include_file = []
|
||||||
|
kill_delay = "0s"
|
||||||
|
log = "tmp/dev/logs/build-errors.api.log"
|
||||||
|
poll = false
|
||||||
|
poll_interval = 0
|
||||||
|
post_cmd = []
|
||||||
|
pre_cmd = []
|
||||||
|
rerun = false
|
||||||
|
rerun_delay = 500
|
||||||
|
send_interrupt = false
|
||||||
|
stop_on_error = true
|
||||||
|
|
||||||
|
[color]
|
||||||
|
app = ""
|
||||||
|
build = "yellow"
|
||||||
|
main = "magenta"
|
||||||
|
runner = "green"
|
||||||
|
watcher = "cyan"
|
||||||
|
|
||||||
|
[log]
|
||||||
|
main_only = false
|
||||||
|
silent = false
|
||||||
|
time = true
|
||||||
|
|
||||||
|
[misc]
|
||||||
|
clean_on_exit = false
|
||||||
|
|
||||||
|
[proxy]
|
||||||
|
app_port = 0
|
||||||
|
enabled = false
|
||||||
|
proxy_port = 0
|
||||||
|
|
||||||
|
[screen]
|
||||||
|
clear_on_rebuild = true
|
||||||
|
keep_scroll = true
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
root = "."
|
||||||
|
testdata_dir = "testdata"
|
||||||
|
tmp_dir = "tmp/dev"
|
||||||
|
|
||||||
|
[build]
|
||||||
|
args_bin = []
|
||||||
|
bin = "./tmp/dev/bin/web"
|
||||||
|
cmd = "go build -o ./tmp/dev/bin/web ./cmd/web"
|
||||||
|
delay = 1000
|
||||||
|
exclude_dir = ["tmp", "vendor", "testdata"]
|
||||||
|
exclude_file = []
|
||||||
|
exclude_regex = ["_test.go"]
|
||||||
|
exclude_unchanged = false
|
||||||
|
follow_symlink = false
|
||||||
|
full_bin = ""
|
||||||
|
include_dir = []
|
||||||
|
include_ext = ["go", "sql"]
|
||||||
|
include_file = []
|
||||||
|
kill_delay = "0s"
|
||||||
|
log = "tmp/dev/logs/build-errors.web.log"
|
||||||
|
poll = false
|
||||||
|
poll_interval = 0
|
||||||
|
post_cmd = []
|
||||||
|
pre_cmd = []
|
||||||
|
rerun = false
|
||||||
|
rerun_delay = 500
|
||||||
|
send_interrupt = false
|
||||||
|
stop_on_error = true
|
||||||
|
|
||||||
|
[color]
|
||||||
|
app = ""
|
||||||
|
build = "yellow"
|
||||||
|
main = "magenta"
|
||||||
|
runner = "green"
|
||||||
|
watcher = "cyan"
|
||||||
|
|
||||||
|
[log]
|
||||||
|
main_only = false
|
||||||
|
silent = false
|
||||||
|
time = true
|
||||||
|
|
||||||
|
[misc]
|
||||||
|
clean_on_exit = false
|
||||||
|
|
||||||
|
[proxy]
|
||||||
|
app_port = 0
|
||||||
|
enabled = false
|
||||||
|
proxy_port = 0
|
||||||
|
|
||||||
|
[screen]
|
||||||
|
clear_on_rebuild = true
|
||||||
|
keep_scroll = true
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
root = "."
|
||||||
|
testdata_dir = "testdata"
|
||||||
|
tmp_dir = "tmp/dev"
|
||||||
|
|
||||||
|
[build]
|
||||||
|
args_bin = []
|
||||||
|
bin = "./tmp/dev/bin/worker"
|
||||||
|
cmd = "go build -o ./tmp/dev/bin/worker ./cmd/worker"
|
||||||
|
delay = 1000
|
||||||
|
exclude_dir = ["tmp", "vendor", "testdata"]
|
||||||
|
exclude_file = []
|
||||||
|
exclude_regex = ["_test.go"]
|
||||||
|
exclude_unchanged = false
|
||||||
|
follow_symlink = false
|
||||||
|
full_bin = ""
|
||||||
|
include_dir = []
|
||||||
|
include_ext = ["go", "sql"]
|
||||||
|
include_file = []
|
||||||
|
kill_delay = "0s"
|
||||||
|
log = "tmp/dev/logs/build-errors.worker.log"
|
||||||
|
poll = false
|
||||||
|
poll_interval = 0
|
||||||
|
post_cmd = []
|
||||||
|
pre_cmd = []
|
||||||
|
rerun = false
|
||||||
|
rerun_delay = 500
|
||||||
|
send_interrupt = false
|
||||||
|
stop_on_error = true
|
||||||
|
|
||||||
|
[color]
|
||||||
|
app = ""
|
||||||
|
build = "yellow"
|
||||||
|
main = "magenta"
|
||||||
|
runner = "green"
|
||||||
|
watcher = "cyan"
|
||||||
|
|
||||||
|
[log]
|
||||||
|
main_only = false
|
||||||
|
silent = false
|
||||||
|
time = true
|
||||||
|
|
||||||
|
[misc]
|
||||||
|
clean_on_exit = false
|
||||||
|
|
||||||
|
[proxy]
|
||||||
|
app_port = 0
|
||||||
|
enabled = false
|
||||||
|
proxy_port = 0
|
||||||
|
|
||||||
|
[screen]
|
||||||
|
clear_on_rebuild = true
|
||||||
|
keep_scroll = true
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
tmp
|
||||||
|
testdata
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
# syntax=docker/dockerfile:1.7
|
||||||
|
|
||||||
|
FROM golang:1.25.7-alpine AS base
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN apk add --no-cache ca-certificates curl git tzdata && update-ca-certificates
|
||||||
|
|
||||||
|
COPY go.mod go.sum ./
|
||||||
|
RUN go mod download
|
||||||
|
|
||||||
|
FROM base AS development
|
||||||
|
|
||||||
|
RUN curl -fsSL https://raw.githubusercontent.com/air-verse/air/master/install.sh | sh -s -- -b /usr/local/bin
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
CMD ["air", "-c", ".air.web.toml"]
|
||||||
|
|
||||||
|
FROM base AS builder
|
||||||
|
|
||||||
|
ARG SERVICE_NAME=web
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /out/app ./cmd/${SERVICE_NAME}
|
||||||
|
|
||||||
|
FROM alpine:3.22 AS runtime
|
||||||
|
|
||||||
|
RUN apk add --no-cache ca-certificates tzdata && update-ca-certificates
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY --from=builder /out/app /usr/local/bin/app
|
||||||
|
|
||||||
|
CMD ["/usr/local/bin/app"]
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"moku-backend/internal/bootstrap"
|
||||||
|
"moku-backend/internal/httpx"
|
||||||
|
"moku-backend/internal/process"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
app, err := bootstrap.New("api")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("bootstrap api service: %v", err)
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
if closeErr := app.Close(); closeErr != nil {
|
||||||
|
app.Logger.Error("close api service", "error", closeErr)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
handler := httpx.NewRouter(httpx.RouterConfig{
|
||||||
|
ServiceName: app.ServiceName,
|
||||||
|
Config: app.Config,
|
||||||
|
Logger: app.Logger,
|
||||||
|
BuildInfo: app.BuildInfo,
|
||||||
|
Database: app.Database,
|
||||||
|
Cache: app.Cache,
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := process.RunHTTPServer(app.ServiceName, app.Config.Address(app.ServiceName), handler, app.Logger, app.Config.ShutdownTimeout); err != nil {
|
||||||
|
app.Logger.Error("api service stopped", "error", err)
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"moku-backend/internal/config"
|
||||||
|
"moku-backend/internal/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
cfg := config.Load()
|
||||||
|
|
||||||
|
db, err := database.NewPostgres(cfg.PostgresURL)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("connect database for migrations: %v", err)
|
||||||
|
}
|
||||||
|
defer db.Close()
|
||||||
|
|
||||||
|
command := "up"
|
||||||
|
if len(os.Args) > 1 {
|
||||||
|
command = os.Args[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
switch command {
|
||||||
|
case "up":
|
||||||
|
if err := db.MigrateUp(); err != nil {
|
||||||
|
log.Fatalf("run migrations: %v", err)
|
||||||
|
}
|
||||||
|
fmt.Println("migrations applied")
|
||||||
|
case "down":
|
||||||
|
if err := db.MigrateDown(); err != nil {
|
||||||
|
log.Fatalf("roll back migration: %v", err)
|
||||||
|
}
|
||||||
|
fmt.Println("latest migration rolled back")
|
||||||
|
case "reset":
|
||||||
|
if err := db.MigrateReset(); err != nil {
|
||||||
|
log.Fatalf("reset migrations: %v", err)
|
||||||
|
}
|
||||||
|
fmt.Println("migrations reset")
|
||||||
|
case "status":
|
||||||
|
if err := db.MigrateStatus(); err != nil {
|
||||||
|
log.Fatalf("show migration status: %v", err)
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
log.Fatalf("unsupported migrate command %q (supported: up, down, reset, status)", command)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"moku-backend/internal/config"
|
||||||
|
"moku-backend/internal/database"
|
||||||
|
"moku-backend/internal/posixproj"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
command := "rebuild"
|
||||||
|
if len(os.Args) > 1 {
|
||||||
|
command = os.Args[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
switch command {
|
||||||
|
case "rebuild":
|
||||||
|
if err := rebuildProjection(context.Background()); err != nil {
|
||||||
|
log.Fatalf("rebuild POSIX projection: %v", err)
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
log.Fatalf("unsupported posix command %q (supported: rebuild)", command)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func rebuildProjection(ctx context.Context) error {
|
||||||
|
cfg := config.Load()
|
||||||
|
|
||||||
|
db, err := database.NewPostgres(cfg.PostgresURL)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("connect database: %w", err)
|
||||||
|
}
|
||||||
|
defer db.Close()
|
||||||
|
|
||||||
|
summary, err := posixproj.NewProjector(db, cfg.POSIXRoot).RebuildWithSummary(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf(
|
||||||
|
"POSIX projection rebuilt from %s\n total nodes: %d\n directories: %d\n files: %d\n",
|
||||||
|
cfg.POSIXRoot,
|
||||||
|
summary.TotalNodes,
|
||||||
|
summary.DirectoryCount,
|
||||||
|
summary.FileCount,
|
||||||
|
)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"moku-backend/internal/bootstrap"
|
||||||
|
"moku-backend/internal/httpx"
|
||||||
|
"moku-backend/internal/process"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
app, err := bootstrap.New("web")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("bootstrap web service: %v", err)
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
if closeErr := app.Close(); closeErr != nil {
|
||||||
|
app.Logger.Error("close web service", "error", closeErr)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
handler := httpx.NewRouter(httpx.RouterConfig{
|
||||||
|
ServiceName: app.ServiceName,
|
||||||
|
Config: app.Config,
|
||||||
|
Logger: app.Logger,
|
||||||
|
BuildInfo: app.BuildInfo,
|
||||||
|
Database: app.Database,
|
||||||
|
Cache: app.Cache,
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := process.RunHTTPServer(app.ServiceName, app.Config.Address(app.ServiceName), handler, app.Logger, app.Config.ShutdownTimeout); err != nil {
|
||||||
|
app.Logger.Error("web service stopped", "error", err)
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"log"
|
||||||
|
"os/signal"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"moku-backend/internal/bootstrap"
|
||||||
|
"moku-backend/internal/jobs"
|
||||||
|
"moku-backend/internal/worker"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
app, err := bootstrap.New("worker")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("bootstrap worker service: %v", err)
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
if closeErr := app.Close(); closeErr != nil {
|
||||||
|
app.Logger.Error("close worker service", "error", closeErr)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
jobStore := jobs.NewStore(app.Database)
|
||||||
|
runner := worker.NewRunner(jobStore, app.Logger, time.Second)
|
||||||
|
runner.Register(jobs.KindBootstrapStructureMaterialize, func(ctx context.Context, job jobs.Job) error {
|
||||||
|
var payload jobs.BootstrapStructureMaterializePayload
|
||||||
|
if len(job.Payload) > 0 {
|
||||||
|
if err := json.Unmarshal(job.Payload, &payload); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return bootstrap.NewService(app.Database, app.Config.POSIXRoot).ProcessBootstrapStructureMaterialization(ctx, payload.InstallationID)
|
||||||
|
})
|
||||||
|
|
||||||
|
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
|
||||||
|
defer stop()
|
||||||
|
|
||||||
|
app.Logger.Info("worker ready", "service", app.ServiceName, "environment", app.Config.Environment, "pollInterval", time.Second)
|
||||||
|
|
||||||
|
if err := runner.Run(ctx); err != nil {
|
||||||
|
app.Logger.Error("worker stopped", "error", err)
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package db
|
||||||
|
|
||||||
|
import "embed"
|
||||||
|
|
||||||
|
//go:embed migrations/*.sql
|
||||||
|
var Migrations embed.FS
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
-- +goose Up
|
||||||
|
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS organizations (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
slug TEXT NOT NULL UNIQUE,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS workspaces (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
organization_id UUID NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
slug TEXT NOT NULL,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (organization_id, slug)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_workspaces_organization_id ON workspaces (organization_id);
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
DROP TABLE IF EXISTS workspaces;
|
||||||
|
DROP TABLE IF EXISTS organizations;
|
||||||
@@ -0,0 +1,180 @@
|
|||||||
|
-- +goose Up
|
||||||
|
|
||||||
|
CREATE TYPE instance_mode AS ENUM ('personal', 'organizational');
|
||||||
|
CREATE TYPE instance_access AS ENUM ('local', 'remote');
|
||||||
|
CREATE TYPE instance_protocol AS ENUM ('http', 'https');
|
||||||
|
CREATE TYPE workspace_kind AS ENUM ('organization', 'department', 'team', 'project');
|
||||||
|
CREATE TYPE membership_role AS ENUM ('owner', 'admin', 'member');
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS installations (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
singleton BOOLEAN NOT NULL DEFAULT TRUE UNIQUE,
|
||||||
|
mode instance_mode NOT NULL,
|
||||||
|
access instance_access NOT NULL,
|
||||||
|
protocol instance_protocol NOT NULL DEFAULT 'http',
|
||||||
|
host TEXT NOT NULL,
|
||||||
|
is_bootstrapped BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
bootstrapped_at TIMESTAMPTZ,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS users (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
email TEXT NOT NULL,
|
||||||
|
display_name TEXT NOT NULL,
|
||||||
|
password_hash TEXT NOT NULL,
|
||||||
|
is_instance_admin BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_users_email_unique ON users (LOWER(email));
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS user_homes (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
user_id UUID NOT NULL UNIQUE REFERENCES users(id) ON DELETE CASCADE,
|
||||||
|
title TEXT NOT NULL,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
ALTER TABLE organizations
|
||||||
|
ADD COLUMN IF NOT EXISTS created_by_user_id UUID REFERENCES users(id) ON DELETE SET NULL;
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS organization_memberships (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
organization_id UUID NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
|
||||||
|
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
||||||
|
role membership_role NOT NULL DEFAULT 'member',
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (organization_id, user_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_organization_memberships_user_id ON organization_memberships (user_id);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS departments (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
organization_id UUID NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
slug TEXT NOT NULL,
|
||||||
|
created_by_user_id UUID REFERENCES users(id) ON DELETE SET NULL,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (organization_id, slug)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_departments_organization_id ON departments (organization_id);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS teams (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
organization_id UUID NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
|
||||||
|
department_id UUID REFERENCES departments(id) ON DELETE SET NULL,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
slug TEXT NOT NULL,
|
||||||
|
created_by_user_id UUID REFERENCES users(id) ON DELETE SET NULL,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (organization_id, slug)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_teams_organization_id ON teams (organization_id);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_teams_department_id ON teams (department_id);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS team_memberships (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
team_id UUID NOT NULL REFERENCES teams(id) ON DELETE CASCADE,
|
||||||
|
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
||||||
|
role membership_role NOT NULL DEFAULT 'member',
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (team_id, user_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_team_memberships_user_id ON team_memberships (user_id);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS projects (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
organization_id UUID NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
|
||||||
|
department_id UUID REFERENCES departments(id) ON DELETE SET NULL,
|
||||||
|
team_id UUID REFERENCES teams(id) ON DELETE SET NULL,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
slug TEXT NOT NULL,
|
||||||
|
created_by_user_id UUID REFERENCES users(id) ON DELETE SET NULL,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (organization_id, slug)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_projects_organization_id ON projects (organization_id);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_projects_department_id ON projects (department_id);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_projects_team_id ON projects (team_id);
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS project_memberships (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
project_id UUID NOT NULL REFERENCES projects(id) ON DELETE CASCADE,
|
||||||
|
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
||||||
|
role membership_role NOT NULL DEFAULT 'member',
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
UNIQUE (project_id, user_id)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_project_memberships_user_id ON project_memberships (user_id);
|
||||||
|
|
||||||
|
ALTER TABLE workspaces
|
||||||
|
ADD COLUMN IF NOT EXISTS kind workspace_kind NOT NULL DEFAULT 'organization',
|
||||||
|
ADD COLUMN IF NOT EXISTS created_by_user_id UUID REFERENCES users(id) ON DELETE SET NULL,
|
||||||
|
ADD COLUMN IF NOT EXISTS department_id UUID REFERENCES departments(id) ON DELETE SET NULL,
|
||||||
|
ADD COLUMN IF NOT EXISTS team_id UUID REFERENCES teams(id) ON DELETE SET NULL,
|
||||||
|
ADD COLUMN IF NOT EXISTS project_id UUID REFERENCES projects(id) ON DELETE SET NULL;
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_workspaces_department_id ON workspaces (department_id);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_workspaces_team_id ON workspaces (team_id);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_workspaces_project_id ON workspaces (project_id);
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_workspaces_project_id;
|
||||||
|
DROP INDEX IF EXISTS idx_workspaces_team_id;
|
||||||
|
DROP INDEX IF EXISTS idx_workspaces_department_id;
|
||||||
|
|
||||||
|
ALTER TABLE workspaces
|
||||||
|
DROP COLUMN IF EXISTS project_id,
|
||||||
|
DROP COLUMN IF EXISTS team_id,
|
||||||
|
DROP COLUMN IF EXISTS department_id,
|
||||||
|
DROP COLUMN IF EXISTS created_by_user_id,
|
||||||
|
DROP COLUMN IF EXISTS kind;
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_project_memberships_user_id;
|
||||||
|
DROP TABLE IF EXISTS project_memberships;
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_projects_team_id;
|
||||||
|
DROP INDEX IF EXISTS idx_projects_department_id;
|
||||||
|
DROP INDEX IF EXISTS idx_projects_organization_id;
|
||||||
|
DROP TABLE IF EXISTS projects;
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_team_memberships_user_id;
|
||||||
|
DROP TABLE IF EXISTS team_memberships;
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_teams_department_id;
|
||||||
|
DROP INDEX IF EXISTS idx_teams_organization_id;
|
||||||
|
DROP TABLE IF EXISTS teams;
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_departments_organization_id;
|
||||||
|
DROP TABLE IF EXISTS departments;
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_organization_memberships_user_id;
|
||||||
|
DROP TABLE IF EXISTS organization_memberships;
|
||||||
|
|
||||||
|
ALTER TABLE organizations
|
||||||
|
DROP COLUMN IF EXISTS created_by_user_id;
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS user_homes;
|
||||||
|
DROP INDEX IF EXISTS idx_users_email_unique;
|
||||||
|
DROP TABLE IF EXISTS users;
|
||||||
|
DROP TABLE IF EXISTS installations;
|
||||||
|
|
||||||
|
DROP TYPE IF EXISTS membership_role;
|
||||||
|
DROP TYPE IF EXISTS workspace_kind;
|
||||||
|
DROP TYPE IF EXISTS instance_protocol;
|
||||||
|
DROP TYPE IF EXISTS instance_access;
|
||||||
|
DROP TYPE IF EXISTS instance_mode;
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
-- +goose Up
|
||||||
|
|
||||||
|
ALTER TABLE installations
|
||||||
|
ADD COLUMN IF NOT EXISTS name TEXT NOT NULL DEFAULT '';
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
|
||||||
|
ALTER TABLE installations
|
||||||
|
DROP COLUMN IF EXISTS name;
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
-- +goose Up
|
||||||
|
|
||||||
|
CREATE TYPE posix_node_kind AS ENUM ('directory', 'file');
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS posix_nodes (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
path TEXT NOT NULL UNIQUE,
|
||||||
|
parent_path TEXT,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
depth INTEGER NOT NULL,
|
||||||
|
node_kind posix_node_kind NOT NULL,
|
||||||
|
logical_type TEXT NOT NULL DEFAULT 'generic',
|
||||||
|
file_role TEXT,
|
||||||
|
resource_id TEXT,
|
||||||
|
resource_name TEXT,
|
||||||
|
resource_slug TEXT,
|
||||||
|
installation_id TEXT,
|
||||||
|
organization_id TEXT,
|
||||||
|
organization_slug TEXT,
|
||||||
|
department_slug TEXT,
|
||||||
|
team_slug TEXT,
|
||||||
|
project_slug TEXT,
|
||||||
|
personal_slug TEXT,
|
||||||
|
content_json JSONB,
|
||||||
|
size_bytes BIGINT NOT NULL DEFAULT 0,
|
||||||
|
checksum TEXT,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_posix_nodes_parent_path ON posix_nodes (parent_path);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_posix_nodes_logical_type ON posix_nodes (logical_type);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_posix_nodes_project_slug ON posix_nodes (project_slug);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_posix_nodes_department_slug ON posix_nodes (department_slug);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_posix_nodes_team_slug ON posix_nodes (team_slug);
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_posix_nodes_team_slug;
|
||||||
|
DROP INDEX IF EXISTS idx_posix_nodes_department_slug;
|
||||||
|
DROP INDEX IF EXISTS idx_posix_nodes_project_slug;
|
||||||
|
DROP INDEX IF EXISTS idx_posix_nodes_logical_type;
|
||||||
|
DROP INDEX IF EXISTS idx_posix_nodes_parent_path;
|
||||||
|
DROP TABLE IF EXISTS posix_nodes;
|
||||||
|
DROP TYPE IF EXISTS posix_node_kind;
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
-- +goose Up
|
||||||
|
|
||||||
|
CREATE TYPE bootstrap_materialization_status AS ENUM ('not_started', 'pending', 'running', 'succeeded', 'failed');
|
||||||
|
CREATE TYPE background_job_status AS ENUM ('pending', 'running', 'succeeded', 'failed');
|
||||||
|
|
||||||
|
ALTER TABLE installations
|
||||||
|
ADD COLUMN IF NOT EXISTS materialization_status bootstrap_materialization_status NOT NULL DEFAULT 'not_started',
|
||||||
|
ADD COLUMN IF NOT EXISTS materialization_error TEXT,
|
||||||
|
ADD COLUMN IF NOT EXISTS materialization_requested_at TIMESTAMPTZ,
|
||||||
|
ADD COLUMN IF NOT EXISTS materialization_started_at TIMESTAMPTZ,
|
||||||
|
ADD COLUMN IF NOT EXISTS materialization_finished_at TIMESTAMPTZ;
|
||||||
|
|
||||||
|
UPDATE installations
|
||||||
|
SET
|
||||||
|
materialization_status = CASE
|
||||||
|
WHEN is_bootstrapped THEN 'succeeded'::bootstrap_materialization_status
|
||||||
|
ELSE 'not_started'::bootstrap_materialization_status
|
||||||
|
END,
|
||||||
|
materialization_error = NULL,
|
||||||
|
materialization_requested_at = CASE
|
||||||
|
WHEN is_bootstrapped THEN COALESCE(bootstrapped_at, created_at, NOW())
|
||||||
|
ELSE NULL
|
||||||
|
END,
|
||||||
|
materialization_started_at = CASE
|
||||||
|
WHEN is_bootstrapped THEN COALESCE(bootstrapped_at, created_at, NOW())
|
||||||
|
ELSE NULL
|
||||||
|
END,
|
||||||
|
materialization_finished_at = CASE
|
||||||
|
WHEN is_bootstrapped THEN COALESCE(bootstrapped_at, created_at, NOW())
|
||||||
|
ELSE NULL
|
||||||
|
END
|
||||||
|
WHERE materialization_status = 'not_started'::bootstrap_materialization_status;
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS background_jobs (
|
||||||
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||||
|
kind TEXT NOT NULL,
|
||||||
|
status background_job_status NOT NULL DEFAULT 'pending',
|
||||||
|
payload JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||||
|
attempts INTEGER NOT NULL DEFAULT 0,
|
||||||
|
max_attempts INTEGER NOT NULL DEFAULT 1,
|
||||||
|
available_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
started_at TIMESTAMPTZ,
|
||||||
|
finished_at TIMESTAMPTZ,
|
||||||
|
last_error TEXT,
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_background_jobs_claim ON background_jobs (status, available_at, created_at);
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
|
||||||
|
DROP INDEX IF EXISTS idx_background_jobs_claim;
|
||||||
|
DROP TABLE IF EXISTS background_jobs;
|
||||||
|
|
||||||
|
ALTER TABLE installations
|
||||||
|
DROP COLUMN IF EXISTS materialization_finished_at,
|
||||||
|
DROP COLUMN IF EXISTS materialization_started_at,
|
||||||
|
DROP COLUMN IF EXISTS materialization_requested_at,
|
||||||
|
DROP COLUMN IF EXISTS materialization_error,
|
||||||
|
DROP COLUMN IF EXISTS materialization_status;
|
||||||
|
|
||||||
|
DROP TYPE IF EXISTS background_job_status;
|
||||||
|
DROP TYPE IF EXISTS bootstrap_materialization_status;
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
-- name: ListOrganizations :many
|
||||||
|
SELECT id, name, slug, created_at, updated_at
|
||||||
|
FROM organizations
|
||||||
|
ORDER BY created_at DESC;
|
||||||
|
|
||||||
|
-- name: CreateOrganization :one
|
||||||
|
INSERT INTO organizations (name, slug)
|
||||||
|
VALUES ($1, $2)
|
||||||
|
RETURNING id, name, slug, created_at, updated_at;
|
||||||
|
|
||||||
|
-- name: ListWorkspacesByOrganization :many
|
||||||
|
SELECT id, organization_id, name, slug, created_at, updated_at
|
||||||
|
FROM workspaces
|
||||||
|
WHERE organization_id = $1
|
||||||
|
ORDER BY created_at DESC;
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
variable "REGISTRY" {
|
||||||
|
default = "registry.example.com"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "TAG" {
|
||||||
|
default = "latest"
|
||||||
|
}
|
||||||
|
|
||||||
|
target "_app" {
|
||||||
|
context = "."
|
||||||
|
dockerfile = "Dockerfile"
|
||||||
|
}
|
||||||
|
|
||||||
|
target "dev" {
|
||||||
|
inherits = ["_app"]
|
||||||
|
target = "development"
|
||||||
|
tags = ["moku/work-backend:dev"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "dev-image" {
|
||||||
|
inherits = ["_app"]
|
||||||
|
target = "development"
|
||||||
|
tags = ["${REGISTRY}/moku/work-backend:dev-${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "prod-api" {
|
||||||
|
inherits = ["_app"]
|
||||||
|
target = "runtime"
|
||||||
|
args = {
|
||||||
|
SERVICE_NAME = "api"
|
||||||
|
}
|
||||||
|
tags = ["moku/work-backend:local-prod-api"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "prod-worker" {
|
||||||
|
inherits = ["_app"]
|
||||||
|
target = "runtime"
|
||||||
|
args = {
|
||||||
|
SERVICE_NAME = "worker"
|
||||||
|
}
|
||||||
|
tags = ["moku/work-backend:local-prod-worker"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "prod-api-image" {
|
||||||
|
inherits = ["_app"]
|
||||||
|
target = "runtime"
|
||||||
|
args = {
|
||||||
|
SERVICE_NAME = "api"
|
||||||
|
}
|
||||||
|
tags = ["${REGISTRY}/moku/work-backend:prod-api-${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "prod-worker-image" {
|
||||||
|
inherits = ["_app"]
|
||||||
|
target = "runtime"
|
||||||
|
args = {
|
||||||
|
SERVICE_NAME = "worker"
|
||||||
|
}
|
||||||
|
tags = ["${REGISTRY}/moku/work-backend:prod-worker-${TAG}"]
|
||||||
|
}
|
||||||
|
|
||||||
|
group "local" {
|
||||||
|
targets = ["dev", "prod-api", "prod-worker"]
|
||||||
|
}
|
||||||
|
|
||||||
|
group "registry" {
|
||||||
|
targets = ["dev-image", "prod-api-image", "prod-worker-image"]
|
||||||
|
}
|
||||||
|
|
||||||
|
group "default" {
|
||||||
|
targets = ["dev", "prod-api", "prod-worker"]
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
module moku-backend
|
||||||
|
|
||||||
|
go 1.25.7
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/go-chi/chi/v5 v5.3.0
|
||||||
|
github.com/google/uuid v1.6.0
|
||||||
|
github.com/jackc/pgx/v5 v5.10.0
|
||||||
|
github.com/pressly/goose/v3 v3.27.1
|
||||||
|
github.com/redis/go-redis/v9 v9.20.1
|
||||||
|
)
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
||||||
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||||
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
||||||
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
||||||
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
||||||
|
github.com/sethvargo/go-retry v0.3.0 // indirect
|
||||||
|
go.uber.org/atomic v1.11.0 // indirect
|
||||||
|
go.uber.org/multierr v1.11.0 // indirect
|
||||||
|
golang.org/x/sync v0.20.0 // indirect
|
||||||
|
golang.org/x/text v0.36.0 // indirect
|
||||||
|
)
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
github.com/bsm/ginkgo/v2 v2.12.0 h1:Ny8MWAHyOepLGlLKYmXG4IEkioBysk6GpaRTLC8zwWs=
|
||||||
|
github.com/bsm/ginkgo/v2 v2.12.0/go.mod h1:SwYbGRRDovPVboqFv0tPTcG1sN61LM1Z4ARdbAV9g4c=
|
||||||
|
github.com/bsm/gomega v1.27.10 h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA=
|
||||||
|
github.com/bsm/gomega v1.27.10/go.mod h1:JyEr/xRbxbtgWNi8tIEVPUYZ5Dzef52k01W3YH0H+O0=
|
||||||
|
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
|
||||||
|
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||||
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
|
||||||
|
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
|
||||||
|
github.com/go-chi/chi/v5 v5.3.0 h1:halUjDxhshgXHMrao5bB8eNBXo/rnzwr8m5m36glehM=
|
||||||
|
github.com/go-chi/chi/v5 v5.3.0/go.mod h1:R+tYY2hNuVUUjxoPtqUdgBqevM9s9njzkTLutVsOCto=
|
||||||
|
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||||
|
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
|
github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=
|
||||||
|
github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=
|
||||||
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo=
|
||||||
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM=
|
||||||
|
github.com/jackc/pgx/v5 v5.10.0 h1:VhSvgU2jSli8o3AqIEOTJr7rZwAEUVo4E4XhR94Zfr0=
|
||||||
|
github.com/jackc/pgx/v5 v5.10.0/go.mod h1:mal1tBGAFfLHvZzaYh77YS/eC6IX9OWbRV1QIIM0Jn4=
|
||||||
|
github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo=
|
||||||
|
github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4=
|
||||||
|
github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
|
||||||
|
github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
|
||||||
|
github.com/mattn/go-isatty v0.0.21 h1:xYae+lCNBP7QuW4PUnNG61ffM4hVIfm+zUzDuSzYLGs=
|
||||||
|
github.com/mattn/go-isatty v0.0.21/go.mod h1:ZXfXG4SQHsB/w3ZeOYbR0PrPwLy+n6xiMrJlRFqopa4=
|
||||||
|
github.com/mfridman/interpolate v0.0.2 h1:pnuTK7MQIxxFz1Gr+rjSIx9u7qVjf5VOoM/u6BbAxPY=
|
||||||
|
github.com/mfridman/interpolate v0.0.2/go.mod h1:p+7uk6oE07mpE/Ik1b8EckO0O4ZXiGAfshKBWLUM9Xg=
|
||||||
|
github.com/ncruces/go-strftime v1.0.0 h1:HMFp8mLCTPp341M/ZnA4qaf7ZlsbTc+miZjCLOFAw7w=
|
||||||
|
github.com/ncruces/go-strftime v1.0.0/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls=
|
||||||
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
|
github.com/pressly/goose/v3 v3.27.1 h1:6uEvcprBybDmW4hcz3gYujhARhye+GoWKhEWyzD5sh4=
|
||||||
|
github.com/pressly/goose/v3 v3.27.1/go.mod h1:maruOxsPnIG2yHHyo8UqKWXYKFcH7Q76csUV7+7KYoM=
|
||||||
|
github.com/redis/go-redis/v9 v9.20.1 h1:sfCU6A8P3dXbKyWes02uxA2baehGux9dZHfEKtsTB1w=
|
||||||
|
github.com/redis/go-redis/v9 v9.20.1/go.mod h1:v/M13XI1PVCDcm01VtPFOADfZtHf8YW3baQf57KlIkA=
|
||||||
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE=
|
||||||
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
|
||||||
|
github.com/sethvargo/go-retry v0.3.0 h1:EEt31A35QhrcRZtrYFDTBg91cqZVnFL2navjDrah2SE=
|
||||||
|
github.com/sethvargo/go-retry v0.3.0/go.mod h1:mNX17F0C/HguQMyMyJxcnU471gOZGxCLyYaFyAZraas=
|
||||||
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||||
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
|
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
|
||||||
|
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
|
||||||
|
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
|
||||||
|
github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
|
||||||
|
go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=
|
||||||
|
go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=
|
||||||
|
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
|
||||||
|
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
|
||||||
|
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
|
||||||
|
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
|
||||||
|
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
|
||||||
|
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
|
||||||
|
golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
|
||||||
|
golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
|
||||||
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
modernc.org/libc v1.72.1 h1:db1xwJ6u1kE3KHTFTTbe2GCrczHPKzlURP0aDC4NGD0=
|
||||||
|
modernc.org/libc v1.72.1/go.mod h1:HRMiC/PhPGLIPM7GzAFCbI+oSgE3dhZ8FWftmRrHVlY=
|
||||||
|
modernc.org/mathutil v1.7.1 h1:GCZVGXdaN8gTqB1Mf/usp1Y/hSqgI2vAGGP4jZMCxOU=
|
||||||
|
modernc.org/mathutil v1.7.1/go.mod h1:4p5IwJITfppl0G4sUEDtCr4DthTaT47/N3aT6MhfgJg=
|
||||||
|
modernc.org/memory v1.11.0 h1:o4QC8aMQzmcwCK3t3Ux/ZHmwFPzE6hf2Y5LbkRs+hbI=
|
||||||
|
modernc.org/memory v1.11.0/go.mod h1:/JP4VbVC+K5sU2wZi9bHoq2MAkCnrt2r98UGeSK7Mjw=
|
||||||
|
modernc.org/sqlite v1.49.1 h1:dYGHTKcX1sJ+EQDnUzvz4TJ5GbuvhNJa8Fg6ElGx73U=
|
||||||
|
modernc.org/sqlite v1.49.1/go.mod h1:m0w8xhwYUVY3H6pSDwc3gkJ/irZT/0YEXwBlhaxQEew=
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
// Path: Backend/internal/bootstrap/bootstrap.go
|
||||||
|
|
||||||
|
package bootstrap
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log/slog"
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"moku-backend/internal/buildinfo"
|
||||||
|
"moku-backend/internal/cache"
|
||||||
|
"moku-backend/internal/config"
|
||||||
|
"moku-backend/internal/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
type App struct {
|
||||||
|
ServiceName string
|
||||||
|
Config *config.Config
|
||||||
|
Logger *slog.Logger
|
||||||
|
BuildInfo buildinfo.Info
|
||||||
|
Database *database.DB
|
||||||
|
Cache *cache.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
func New(serviceName string) (*App, error) {
|
||||||
|
cfg := config.Load()
|
||||||
|
logger := newLogger(cfg)
|
||||||
|
|
||||||
|
db, err := database.NewPostgres(cfg.PostgresURL)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
valkey, err := cache.NewValkey(cfg.ValkeyURL)
|
||||||
|
if err != nil {
|
||||||
|
db.Close()
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return &App{
|
||||||
|
ServiceName: serviceName,
|
||||||
|
Config: cfg,
|
||||||
|
Logger: logger.With("service", serviceName),
|
||||||
|
BuildInfo: buildinfo.Current(),
|
||||||
|
Database: db,
|
||||||
|
Cache: valkey,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *App) Close() error {
|
||||||
|
var closeErr error
|
||||||
|
|
||||||
|
if a.Cache != nil {
|
||||||
|
if err := a.Cache.Close(); err != nil {
|
||||||
|
closeErr = err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if a.Database != nil {
|
||||||
|
a.Database.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
return closeErr
|
||||||
|
}
|
||||||
|
|
||||||
|
func newLogger(cfg *config.Config) *slog.Logger {
|
||||||
|
level := slog.LevelInfo
|
||||||
|
|
||||||
|
switch strings.ToLower(cfg.LogLevel) {
|
||||||
|
case "debug":
|
||||||
|
level = slog.LevelDebug
|
||||||
|
case "warn":
|
||||||
|
level = slog.LevelWarn
|
||||||
|
case "error":
|
||||||
|
level = slog.LevelError
|
||||||
|
}
|
||||||
|
|
||||||
|
options := &slog.HandlerOptions{Level: level}
|
||||||
|
|
||||||
|
if cfg.IsDevelopment() {
|
||||||
|
return slog.New(slog.NewTextHandler(os.Stdout, options))
|
||||||
|
}
|
||||||
|
|
||||||
|
return slog.New(slog.NewJSONHandler(os.Stdout, options))
|
||||||
|
}
|
||||||
@@ -0,0 +1,159 @@
|
|||||||
|
package bootstrap
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/jackc/pgx/v5"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
materializationNotStarted = "not_started"
|
||||||
|
materializationPending = "pending"
|
||||||
|
materializationRunning = "running"
|
||||||
|
materializationSucceeded = "succeeded"
|
||||||
|
materializationFailed = "failed"
|
||||||
|
)
|
||||||
|
|
||||||
|
type bootstrapStructurePrerequisites struct {
|
||||||
|
installation InstallationRecord
|
||||||
|
admin AdminSummary
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) GetInstallation(ctx context.Context) (*InstallationRecord, error) {
|
||||||
|
record, err := scanInstallationRecord(service.db.Pool.QueryRow(ctx, `
|
||||||
|
SELECT
|
||||||
|
id::text,
|
||||||
|
name,
|
||||||
|
mode::text,
|
||||||
|
access::text,
|
||||||
|
protocol::text,
|
||||||
|
host,
|
||||||
|
is_bootstrapped,
|
||||||
|
materialization_status::text,
|
||||||
|
materialization_error
|
||||||
|
FROM installations
|
||||||
|
WHERE singleton = TRUE
|
||||||
|
LIMIT 1;
|
||||||
|
`))
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, pgx.ErrNoRows) {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return &record, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadInstallation(ctx context.Context, tx pgx.Tx) (InstallationRecord, error) {
|
||||||
|
return scanInstallationRecord(tx.QueryRow(ctx, `
|
||||||
|
SELECT
|
||||||
|
id::text,
|
||||||
|
name,
|
||||||
|
mode::text,
|
||||||
|
access::text,
|
||||||
|
protocol::text,
|
||||||
|
host,
|
||||||
|
is_bootstrapped,
|
||||||
|
materialization_status::text,
|
||||||
|
materialization_error
|
||||||
|
FROM installations
|
||||||
|
WHERE singleton = TRUE
|
||||||
|
LIMIT 1;
|
||||||
|
`))
|
||||||
|
}
|
||||||
|
|
||||||
|
func updateBootstrappedInstallation(ctx context.Context, tx pgx.Tx) (InstallationRecord, error) {
|
||||||
|
return scanInstallationRecord(tx.QueryRow(ctx, `
|
||||||
|
UPDATE installations
|
||||||
|
SET
|
||||||
|
is_bootstrapped = TRUE,
|
||||||
|
bootstrapped_at = COALESCE(bootstrapped_at, NOW()),
|
||||||
|
materialization_status = 'pending'::bootstrap_materialization_status,
|
||||||
|
materialization_error = NULL,
|
||||||
|
materialization_requested_at = NOW(),
|
||||||
|
materialization_started_at = NULL,
|
||||||
|
materialization_finished_at = NULL,
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE singleton = TRUE
|
||||||
|
RETURNING
|
||||||
|
id::text,
|
||||||
|
name,
|
||||||
|
mode::text,
|
||||||
|
access::text,
|
||||||
|
protocol::text,
|
||||||
|
host,
|
||||||
|
is_bootstrapped,
|
||||||
|
materialization_status::text,
|
||||||
|
materialization_error;
|
||||||
|
`))
|
||||||
|
}
|
||||||
|
|
||||||
|
func scanInstallationRecord(row pgx.Row) (InstallationRecord, error) {
|
||||||
|
var record InstallationRecord
|
||||||
|
if err := row.Scan(
|
||||||
|
&record.ID,
|
||||||
|
&record.Name,
|
||||||
|
&record.Mode,
|
||||||
|
&record.Access,
|
||||||
|
&record.Protocol,
|
||||||
|
&record.Host,
|
||||||
|
&record.IsBootstrapped,
|
||||||
|
&record.MaterializationStatus,
|
||||||
|
&record.MaterializationError,
|
||||||
|
); err != nil {
|
||||||
|
return InstallationRecord{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.TrimSpace(record.MaterializationStatus) == "" {
|
||||||
|
record.MaterializationStatus = materializationNotStarted
|
||||||
|
}
|
||||||
|
|
||||||
|
return record, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadPrimaryAdmin(ctx context.Context, tx pgx.Tx) (AdminSummary, error) {
|
||||||
|
var admin AdminSummary
|
||||||
|
if err := tx.QueryRow(ctx, `
|
||||||
|
SELECT id::text, email, display_name
|
||||||
|
FROM users
|
||||||
|
WHERE is_instance_admin = TRUE
|
||||||
|
ORDER BY created_at ASC
|
||||||
|
LIMIT 1;
|
||||||
|
`).Scan(&admin.ID, &admin.Email, &admin.DisplayName); err != nil {
|
||||||
|
return AdminSummary{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return admin, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) loadBootstrapStructurePrerequisites(
|
||||||
|
ctx context.Context,
|
||||||
|
tx pgx.Tx,
|
||||||
|
) (bootstrapStructurePrerequisites, error) {
|
||||||
|
installation, err := loadInstallation(ctx, tx)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, pgx.ErrNoRows) {
|
||||||
|
return bootstrapStructurePrerequisites{}, ErrInstallationNotConfigured
|
||||||
|
}
|
||||||
|
|
||||||
|
return bootstrapStructurePrerequisites{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
admin, err := loadPrimaryAdmin(ctx, tx)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, pgx.ErrNoRows) {
|
||||||
|
return bootstrapStructurePrerequisites{}, ErrAdminNotConfigured
|
||||||
|
}
|
||||||
|
|
||||||
|
return bootstrapStructurePrerequisites{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return bootstrapStructurePrerequisites{
|
||||||
|
installation: installation,
|
||||||
|
admin: admin,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
@@ -0,0 +1,180 @@
|
|||||||
|
package bootstrap
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"moku-backend/internal/jobs"
|
||||||
|
"moku-backend/internal/posixproj"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (service *Service) enqueueBootstrapStructureMaterialization(
|
||||||
|
ctx context.Context,
|
||||||
|
installation *InstallationRecord,
|
||||||
|
) error {
|
||||||
|
if installation == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
jobStore := jobs.NewStore(service.db)
|
||||||
|
if _, err := jobStore.Enqueue(ctx, jobs.EnqueueInput{
|
||||||
|
Kind: jobs.KindBootstrapStructureMaterialize,
|
||||||
|
Payload: jobs.BootstrapStructureMaterializePayload{
|
||||||
|
InstallationID: installation.ID,
|
||||||
|
},
|
||||||
|
}); err != nil {
|
||||||
|
failure := fmt.Sprintf("enqueue bootstrap materialization job: %v", err)
|
||||||
|
if markErr := service.markBootstrapMaterializationFailed(ctx, installation.ID, failure); markErr != nil {
|
||||||
|
return errors.Join(err, markErr)
|
||||||
|
}
|
||||||
|
|
||||||
|
// The relational bootstrap write already committed successfully, so keep the
|
||||||
|
// response successful and surface the enqueue problem via materialization state.
|
||||||
|
installation.MaterializationStatus = materializationFailed
|
||||||
|
installation.MaterializationError = &failure
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) ProcessBootstrapStructureMaterialization(ctx context.Context, installationID string) error {
|
||||||
|
trimmedInstallationID := strings.TrimSpace(installationID)
|
||||||
|
if trimmedInstallationID == "" {
|
||||||
|
return ErrInstallationNotConfigured
|
||||||
|
}
|
||||||
|
|
||||||
|
installation, err := service.GetInstallation(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if installation == nil || installation.ID != trimmedInstallationID {
|
||||||
|
return ErrInstallationNotConfigured
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := service.markBootstrapMaterializationRunning(ctx, trimmedInstallationID); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := service.materializeBootstrapStructure(ctx, *installation); err != nil {
|
||||||
|
failure := strings.TrimSpace(err.Error())
|
||||||
|
if failure == "" {
|
||||||
|
failure = "bootstrap materialization failed"
|
||||||
|
}
|
||||||
|
|
||||||
|
if markErr := service.markBootstrapMaterializationFailed(ctx, trimmedInstallationID, failure); markErr != nil {
|
||||||
|
return errors.Join(err, markErr)
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return service.markBootstrapMaterializationSucceeded(ctx, trimmedInstallationID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) materializeBootstrapStructure(ctx context.Context, installation InstallationRecord) error {
|
||||||
|
admin, err := service.GetAdmin(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if admin == nil {
|
||||||
|
return ErrAdminNotConfigured
|
||||||
|
}
|
||||||
|
|
||||||
|
organization, err := service.loadPrimaryOrganization(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if organization == nil {
|
||||||
|
return ErrBootstrapStructureMissing
|
||||||
|
}
|
||||||
|
|
||||||
|
department, err := service.loadPrimaryDepartment(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if department == nil {
|
||||||
|
return ErrBootstrapStructureMissing
|
||||||
|
}
|
||||||
|
|
||||||
|
team, err := service.loadPrimaryTeam(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if team == nil {
|
||||||
|
return ErrBootstrapStructureMissing
|
||||||
|
}
|
||||||
|
|
||||||
|
project, err := service.loadPrimaryProject(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if project == nil {
|
||||||
|
return ErrBootstrapStructureMissing
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
installation,
|
||||||
|
AdminSummary{ID: admin.ID, Email: admin.Email, DisplayName: admin.DisplayName},
|
||||||
|
namedRecord{ID: organization.ID, Name: organization.Name, Slug: organization.Slug},
|
||||||
|
namedRecord{ID: department.ID, Name: department.Name, Slug: department.Slug},
|
||||||
|
namedRecord{ID: team.ID, Name: team.Name, Slug: team.Slug},
|
||||||
|
namedRecord{ID: project.ID, Name: project.Name, Slug: project.Slug},
|
||||||
|
); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return service.rebuildProjection(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) rebuildProjection(ctx context.Context) error {
|
||||||
|
if err := posixproj.NewProjector(service.db, service.posixRoot).Rebuild(ctx); err != nil {
|
||||||
|
return fmt.Errorf("rebuild POSIX projection: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) markBootstrapMaterializationRunning(ctx context.Context, installationID string) error {
|
||||||
|
_, err := service.db.Pool.Exec(ctx, `
|
||||||
|
UPDATE installations
|
||||||
|
SET
|
||||||
|
materialization_status = 'running'::bootstrap_materialization_status,
|
||||||
|
materialization_error = NULL,
|
||||||
|
materialization_started_at = NOW(),
|
||||||
|
materialization_finished_at = NULL,
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE id = $1::uuid;
|
||||||
|
`, strings.TrimSpace(installationID))
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) markBootstrapMaterializationSucceeded(ctx context.Context, installationID string) error {
|
||||||
|
_, err := service.db.Pool.Exec(ctx, `
|
||||||
|
UPDATE installations
|
||||||
|
SET
|
||||||
|
materialization_status = 'succeeded'::bootstrap_materialization_status,
|
||||||
|
materialization_error = NULL,
|
||||||
|
materialization_finished_at = NOW(),
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE id = $1::uuid;
|
||||||
|
`, strings.TrimSpace(installationID))
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) markBootstrapMaterializationFailed(ctx context.Context, installationID, failure string) error {
|
||||||
|
_, err := service.db.Pool.Exec(ctx, `
|
||||||
|
UPDATE installations
|
||||||
|
SET
|
||||||
|
materialization_status = 'failed'::bootstrap_materialization_status,
|
||||||
|
materialization_error = $2,
|
||||||
|
materialization_finished_at = NOW(),
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE id = $1::uuid;
|
||||||
|
`, strings.TrimSpace(installationID), strings.TrimSpace(failure))
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
package bootstrap
|
||||||
|
|
||||||
|
import "context"
|
||||||
|
|
||||||
|
func (service *Service) GetState(ctx context.Context) (BootstrapState, error) {
|
||||||
|
installation, err := service.GetInstallation(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return BootstrapState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
admin, err := service.GetAdmin(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return BootstrapState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
structure, err := service.GetStructure(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return BootstrapState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return BootstrapState{
|
||||||
|
Installation: installation,
|
||||||
|
Admin: admin,
|
||||||
|
Structure: structure,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (service *Service) GetAppShellState(ctx context.Context) (AppShellState, error) {
|
||||||
|
installation, err := service.GetInstallation(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
admin, err := service.GetAdmin(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
organizations, err := service.listOrganizations(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
departments, err := service.listDepartments(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
teams, err := service.listTeams(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
projects, err := service.listProjects(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
workspaces, err := service.listWorkspaces(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return AppShellState{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return AppShellState{
|
||||||
|
Installation: installation,
|
||||||
|
Admin: admin,
|
||||||
|
Organizations: organizations,
|
||||||
|
Departments: departments,
|
||||||
|
Teams: teams,
|
||||||
|
Projects: projects,
|
||||||
|
Workspaces: workspaces,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,639 @@
|
|||||||
|
package bootstrap
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
type fakeRow struct {
|
||||||
|
scan func(dest ...any) error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (row fakeRow) Scan(dest ...any) error {
|
||||||
|
return row.scan(dest...)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanInstallationRecordDefaultsMaterializationStatus(t *testing.T) {
|
||||||
|
record, err := scanInstallationRecord(fakeRow{scan: func(dest ...any) error {
|
||||||
|
*(dest[0].(*string)) = "installation-1"
|
||||||
|
*(dest[1].(*string)) = "MangoPig"
|
||||||
|
*(dest[2].(*string)) = "personal"
|
||||||
|
*(dest[3].(*string)) = "local"
|
||||||
|
*(dest[4].(*string)) = "http"
|
||||||
|
*(dest[5].(*string)) = "localhost"
|
||||||
|
*(dest[6].(*bool)) = true
|
||||||
|
*(dest[7].(*string)) = ""
|
||||||
|
*(dest[8].(**string)) = nil
|
||||||
|
return nil
|
||||||
|
}})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("scanInstallationRecord: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if record.MaterializationStatus != materializationNotStarted {
|
||||||
|
t.Fatalf("expected default materialization status %q, got %q", materializationNotStarted, record.MaterializationStatus)
|
||||||
|
}
|
||||||
|
if record.MaterializationError != nil {
|
||||||
|
t.Fatalf("expected nil materialization error, got %#v", record.MaterializationError)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestScanInstallationRecordPreservesMaterializationFields(t *testing.T) {
|
||||||
|
failure := "projection rebuild failed"
|
||||||
|
|
||||||
|
record, err := scanInstallationRecord(fakeRow{scan: func(dest ...any) error {
|
||||||
|
*(dest[0].(*string)) = "installation-2"
|
||||||
|
*(dest[1].(*string)) = "MangoPig"
|
||||||
|
*(dest[2].(*string)) = "personal"
|
||||||
|
*(dest[3].(*string)) = "local"
|
||||||
|
*(dest[4].(*string)) = "http"
|
||||||
|
*(dest[5].(*string)) = "localhost"
|
||||||
|
*(dest[6].(*bool)) = true
|
||||||
|
*(dest[7].(*string)) = materializationFailed
|
||||||
|
*(dest[8].(**string)) = &failure
|
||||||
|
return nil
|
||||||
|
}})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("scanInstallationRecord: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if record.MaterializationStatus != materializationFailed {
|
||||||
|
t.Fatalf("expected materialization status %q, got %q", materializationFailed, record.MaterializationStatus)
|
||||||
|
}
|
||||||
|
if record.MaterializationError == nil || *record.MaterializationError != failure {
|
||||||
|
t.Fatalf("expected materialization error %q, got %#v", failure, record.MaterializationError)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEnsureBootstrapPOSIXSkeletonInitializesEmptyRoot(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
t.Setenv("POSIX_ROOT", rootPath)
|
||||||
|
|
||||||
|
if _, err := os.Stat(rootPath); !os.IsNotExist(err) {
|
||||||
|
t.Fatalf("expected isolated POSIX root to start absent, got err=%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
service := NewService(nil, os.Getenv("POSIX_ROOT"))
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{
|
||||||
|
ID: "installation-1",
|
||||||
|
Name: "MangoPig",
|
||||||
|
Mode: "personal",
|
||||||
|
Access: "local",
|
||||||
|
Protocol: "http",
|
||||||
|
Host: "localhost",
|
||||||
|
IsBootstrapped: true,
|
||||||
|
},
|
||||||
|
AdminSummary{
|
||||||
|
ID: "admin-1",
|
||||||
|
Email: "ronald@example.com",
|
||||||
|
DisplayName: "Ronald",
|
||||||
|
},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
requiredPaths := []string{
|
||||||
|
filepath.Join(rootPath, "settings.json"),
|
||||||
|
filepath.Join(rootPath, "layout.json"),
|
||||||
|
filepath.Join(rootPath, "catalog", "packs"),
|
||||||
|
filepath.Join(rootPath, "catalog", "standalone"),
|
||||||
|
filepath.Join(rootPath, "departments", "department-primary-department", "settings.json"),
|
||||||
|
filepath.Join(rootPath, "departments", "department-primary-department", "users.json"),
|
||||||
|
filepath.Join(rootPath, "departments", "department-primary-department", "teams", "team-primary-team", "settings.json"),
|
||||||
|
filepath.Join(rootPath, "departments", "department-primary-department", "teams", "team-primary-team", "users.json"),
|
||||||
|
filepath.Join(rootPath, "projects", "project-primary-project", "settings.json"),
|
||||||
|
filepath.Join(rootPath, "projects", "project-primary-project", "home.json"),
|
||||||
|
filepath.Join(rootPath, "projects", "project-primary-project", "acl.json"),
|
||||||
|
filepath.Join(rootPath, "projects", "project-primary-project", "children"),
|
||||||
|
filepath.Join(rootPath, "projects", "project-primary-project", "tree"),
|
||||||
|
filepath.Join(rootPath, "users", "settings.json"),
|
||||||
|
filepath.Join(rootPath, "users", "data.json"),
|
||||||
|
filepath.Join(rootPath, "users", "personals"),
|
||||||
|
filepath.Join(rootPath, "users", "personals", "personal-ronald", "settings.json"),
|
||||||
|
filepath.Join(rootPath, "users", "personals", "personal-ronald", "layout.json"),
|
||||||
|
filepath.Join(rootPath, "users", "personals", "personal-ronald", "home.json"),
|
||||||
|
filepath.Join(rootPath, "users", "personals", "personal-ronald", "tree"),
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, path := range requiredPaths {
|
||||||
|
if _, err := os.Stat(path); err != nil {
|
||||||
|
t.Fatalf("expected path to exist %s: %v", path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
settingsPayload := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "settings.json"))
|
||||||
|
installationPayload, ok := settingsPayload["installation"].(map[string]any)
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("settings.json missing installation object: %#v", settingsPayload)
|
||||||
|
}
|
||||||
|
if installationPayload["name"] != "MangoPig" {
|
||||||
|
t.Fatalf("expected installation name MangoPig, got %#v", installationPayload["name"])
|
||||||
|
}
|
||||||
|
if installationPayload["isBootstrapped"] != true {
|
||||||
|
t.Fatalf("expected installation to be bootstrapped, got %#v", installationPayload["isBootstrapped"])
|
||||||
|
}
|
||||||
|
|
||||||
|
layoutPayload := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "layout.json"))
|
||||||
|
homePayload, ok := layoutPayload["home"].(map[string]any)
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("layout.json missing home object: %#v", layoutPayload)
|
||||||
|
}
|
||||||
|
if homePayload["defaultProjectSlug"] != "primary-project" {
|
||||||
|
t.Fatalf("expected default project slug primary-project, got %#v", homePayload["defaultProjectSlug"])
|
||||||
|
}
|
||||||
|
|
||||||
|
projectSettings := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "projects", "project-primary-project", "settings.json"))
|
||||||
|
if projectSettings["type"] != "project" {
|
||||||
|
t.Fatalf("expected project settings type project, got %#v", projectSettings["type"])
|
||||||
|
}
|
||||||
|
|
||||||
|
projectACL := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "projects", "project-primary-project", "acl.json"))
|
||||||
|
if projectACL["inherits"] != true {
|
||||||
|
t.Fatalf("expected project acl to inherit by default, got %#v", projectACL["inherits"])
|
||||||
|
}
|
||||||
|
|
||||||
|
usersSettings := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "users", "settings.json"))
|
||||||
|
if usersSettings["primaryAdminId"] != "admin-1" {
|
||||||
|
t.Fatalf("expected primary admin id admin-1, got %#v", usersSettings["primaryAdminId"])
|
||||||
|
}
|
||||||
|
|
||||||
|
personalSettings := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "users", "personals", "personal-ronald", "settings.json"))
|
||||||
|
if personalSettings["type"] != "personal" {
|
||||||
|
t.Fatalf("expected personal settings type personal, got %#v", personalSettings["type"])
|
||||||
|
}
|
||||||
|
if personalSettings["name"] != "Ronald" {
|
||||||
|
t.Fatalf("expected personal name Ronald, got %#v", personalSettings["name"])
|
||||||
|
}
|
||||||
|
if personalSettings["slug"] != "ronald" {
|
||||||
|
t.Fatalf("expected personal slug ronald, got %#v", personalSettings["slug"])
|
||||||
|
}
|
||||||
|
|
||||||
|
personalHome := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, "users", "personals", "personal-ronald", "home.json"))
|
||||||
|
if personalHome["type"] != "personal-home" {
|
||||||
|
t.Fatalf("expected personal home type personal-home, got %#v", personalHome["type"])
|
||||||
|
}
|
||||||
|
if personalHome["title"] != "Ronald's Home" {
|
||||||
|
t.Fatalf("expected personal home title Ronald's Home, got %#v", personalHome["title"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCreateProjectHierarchyFolderOnDiskCreatesExpectedFolderShape(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
createdPath, createdSlug, err := service.createProjectHierarchyFolderOnDisk("primary-project", "", "Design System")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectHierarchyFolderOnDisk root folder: %v", err)
|
||||||
|
}
|
||||||
|
if createdPath != "projects/project-primary-project/children/folder-design-system" {
|
||||||
|
t.Fatalf("unexpected created path: %s", createdPath)
|
||||||
|
}
|
||||||
|
if createdSlug != "design-system" {
|
||||||
|
t.Fatalf("unexpected created slug: %s", createdSlug)
|
||||||
|
}
|
||||||
|
|
||||||
|
createdFolderPath := filepath.Join(rootPath, "projects", "project-primary-project", "children", "folder-design-system")
|
||||||
|
for _, path := range []string{
|
||||||
|
filepath.Join(createdFolderPath, "folder.json"),
|
||||||
|
filepath.Join(createdFolderPath, "acl.json"),
|
||||||
|
filepath.Join(createdFolderPath, "children"),
|
||||||
|
} {
|
||||||
|
if _, err := os.Stat(path); err != nil {
|
||||||
|
t.Fatalf("expected path to exist %s: %v", path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
folderPayload := readJSONFileForTest[map[string]any](t, filepath.Join(createdFolderPath, "folder.json"))
|
||||||
|
if strings.TrimSpace(asStringForTest(folderPayload["id"])) == "" {
|
||||||
|
t.Fatalf("expected created folder to have stable id, got %#v", folderPayload["id"])
|
||||||
|
}
|
||||||
|
if folderPayload["name"] != "Design System" {
|
||||||
|
t.Fatalf("expected folder name Design System, got %#v", folderPayload["name"])
|
||||||
|
}
|
||||||
|
if folderPayload["slug"] != "design-system" {
|
||||||
|
t.Fatalf("expected folder slug design-system, got %#v", folderPayload["slug"])
|
||||||
|
}
|
||||||
|
|
||||||
|
nestedPath, nestedSlug, err := service.createProjectHierarchyFolderOnDisk("primary-project", createdPath, "Research")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectHierarchyFolderOnDisk nested folder: %v", err)
|
||||||
|
}
|
||||||
|
if nestedPath != "projects/project-primary-project/children/folder-design-system/children/folder-research" {
|
||||||
|
t.Fatalf("unexpected nested path: %s", nestedPath)
|
||||||
|
}
|
||||||
|
if nestedSlug != "research" {
|
||||||
|
t.Fatalf("unexpected nested slug: %s", nestedSlug)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCreateProjectTreeFolderOnDiskCreatesExpectedFolderShape(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
createdPath, createdSlug, err := service.createProjectTreeFolderOnDisk("primary-project", "", "Docs")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectTreeFolderOnDisk root folder: %v", err)
|
||||||
|
}
|
||||||
|
if createdPath != "projects/project-primary-project/tree/folder-docs" {
|
||||||
|
t.Fatalf("unexpected created path: %s", createdPath)
|
||||||
|
}
|
||||||
|
if createdSlug != "docs" {
|
||||||
|
t.Fatalf("unexpected created slug: %s", createdSlug)
|
||||||
|
}
|
||||||
|
|
||||||
|
createdFolderPath := filepath.Join(rootPath, "projects", "project-primary-project", "tree", "folder-docs")
|
||||||
|
for _, path := range []string{
|
||||||
|
filepath.Join(createdFolderPath, "folder.json"),
|
||||||
|
filepath.Join(createdFolderPath, "acl.json"),
|
||||||
|
filepath.Join(createdFolderPath, "children"),
|
||||||
|
} {
|
||||||
|
if _, err := os.Stat(path); err != nil {
|
||||||
|
t.Fatalf("expected path to exist %s: %v", path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nestedPath, nestedSlug, err := service.createProjectTreeFolderOnDisk("primary-project", createdPath, "Research")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectTreeFolderOnDisk nested folder: %v", err)
|
||||||
|
}
|
||||||
|
if nestedPath != "projects/project-primary-project/tree/folder-docs/children/folder-research" {
|
||||||
|
t.Fatalf("unexpected nested path: %s", nestedPath)
|
||||||
|
}
|
||||||
|
if nestedSlug != "research" {
|
||||||
|
t.Fatalf("unexpected nested slug: %s", nestedSlug)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRenameProjectHierarchyFolderOnDiskRenamesFolderShape(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
createdPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", "", "Design System")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectHierarchyFolderOnDisk root folder: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
nestedPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", createdPath, "Research")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectHierarchyFolderOnDisk nested folder: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
previousPath, renamedPath, err := service.renameProjectHierarchyFolderOnDisk("primary-project", createdPath, "Platform Design")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("renameProjectHierarchyFolderOnDisk: %v", err)
|
||||||
|
}
|
||||||
|
if previousPath != createdPath {
|
||||||
|
t.Fatalf("expected previous path %s, got %s", createdPath, previousPath)
|
||||||
|
}
|
||||||
|
if renamedPath != "projects/project-primary-project/children/folder-platform-design" {
|
||||||
|
t.Fatalf("unexpected renamed path: %s", renamedPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := os.Stat(filepath.Join(rootPath, filepath.FromSlash(createdPath))); !os.IsNotExist(err) {
|
||||||
|
t.Fatalf("expected previous folder path to be gone, got err=%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
renamedFolderPath := filepath.Join(rootPath, filepath.FromSlash(renamedPath))
|
||||||
|
if _, err := os.Stat(filepath.Join(renamedFolderPath, "children", filepath.Base(nestedPath))); err != nil {
|
||||||
|
t.Fatalf("expected nested child folder to move with renamed parent: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
folderPayload := readJSONFileForTest[map[string]any](t, filepath.Join(renamedFolderPath, "folder.json"))
|
||||||
|
if strings.TrimSpace(asStringForTest(folderPayload["id"])) == "" {
|
||||||
|
t.Fatalf("expected renamed folder to preserve stable id, got %#v", folderPayload["id"])
|
||||||
|
}
|
||||||
|
if folderPayload["name"] != "Platform Design" {
|
||||||
|
t.Fatalf("expected renamed folder name Platform Design, got %#v", folderPayload["name"])
|
||||||
|
}
|
||||||
|
if folderPayload["slug"] != "platform-design" {
|
||||||
|
t.Fatalf("expected renamed folder slug platform-design, got %#v", folderPayload["slug"])
|
||||||
|
}
|
||||||
|
if folderPayload["type"] != "folder" {
|
||||||
|
t.Fatalf("expected renamed folder type folder, got %#v", folderPayload["type"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRenameProjectTreeFolderOnDiskRenamesFolderShape(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
createdPath, _, err := service.createProjectTreeFolderOnDisk("primary-project", "", "Docs")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("createProjectTreeFolderOnDisk root folder: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
previousPath, renamedPath, err := service.renameProjectTreeFolderOnDisk("primary-project", createdPath, "Specifications")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("renameProjectTreeFolderOnDisk: %v", err)
|
||||||
|
}
|
||||||
|
if previousPath != createdPath {
|
||||||
|
t.Fatalf("expected previous path %s, got %s", createdPath, previousPath)
|
||||||
|
}
|
||||||
|
if renamedPath != "projects/project-primary-project/tree/folder-specifications" {
|
||||||
|
t.Fatalf("unexpected renamed path: %s", renamedPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
folderPayload := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, filepath.FromSlash(renamedPath), "folder.json"))
|
||||||
|
if folderPayload["name"] != "Specifications" {
|
||||||
|
t.Fatalf("expected renamed folder name Specifications, got %#v", folderPayload["name"])
|
||||||
|
}
|
||||||
|
if folderPayload["slug"] != "specifications" {
|
||||||
|
t.Fatalf("expected renamed folder slug specifications, got %#v", folderPayload["slug"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMoveProjectHierarchyFolderOnDiskMovesFolderToNewParent(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
designPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", "", "Design")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create design folder: %v", err)
|
||||||
|
}
|
||||||
|
operationsPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", "", "Operations")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create operations folder: %v", err)
|
||||||
|
}
|
||||||
|
researchPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", designPath, "Research")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create research folder: %v", err)
|
||||||
|
}
|
||||||
|
nestedPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", researchPath, "Interview Notes")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create nested folder: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
previousPath, movedPath, err := service.moveProjectHierarchyFolderOnDisk("primary-project", researchPath, operationsPath)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("moveProjectHierarchyFolderOnDisk: %v", err)
|
||||||
|
}
|
||||||
|
if previousPath != researchPath {
|
||||||
|
t.Fatalf("expected previous path %s, got %s", researchPath, previousPath)
|
||||||
|
}
|
||||||
|
if movedPath != "projects/project-primary-project/children/folder-operations/children/folder-research" {
|
||||||
|
t.Fatalf("unexpected moved path: %s", movedPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := os.Stat(filepath.Join(rootPath, filepath.FromSlash(researchPath))); !os.IsNotExist(err) {
|
||||||
|
t.Fatalf("expected previous folder path to be gone, got err=%v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
movedFolderPath := filepath.Join(rootPath, filepath.FromSlash(movedPath))
|
||||||
|
if _, err := os.Stat(filepath.Join(movedFolderPath, "children", filepath.Base(nestedPath))); err != nil {
|
||||||
|
t.Fatalf("expected nested child folder to move with moved parent: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
folderPayload := readJSONFileForTest[map[string]any](t, filepath.Join(movedFolderPath, "folder.json"))
|
||||||
|
if strings.TrimSpace(asStringForTest(folderPayload["id"])) == "" {
|
||||||
|
t.Fatalf("expected moved folder to preserve stable id, got %#v", folderPayload["id"])
|
||||||
|
}
|
||||||
|
if folderPayload["name"] != "Research" {
|
||||||
|
t.Fatalf("expected moved folder name Research, got %#v", folderPayload["name"])
|
||||||
|
}
|
||||||
|
if folderPayload["slug"] != "research" {
|
||||||
|
t.Fatalf("expected moved folder slug research, got %#v", folderPayload["slug"])
|
||||||
|
}
|
||||||
|
if folderPayload["type"] != "folder" {
|
||||||
|
t.Fatalf("expected moved folder type folder, got %#v", folderPayload["type"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMoveProjectTreeFolderOnDiskMovesFolderToNewParent(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
docsPath, _, err := service.createProjectTreeFolderOnDisk("primary-project", "", "Docs")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create docs folder: %v", err)
|
||||||
|
}
|
||||||
|
archivePath, _, err := service.createProjectTreeFolderOnDisk("primary-project", "", "Archive")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create archive folder: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
previousPath, movedPath, err := service.moveProjectTreeFolderOnDisk("primary-project", docsPath, archivePath)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("moveProjectTreeFolderOnDisk: %v", err)
|
||||||
|
}
|
||||||
|
if previousPath != docsPath {
|
||||||
|
t.Fatalf("expected previous path %s, got %s", docsPath, previousPath)
|
||||||
|
}
|
||||||
|
if movedPath != "projects/project-primary-project/tree/folder-archive/children/folder-docs" {
|
||||||
|
t.Fatalf("unexpected moved path: %s", movedPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
folderPayload := readJSONFileForTest[map[string]any](t, filepath.Join(rootPath, filepath.FromSlash(movedPath), "folder.json"))
|
||||||
|
if folderPayload["name"] != "Docs" {
|
||||||
|
t.Fatalf("expected moved folder name Docs, got %#v", folderPayload["name"])
|
||||||
|
}
|
||||||
|
if folderPayload["slug"] != "docs" {
|
||||||
|
t.Fatalf("expected moved folder slug docs, got %#v", folderPayload["slug"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestMoveProjectHierarchyFolderOnDiskRejectsDescendantTarget(t *testing.T) {
|
||||||
|
rootPath := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
service := NewService(nil, rootPath)
|
||||||
|
|
||||||
|
err := service.ensureBootstrapPOSIXSkeleton(
|
||||||
|
InstallationRecord{ID: "installation-1", Name: "MangoPig", Mode: "personal", Access: "local", Protocol: "http", Host: "localhost", IsBootstrapped: true},
|
||||||
|
AdminSummary{ID: "admin-1", Email: "ronald@example.com", DisplayName: "Ronald"},
|
||||||
|
namedRecord{ID: "org-1", Name: "Primary Organization", Slug: "primary-organization"},
|
||||||
|
namedRecord{ID: "dept-1", Name: "Primary Department", Slug: "primary-department"},
|
||||||
|
namedRecord{ID: "team-1", Name: "Primary Team", Slug: "primary-team"},
|
||||||
|
namedRecord{ID: "project-1", Name: "Primary Project", Slug: "primary-project"},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ensure bootstrap POSIX skeleton: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
parentPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", "", "Parent")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create parent folder: %v", err)
|
||||||
|
}
|
||||||
|
childPath, _, err := service.createProjectHierarchyFolderOnDisk("primary-project", parentPath, "Child")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("create child folder: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, _, err = service.moveProjectHierarchyFolderOnDisk("primary-project", parentPath, childPath)
|
||||||
|
if !errors.Is(err, ErrInvalidProjectFolderMove) {
|
||||||
|
t.Fatalf("expected ErrInvalidProjectFolderMove, got %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestBuildProjectHierarchyFolderTreeBuildsNestedStructure(t *testing.T) {
|
||||||
|
rows := []projectHierarchyFolderRow{
|
||||||
|
{ID: "folder-design-id", Path: "projects/project-primary-project/children/folder-design", ParentPath: projectHierarchyRootPath("primary-project"), Label: "Design"},
|
||||||
|
{ID: "folder-research-id", Path: "projects/project-primary-project/children/folder-design/children/folder-research", ParentPath: "projects/project-primary-project/children/folder-design/children", Label: "Research"},
|
||||||
|
{ID: "folder-ops-id", Path: "projects/project-primary-project/children/folder-ops", ParentPath: projectHierarchyRootPath("primary-project"), Label: "Ops"},
|
||||||
|
}
|
||||||
|
|
||||||
|
folders := buildProjectHierarchyFolderTree(rows, projectHierarchyRootPath("primary-project"))
|
||||||
|
if len(folders) != 2 {
|
||||||
|
t.Fatalf("expected 2 top-level folders, got %d", len(folders))
|
||||||
|
}
|
||||||
|
if folders[0].Label != "Design" || folders[1].Label != "Ops" {
|
||||||
|
t.Fatalf("unexpected top-level folder labels: %#v", folders)
|
||||||
|
}
|
||||||
|
if len(folders[0].Children) != 1 || folders[0].Children[0].Label != "Research" {
|
||||||
|
t.Fatalf("unexpected nested folder structure: %#v", folders[0].Children)
|
||||||
|
}
|
||||||
|
if folders[0].ID != "folder-design-id" || folders[0].Path != "projects/project-primary-project/children/folder-design" {
|
||||||
|
t.Fatalf("expected design folder to retain stable id/path, got %#v", folders[0])
|
||||||
|
}
|
||||||
|
if folders[0].Children[0].ID != "folder-research-id" || folders[1].ID != "folder-ops-id" {
|
||||||
|
t.Fatalf("expected nested/top-level folder ids to be preserved, got %#v / %#v", folders[0].Children[0], folders[1])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestApplyProjectHierarchyFolderOrderingOrdersRootAndChildrenByStableID(t *testing.T) {
|
||||||
|
folders := []ProjectHierarchyFolderRecord{
|
||||||
|
{
|
||||||
|
ID: "folder-design-id",
|
||||||
|
Path: "projects/project-primary-project/children/folder-design",
|
||||||
|
Label: "Design",
|
||||||
|
Children: []ProjectHierarchyFolderRecord{
|
||||||
|
{ID: "folder-research-id", Path: "projects/project-primary-project/children/folder-design/children/folder-research", Label: "Research"},
|
||||||
|
{ID: "folder-assets-id", Path: "projects/project-primary-project/children/folder-design/children/folder-assets", Label: "Assets"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{ID: "folder-ops-id", Path: "projects/project-primary-project/children/folder-ops", Label: "Ops"},
|
||||||
|
{ID: "folder-qa-id", Path: "projects/project-primary-project/children/folder-qa", Label: "QA"},
|
||||||
|
}
|
||||||
|
|
||||||
|
ordered := applyProjectHierarchyFolderOrdering(folders, map[string][]string{
|
||||||
|
projectFolderOrderRootKey: {"folder-qa-id", "folder-design-id"},
|
||||||
|
"folder-design-id": {"folder-assets-id", "folder-research-id"},
|
||||||
|
})
|
||||||
|
|
||||||
|
if len(ordered) != 3 {
|
||||||
|
t.Fatalf("expected 3 ordered root folders, got %d", len(ordered))
|
||||||
|
}
|
||||||
|
if ordered[0].ID != "folder-qa-id" || ordered[1].ID != "folder-design-id" || ordered[2].ID != "folder-ops-id" {
|
||||||
|
t.Fatalf("unexpected ordered root ids: %#v", ordered)
|
||||||
|
}
|
||||||
|
if len(ordered[1].Children) != 2 {
|
||||||
|
t.Fatalf("expected design folder children to be preserved, got %#v", ordered[1].Children)
|
||||||
|
}
|
||||||
|
if ordered[1].Children[0].ID != "folder-assets-id" || ordered[1].Children[1].ID != "folder-research-id" {
|
||||||
|
t.Fatalf("unexpected ordered child ids: %#v", ordered[1].Children)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestInsertFolderOrderReordersWithinSameParent(t *testing.T) {
|
||||||
|
folderOrder := map[string][]string{
|
||||||
|
projectFolderOrderRootKey: {"folder-a", "folder-b", "folder-c"},
|
||||||
|
}
|
||||||
|
|
||||||
|
insertFolderOrder(folderOrder, "", "folder-c", 0)
|
||||||
|
|
||||||
|
got := folderOrder[projectFolderOrderRootKey]
|
||||||
|
if len(got) != 3 || got[0] != "folder-c" || got[1] != "folder-a" || got[2] != "folder-b" {
|
||||||
|
t.Fatalf("unexpected reordered root children: %#v", got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func asStringForTest(value any) string {
|
||||||
|
text, _ := value.(string)
|
||||||
|
return text
|
||||||
|
}
|
||||||
|
|
||||||
|
func readJSONFileForTest[T any](t *testing.T, path string) T {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
data, err := os.ReadFile(path)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("read %s: %v", path, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var payload T
|
||||||
|
if err := json.Unmarshal(data, &payload); err != nil {
|
||||||
|
t.Fatalf("unmarshal %s: %v", path, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
// Path: Backend/internal/buildinfo/buildinfo.go
|
||||||
|
|
||||||
|
package buildinfo
|
||||||
|
|
||||||
|
var (
|
||||||
|
Version = "dev"
|
||||||
|
Commit = "unknown"
|
||||||
|
BuiltAt = "unknown"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Info struct {
|
||||||
|
Version string `json:"version"`
|
||||||
|
Commit string `json:"commit"`
|
||||||
|
BuiltAt string `json:"builtAt"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func Current() Info {
|
||||||
|
return Info{
|
||||||
|
Version: Version,
|
||||||
|
Commit: Commit,
|
||||||
|
BuiltAt: BuiltAt,
|
||||||
|
}
|
||||||
|
}
|
||||||
Vendored
+40
@@ -0,0 +1,40 @@
|
|||||||
|
// Path: Backend/internal/cache/valkey.go
|
||||||
|
|
||||||
|
package cache
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/redis/go-redis/v9"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Client struct {
|
||||||
|
Redis *redis.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewValkey(valkeyURL string) (*Client, error) {
|
||||||
|
options, err := redis.ParseURL(valkeyURL)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
client := redis.NewClient(options)
|
||||||
|
|
||||||
|
return &Client{Redis: client}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) Health(ctx context.Context) error {
|
||||||
|
if c == nil || c.Redis == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.Redis.Ping(ctx).Err()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) Close() error {
|
||||||
|
if c == nil || c.Redis == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.Redis.Close()
|
||||||
|
}
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
// Path: Backend/internal/config/config.go
|
||||||
|
|
||||||
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Config struct {
|
||||||
|
AppName string
|
||||||
|
Environment string
|
||||||
|
LogLevel string
|
||||||
|
WebPort string
|
||||||
|
APIPort string
|
||||||
|
PostgresURL string
|
||||||
|
ValkeyURL string
|
||||||
|
POSIXRoot string
|
||||||
|
ShutdownTimeout time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
|
func Load() *Config {
|
||||||
|
return &Config{
|
||||||
|
AppName: getEnv("APP_NAME", "moku"),
|
||||||
|
Environment: getEnv("GO_ENV", "development"),
|
||||||
|
LogLevel: getEnv("LOG_LEVEL", "debug"),
|
||||||
|
WebPort: getEnv("BACKEND_WEB_PORT", "8080"),
|
||||||
|
APIPort: getEnv("BACKEND_API_PORT", "8081"),
|
||||||
|
PostgresURL: getEnv("DATABASE_URL", "postgres://moku:moku_dev_password@localhost:5432/moku?sslmode=disable"),
|
||||||
|
ValkeyURL: getEnv("VALKEY_URL", "redis://localhost:6379/0"),
|
||||||
|
POSIXRoot: getEnv("POSIX_ROOT", "../POSIX"),
|
||||||
|
ShutdownTimeout: getDurationEnv("BACKEND_SHUTDOWN_TIMEOUT", 10*time.Second),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Config) Address(serviceName string) string {
|
||||||
|
var port string
|
||||||
|
|
||||||
|
switch strings.ToLower(serviceName) {
|
||||||
|
case "web":
|
||||||
|
port = c.WebPort
|
||||||
|
case "api":
|
||||||
|
port = c.APIPort
|
||||||
|
default:
|
||||||
|
port = c.WebPort
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Sprintf(":%s", port)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Config) IsDevelopment() bool {
|
||||||
|
return strings.EqualFold(c.Environment, "development")
|
||||||
|
}
|
||||||
|
|
||||||
|
func getEnv(key, fallback string) string {
|
||||||
|
if value, exists := os.LookupEnv(key); exists {
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
|
return fallback
|
||||||
|
}
|
||||||
|
|
||||||
|
func getDurationEnv(key string, fallback time.Duration) time.Duration {
|
||||||
|
value, exists := os.LookupEnv(key)
|
||||||
|
if !exists {
|
||||||
|
return fallback
|
||||||
|
}
|
||||||
|
|
||||||
|
parsed, err := time.ParseDuration(value)
|
||||||
|
if err != nil {
|
||||||
|
return fallback
|
||||||
|
}
|
||||||
|
|
||||||
|
return parsed
|
||||||
|
}
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
// Path: Backend/internal/database/postgres.go
|
||||||
|
|
||||||
|
package database
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"database/sql"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/jackc/pgx/v5/pgxpool"
|
||||||
|
"github.com/jackc/pgx/v5/stdlib"
|
||||||
|
"github.com/pressly/goose/v3"
|
||||||
|
|
||||||
|
"moku-backend/db"
|
||||||
|
)
|
||||||
|
|
||||||
|
type DB struct {
|
||||||
|
Pool *pgxpool.Pool
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewPostgres(databaseURL string) (*DB, error) {
|
||||||
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
config, err := pgxpool.ParseConfig(databaseURL)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
config.MaxConns = 25
|
||||||
|
config.MinConns = 5
|
||||||
|
config.MaxConnLifetime = time.Hour
|
||||||
|
config.MaxConnIdleTime = 30 * time.Minute
|
||||||
|
|
||||||
|
pool, err := pgxpool.NewWithConfig(ctx, config)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := pool.Ping(ctx); err != nil {
|
||||||
|
pool.Close()
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return &DB{Pool: pool}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) MigrateUp() error {
|
||||||
|
return d.runGoose(goose.Up)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) MigrateDown() error {
|
||||||
|
return d.runGoose(goose.Down)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) MigrateReset() error {
|
||||||
|
return d.runGoose(goose.Reset)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) MigrateStatus() error {
|
||||||
|
return d.runGoose(goose.Status)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) runGoose(command func(*sql.DB, string, ...goose.OptionsFunc) error) error {
|
||||||
|
if d == nil || d.Pool == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
sqlDB := stdlib.OpenDBFromPool(d.Pool)
|
||||||
|
defer sqlDB.Close()
|
||||||
|
|
||||||
|
goose.SetBaseFS(db.Migrations)
|
||||||
|
|
||||||
|
if err := goose.SetDialect("postgres"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return command(sqlDB, "migrations")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) Health(ctx context.Context) error {
|
||||||
|
if d == nil || d.Pool == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return d.Pool.Ping(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) Close() {
|
||||||
|
if d == nil || d.Pool == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
d.Pool.Close()
|
||||||
|
}
|
||||||
@@ -0,0 +1,396 @@
|
|||||||
|
// Path: Backend/internal/httpx/api_bootstrap_routes.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
bootstrapservice "moku-backend/internal/bootstrap"
|
||||||
|
)
|
||||||
|
|
||||||
|
type bootstrapInstanceStepRequest struct {
|
||||||
|
Protocol string `json:"protocol"`
|
||||||
|
Access string `json:"access"`
|
||||||
|
Host string `json:"host"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type bootstrapModeStepRequest struct {
|
||||||
|
Mode string `json:"mode"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type bootstrapAdminStepRequest struct {
|
||||||
|
DisplayName string `json:"displayName"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
Password string `json:"password"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type bootstrapStructureStepRequest struct {
|
||||||
|
OrganizationName string `json:"organizationName"`
|
||||||
|
DepartmentName string `json:"departmentName"`
|
||||||
|
TeamName string `json:"teamName"`
|
||||||
|
ProjectName string `json:"projectName"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapOverview(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": map[string]any{
|
||||||
|
"resource": "bootstrap",
|
||||||
|
"status": "persisted",
|
||||||
|
"steps": []map[string]string{
|
||||||
|
{
|
||||||
|
"id": "instance",
|
||||||
|
"method": http.MethodPost,
|
||||||
|
"path": "/v1/bootstrap/steps/instance",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "mode",
|
||||||
|
"method": http.MethodPost,
|
||||||
|
"path": "/v1/bootstrap/steps/mode",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "admin",
|
||||||
|
"method": http.MethodPost,
|
||||||
|
"path": "/v1/bootstrap/steps/admin",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "structure",
|
||||||
|
"method": http.MethodPost,
|
||||||
|
"path": "/v1/bootstrap/steps/structure",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "installation",
|
||||||
|
"method": http.MethodGet,
|
||||||
|
"path": "/v1/bootstrap/installation",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "admin-state",
|
||||||
|
"method": http.MethodGet,
|
||||||
|
"path": "/v1/bootstrap/admin",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "structure-state",
|
||||||
|
"method": http.MethodGet,
|
||||||
|
"path": "/v1/bootstrap/structure",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "bootstrap-state",
|
||||||
|
"method": http.MethodGet,
|
||||||
|
"path": "/v1/bootstrap/state",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "app-shell",
|
||||||
|
"method": http.MethodGet,
|
||||||
|
"path": "/v1/app-shell",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapInstallation(w http.ResponseWriter, r *http.Request) {
|
||||||
|
record, err := routes.bootstrapService().GetInstallation(r.Context())
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": record,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "bootstrap-installation",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapAdmin(w http.ResponseWriter, r *http.Request) {
|
||||||
|
record, err := routes.bootstrapService().GetAdmin(r.Context())
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": record,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "bootstrap-admin",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapStructure(w http.ResponseWriter, r *http.Request) {
|
||||||
|
record, err := routes.bootstrapService().GetStructure(r.Context())
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": record,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "bootstrap-structure",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapState(w http.ResponseWriter, r *http.Request) {
|
||||||
|
record, err := routes.bootstrapService().GetState(r.Context())
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": record,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "bootstrap-state",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleAppShellState(w http.ResponseWriter, r *http.Request) {
|
||||||
|
record, err := routes.bootstrapService().GetAppShellState(r.Context())
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": record,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "app-shell",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleDevelopmentBootstrapReset(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if !routes.cfg.Config.IsDevelopment() {
|
||||||
|
WriteError(w, http.StatusNotFound, RequestIDFromContext(r.Context()), "not_found", "The requested endpoint does not exist.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := routes.bootstrapService().ResetDevelopmentState(r.Context()); err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": map[string]any{
|
||||||
|
"reset": true,
|
||||||
|
},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "development-bootstrap-reset",
|
||||||
|
"developmentOnly": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapInstanceStep(w http.ResponseWriter, r *http.Request) {
|
||||||
|
payload, ok := decodeBootstrapRequest[bootstrapInstanceStepRequest](w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
payload.Protocol = strings.ToLower(strings.TrimSpace(payload.Protocol))
|
||||||
|
payload.Access = strings.ToLower(strings.TrimSpace(payload.Access))
|
||||||
|
payload.Host = strings.TrimSpace(payload.Host)
|
||||||
|
|
||||||
|
if payload.Protocol != "http" && payload.Protocol != "https" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Protocol must be either 'http' or 'https'.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if payload.Access != "local" && payload.Access != "remote" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Access must be either 'local' or 'remote'.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if payload.Host == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Host is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
record, err := routes.bootstrapService().SaveInstance(r.Context(), bootstrapservice.SaveInstanceInput{
|
||||||
|
Protocol: payload.Protocol,
|
||||||
|
Access: payload.Access,
|
||||||
|
Host: payload.Host,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
routes.writeBootstrapStepResponse(w, http.StatusOK, "instance", map[string]any{
|
||||||
|
"request": payload,
|
||||||
|
"installation": record,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapModeStep(w http.ResponseWriter, r *http.Request) {
|
||||||
|
payload, ok := decodeBootstrapRequest[bootstrapModeStepRequest](w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
payload.Mode = strings.ToLower(strings.TrimSpace(payload.Mode))
|
||||||
|
payload.Name = strings.TrimSpace(payload.Name)
|
||||||
|
|
||||||
|
if payload.Mode != "personal" && payload.Mode != "organizational" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Mode must be either 'personal' or 'organizational'.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if payload.Name == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
record, err := routes.bootstrapService().SaveMode(r.Context(), bootstrapservice.SaveModeInput{Mode: payload.Mode, Name: payload.Name})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
routes.writeBootstrapStepResponse(w, http.StatusOK, "mode", map[string]any{
|
||||||
|
"request": payload,
|
||||||
|
"installation": record,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapAdminStep(w http.ResponseWriter, r *http.Request) {
|
||||||
|
payload, ok := decodeBootstrapRequest[bootstrapAdminStepRequest](w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
payload.DisplayName = strings.TrimSpace(payload.DisplayName)
|
||||||
|
payload.Email = strings.ToLower(strings.TrimSpace(payload.Email))
|
||||||
|
|
||||||
|
if payload.DisplayName == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Display name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if payload.Email == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Email is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.TrimSpace(payload.Password) == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Password is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
record, err := routes.bootstrapService().SaveAdmin(r.Context(), bootstrapservice.SaveAdminInput{
|
||||||
|
DisplayName: payload.DisplayName,
|
||||||
|
Email: payload.Email,
|
||||||
|
Password: payload.Password,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
routes.writeBootstrapStepResponse(w, http.StatusOK, "admin", map[string]any{
|
||||||
|
"request": payload,
|
||||||
|
"admin": record,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleBootstrapStructureStep(w http.ResponseWriter, r *http.Request) {
|
||||||
|
payload, ok := decodeBootstrapRequest[bootstrapStructureStepRequest](w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
payload.OrganizationName = strings.TrimSpace(payload.OrganizationName)
|
||||||
|
payload.DepartmentName = strings.TrimSpace(payload.DepartmentName)
|
||||||
|
payload.TeamName = strings.TrimSpace(payload.TeamName)
|
||||||
|
payload.ProjectName = strings.TrimSpace(payload.ProjectName)
|
||||||
|
|
||||||
|
if payload.DepartmentName == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Department name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if payload.TeamName == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Team name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if payload.ProjectName == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
record, err := routes.bootstrapService().SaveStructure(r.Context(), bootstrapservice.SaveStructureInput{
|
||||||
|
OrganizationName: payload.OrganizationName,
|
||||||
|
DepartmentName: payload.DepartmentName,
|
||||||
|
TeamName: payload.TeamName,
|
||||||
|
ProjectName: payload.ProjectName,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeBootstrapPersistenceError(w, r, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
routes.writeBootstrapStepResponse(w, http.StatusOK, "structure", map[string]any{
|
||||||
|
"request": payload,
|
||||||
|
"structure": record,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) bootstrapService() *bootstrapservice.Service {
|
||||||
|
return bootstrapservice.NewService(routes.cfg.Database, routes.cfg.Config.POSIXRoot)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) writeBootstrapStepResponse(w http.ResponseWriter, status int, step string, payload any) {
|
||||||
|
WriteJSON(w, status, map[string]any{
|
||||||
|
"data": map[string]any{
|
||||||
|
"step": step,
|
||||||
|
"result": payload,
|
||||||
|
},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "bootstrap-step",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) writeBootstrapPersistenceError(w http.ResponseWriter, r *http.Request, err error) {
|
||||||
|
switch {
|
||||||
|
case errors.Is(err, bootstrapservice.ErrInstallationNotConfigured), errors.Is(err, bootstrapservice.ErrAdminNotConfigured):
|
||||||
|
WriteError(w, http.StatusConflict, RequestIDFromContext(r.Context()), "bootstrap_prerequisite_missing", err.Error())
|
||||||
|
default:
|
||||||
|
routes.cfg.Logger.Error("persist bootstrap step", "error", err, "path", r.URL.Path)
|
||||||
|
message := "Failed to persist bootstrap data."
|
||||||
|
if routes.cfg.Config.IsDevelopment() {
|
||||||
|
message = message + " " + err.Error()
|
||||||
|
}
|
||||||
|
WriteError(w, http.StatusInternalServerError, RequestIDFromContext(r.Context()), "bootstrap_persist_failed", message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeBootstrapRequest[T any](w http.ResponseWriter, r *http.Request) (T, bool) {
|
||||||
|
var payload T
|
||||||
|
|
||||||
|
decoder := json.NewDecoder(r.Body)
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
|
||||||
|
if err := decoder.Decode(&payload); err != nil {
|
||||||
|
if errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body is required and must be valid JSON for this bootstrap step.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must be valid JSON for this bootstrap step.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := decoder.Decode(&struct{}{}); !errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must contain a single JSON object.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload, true
|
||||||
|
}
|
||||||
@@ -0,0 +1,717 @@
|
|||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
bootstrapservice "moku-backend/internal/bootstrap"
|
||||||
|
|
||||||
|
"github.com/go-chi/chi/v5"
|
||||||
|
)
|
||||||
|
|
||||||
|
type createProjectFolderRequest struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
ParentFolderPath string `json:"parentFolderId"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type renameProjectFolderRequest struct {
|
||||||
|
FolderPath string `json:"folderId"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type deleteProjectFolderRequest struct {
|
||||||
|
FolderPath string `json:"folderId"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keep the existing JSON contract for the frontend, but use clearer path-vs-stable-ID
|
||||||
|
// names internally so the move flow is easier to reason about.
|
||||||
|
type moveProjectFolderRequest struct {
|
||||||
|
FolderPath string `json:"folderId"`
|
||||||
|
FolderStableID string `json:"folderNodeId"`
|
||||||
|
ParentFolderPath string `json:"parentFolderId"`
|
||||||
|
ParentStableID string `json:"parentNodeId"`
|
||||||
|
TargetIndex int `json:"targetIndex"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type createProjectItemRequest struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
ParentFolderPath string `json:"parentFolderId"`
|
||||||
|
ItemType string `json:"itemType"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type deleteProjectItemRequest struct {
|
||||||
|
ItemPath string `json:"itemId"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type moveProjectItemRequest struct {
|
||||||
|
ItemPath string `json:"itemId"`
|
||||||
|
ItemStableID string `json:"itemNodeId"`
|
||||||
|
ParentFolderPath string `json:"parentFolderId"`
|
||||||
|
ParentStableID string `json:"parentNodeId"`
|
||||||
|
TargetIndex int `json:"targetIndex"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleProjectFolders(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
folders, err := routes.bootstrapService().GetProjectHierarchyFolders(r.Context(), projectID)
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "load")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": map[string]any{
|
||||||
|
"projectId": projectID,
|
||||||
|
"folders": folders,
|
||||||
|
},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-folders",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleCreateProjectFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeProjectFolderRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.Name = strings.TrimSpace(payload.Name)
|
||||||
|
payload.ParentFolderPath = strings.TrimSpace(payload.ParentFolderPath)
|
||||||
|
if payload.Name == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().CreateProjectFolder(r.Context(), bootstrapservice.CreateProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
ParentFolderPath: payload.ParentFolderPath,
|
||||||
|
Name: payload.Name,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "persist")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusCreated, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-folder-create",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleDeleteProjectFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload := decodeDeleteProjectFolderRequest(r)
|
||||||
|
if strings.TrimSpace(payload.FolderPath) == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().DeleteProjectFolder(r.Context(), bootstrapservice.DeleteProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
FolderPath: payload.FolderPath,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "delete")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-folder-delete",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleRenameProjectFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeRenameProjectFolderRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.FolderPath = strings.TrimSpace(payload.FolderPath)
|
||||||
|
payload.Name = strings.TrimSpace(payload.Name)
|
||||||
|
if payload.FolderPath == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if payload.Name == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().RenameProjectFolder(r.Context(), bootstrapservice.RenameProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
FolderPath: payload.FolderPath,
|
||||||
|
Name: payload.Name,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "rename")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-folder-rename",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleMoveProjectFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeMoveProjectFolderRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.FolderPath = strings.TrimSpace(payload.FolderPath)
|
||||||
|
payload.FolderStableID = strings.TrimSpace(payload.FolderStableID)
|
||||||
|
payload.ParentFolderPath = strings.TrimSpace(payload.ParentFolderPath)
|
||||||
|
payload.ParentStableID = strings.TrimSpace(payload.ParentStableID)
|
||||||
|
if payload.FolderPath == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().MoveProjectFolder(r.Context(), bootstrapservice.MoveProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
FolderPath: payload.FolderPath,
|
||||||
|
FolderStableID: payload.FolderStableID,
|
||||||
|
ParentFolderPath: payload.ParentFolderPath,
|
||||||
|
ParentStableID: payload.ParentStableID,
|
||||||
|
TargetIndex: payload.TargetIndex,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "move")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-folder-move",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleProjectTreeFolders(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
folders, err := routes.bootstrapService().GetProjectTreeFolders(r.Context(), projectID)
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "load")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": map[string]any{
|
||||||
|
"projectId": projectID,
|
||||||
|
"folders": folders,
|
||||||
|
},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-folders",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleProjectTree(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
nodes, err := routes.bootstrapService().GetProjectTreeNodes(r.Context(), projectID)
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectTreeError(w, r, err, "load")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": map[string]any{
|
||||||
|
"projectId": projectID,
|
||||||
|
"nodes": nodes,
|
||||||
|
},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleCreateProjectTreeFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeProjectFolderRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.Name = strings.TrimSpace(payload.Name)
|
||||||
|
payload.ParentFolderPath = strings.TrimSpace(payload.ParentFolderPath)
|
||||||
|
if payload.Name == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().CreateProjectTreeFolder(r.Context(), bootstrapservice.CreateProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
ParentFolderPath: payload.ParentFolderPath,
|
||||||
|
Name: payload.Name,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "persist")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusCreated, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-folder-create",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleDeleteProjectTreeFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload := decodeDeleteProjectFolderRequest(r)
|
||||||
|
if strings.TrimSpace(payload.FolderPath) == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().DeleteProjectTreeFolder(r.Context(), bootstrapservice.DeleteProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
FolderPath: payload.FolderPath,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "delete")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-folder-delete",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleRenameProjectTreeFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeRenameProjectFolderRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.FolderPath = strings.TrimSpace(payload.FolderPath)
|
||||||
|
payload.Name = strings.TrimSpace(payload.Name)
|
||||||
|
if payload.FolderPath == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if payload.Name == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().RenameProjectTreeFolder(r.Context(), bootstrapservice.RenameProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
FolderPath: payload.FolderPath,
|
||||||
|
Name: payload.Name,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "rename")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-folder-rename",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleMoveProjectTreeFolder(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeMoveProjectFolderRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.FolderPath = strings.TrimSpace(payload.FolderPath)
|
||||||
|
payload.FolderStableID = strings.TrimSpace(payload.FolderStableID)
|
||||||
|
payload.ParentFolderPath = strings.TrimSpace(payload.ParentFolderPath)
|
||||||
|
payload.ParentStableID = strings.TrimSpace(payload.ParentStableID)
|
||||||
|
if payload.FolderPath == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Folder ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().MoveProjectTreeFolder(r.Context(), bootstrapservice.MoveProjectFolderInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
FolderPath: payload.FolderPath,
|
||||||
|
FolderStableID: payload.FolderStableID,
|
||||||
|
ParentFolderPath: payload.ParentFolderPath,
|
||||||
|
ParentStableID: payload.ParentStableID,
|
||||||
|
TargetIndex: payload.TargetIndex,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectFolderError(w, r, err, "move")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-folder-move",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleCreateProjectTreeItem(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeProjectItemRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.Name = strings.TrimSpace(payload.Name)
|
||||||
|
payload.ParentFolderPath = strings.TrimSpace(payload.ParentFolderPath)
|
||||||
|
payload.ItemType = strings.TrimSpace(payload.ItemType)
|
||||||
|
if payload.Name == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Item name is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if payload.ItemType == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Item type is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().CreateProjectTreeItem(r.Context(), bootstrapservice.CreateProjectItemInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
ParentFolderPath: payload.ParentFolderPath,
|
||||||
|
Name: payload.Name,
|
||||||
|
ItemType: payload.ItemType,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectTreeError(w, r, err, "persist")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusCreated, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-item-create",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleDeleteProjectTreeItem(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload := decodeDeleteProjectItemRequest(r)
|
||||||
|
if strings.TrimSpace(payload.ItemPath) == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Item ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().DeleteProjectTreeItem(r.Context(), bootstrapservice.DeleteProjectItemInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
ItemPath: payload.ItemPath,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectTreeError(w, r, err, "delete")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-item-delete",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleMoveProjectTreeItem(w http.ResponseWriter, r *http.Request) {
|
||||||
|
projectID := strings.TrimSpace(chi.URLParam(r, "projectId"))
|
||||||
|
if projectID == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Project ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload, ok := decodeMoveProjectItemRequest(w, r)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
payload.ItemPath = strings.TrimSpace(payload.ItemPath)
|
||||||
|
payload.ItemStableID = strings.TrimSpace(payload.ItemStableID)
|
||||||
|
payload.ParentFolderPath = strings.TrimSpace(payload.ParentFolderPath)
|
||||||
|
payload.ParentStableID = strings.TrimSpace(payload.ParentStableID)
|
||||||
|
if payload.ItemPath == "" {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", "Item ID is required.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result, err := routes.bootstrapService().MoveProjectTreeItem(r.Context(), bootstrapservice.MoveProjectItemInput{
|
||||||
|
ProjectID: projectID,
|
||||||
|
ItemPath: payload.ItemPath,
|
||||||
|
ItemStableID: payload.ItemStableID,
|
||||||
|
ParentFolderPath: payload.ParentFolderPath,
|
||||||
|
ParentStableID: payload.ParentStableID,
|
||||||
|
TargetIndex: payload.TargetIndex,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
routes.writeProjectTreeError(w, r, err, "move")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": result,
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "project-tree-item-move",
|
||||||
|
"persisted": true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) writeProjectFolderError(w http.ResponseWriter, r *http.Request, err error, operation string) {
|
||||||
|
switch {
|
||||||
|
case errors.Is(err, bootstrapservice.ErrProjectNotFound), errors.Is(err, bootstrapservice.ErrProjectFolderNotFound):
|
||||||
|
WriteError(w, http.StatusNotFound, RequestIDFromContext(r.Context()), "not_found", err.Error())
|
||||||
|
case errors.Is(err, bootstrapservice.ErrInvalidProjectFolderMove):
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", err.Error())
|
||||||
|
default:
|
||||||
|
routes.cfg.Logger.Error(operation+" project folder", "error", err, "path", r.URL.Path)
|
||||||
|
message := "Failed to " + operation + " project folder."
|
||||||
|
if routes.cfg.Config.IsDevelopment() {
|
||||||
|
message = message + " " + err.Error()
|
||||||
|
}
|
||||||
|
WriteError(w, http.StatusInternalServerError, RequestIDFromContext(r.Context()), "project_folder_"+operation+"_failed", message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) writeProjectTreeError(w http.ResponseWriter, r *http.Request, err error, operation string) {
|
||||||
|
switch {
|
||||||
|
case errors.Is(err, bootstrapservice.ErrProjectNotFound), errors.Is(err, bootstrapservice.ErrProjectFolderNotFound), errors.Is(err, bootstrapservice.ErrProjectItemNotFound):
|
||||||
|
WriteError(w, http.StatusNotFound, RequestIDFromContext(r.Context()), "not_found", err.Error())
|
||||||
|
case errors.Is(err, bootstrapservice.ErrInvalidProjectFolderMove), errors.Is(err, bootstrapservice.ErrInvalidProjectItemMove):
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_request", err.Error())
|
||||||
|
default:
|
||||||
|
routes.cfg.Logger.Error(operation+" project tree", "error", err, "path", r.URL.Path)
|
||||||
|
message := "Failed to " + operation + " project tree."
|
||||||
|
if routes.cfg.Config.IsDevelopment() {
|
||||||
|
message = message + " " + err.Error()
|
||||||
|
}
|
||||||
|
WriteError(w, http.StatusInternalServerError, RequestIDFromContext(r.Context()), "project_tree_"+operation+"_failed", message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeMoveProjectFolderRequest(w http.ResponseWriter, r *http.Request) (moveProjectFolderRequest, bool) {
|
||||||
|
var payload moveProjectFolderRequest
|
||||||
|
|
||||||
|
decoder := json.NewDecoder(r.Body)
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
|
||||||
|
if err := decoder.Decode(&payload); err != nil {
|
||||||
|
if errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body is required and must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := decoder.Decode(&struct{}{}); !errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must contain a single JSON object.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload, true
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeDeleteProjectFolderRequest(r *http.Request) deleteProjectFolderRequest {
|
||||||
|
return deleteProjectFolderRequest{
|
||||||
|
FolderPath: strings.TrimSpace(r.URL.Query().Get("folderId")),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeDeleteProjectItemRequest(r *http.Request) deleteProjectItemRequest {
|
||||||
|
return deleteProjectItemRequest{
|
||||||
|
ItemPath: strings.TrimSpace(r.URL.Query().Get("itemId")),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeRenameProjectFolderRequest(w http.ResponseWriter, r *http.Request) (renameProjectFolderRequest, bool) {
|
||||||
|
var payload renameProjectFolderRequest
|
||||||
|
|
||||||
|
decoder := json.NewDecoder(r.Body)
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
|
||||||
|
if err := decoder.Decode(&payload); err != nil {
|
||||||
|
if errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body is required and must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := decoder.Decode(&struct{}{}); !errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must contain a single JSON object.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload, true
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeProjectFolderRequest(w http.ResponseWriter, r *http.Request) (createProjectFolderRequest, bool) {
|
||||||
|
var payload createProjectFolderRequest
|
||||||
|
|
||||||
|
decoder := json.NewDecoder(r.Body)
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
|
||||||
|
if err := decoder.Decode(&payload); err != nil {
|
||||||
|
if errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body is required and must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := decoder.Decode(&struct{}{}); !errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must contain a single JSON object.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload, true
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeProjectItemRequest(w http.ResponseWriter, r *http.Request) (createProjectItemRequest, bool) {
|
||||||
|
var payload createProjectItemRequest
|
||||||
|
|
||||||
|
decoder := json.NewDecoder(r.Body)
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
|
||||||
|
if err := decoder.Decode(&payload); err != nil {
|
||||||
|
if errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body is required and must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := decoder.Decode(&struct{}{}); !errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must contain a single JSON object.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload, true
|
||||||
|
}
|
||||||
|
|
||||||
|
func decodeMoveProjectItemRequest(w http.ResponseWriter, r *http.Request) (moveProjectItemRequest, bool) {
|
||||||
|
var payload moveProjectItemRequest
|
||||||
|
|
||||||
|
decoder := json.NewDecoder(r.Body)
|
||||||
|
decoder.DisallowUnknownFields()
|
||||||
|
|
||||||
|
if err := decoder.Decode(&payload); err != nil {
|
||||||
|
if errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body is required and must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must be valid JSON.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := decoder.Decode(&struct{}{}); !errors.Is(err, io.EOF) {
|
||||||
|
WriteError(w, http.StatusBadRequest, RequestIDFromContext(r.Context()), "invalid_json", "The request body must contain a single JSON object.")
|
||||||
|
return payload, false
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload, true
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
// Path: Backend/internal/httpx/api_routes.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/go-chi/chi/v5"
|
||||||
|
)
|
||||||
|
|
||||||
|
type apiRoutes struct {
|
||||||
|
cfg RouterConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
func newAPIRoutes(cfg RouterConfig) routeRegistrar {
|
||||||
|
return apiRoutes{cfg: cfg}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) Register(router chi.Router) {
|
||||||
|
router.Route("/v1", func(apiRouter chi.Router) {
|
||||||
|
apiRouter.Get("/", routes.handleIndex)
|
||||||
|
apiRouter.Get("/bootstrap", routes.handleBootstrapOverview)
|
||||||
|
apiRouter.Get("/bootstrap/installation", routes.handleBootstrapInstallation)
|
||||||
|
apiRouter.Get("/bootstrap/admin", routes.handleBootstrapAdmin)
|
||||||
|
apiRouter.Get("/bootstrap/structure", routes.handleBootstrapStructure)
|
||||||
|
apiRouter.Get("/bootstrap/state", routes.handleBootstrapState)
|
||||||
|
apiRouter.Route("/bootstrap/steps", func(bootstrapRouter chi.Router) {
|
||||||
|
bootstrapRouter.Post("/instance", routes.handleBootstrapInstanceStep)
|
||||||
|
bootstrapRouter.Post("/mode", routes.handleBootstrapModeStep)
|
||||||
|
bootstrapRouter.Post("/admin", routes.handleBootstrapAdminStep)
|
||||||
|
bootstrapRouter.Post("/structure", routes.handleBootstrapStructureStep)
|
||||||
|
})
|
||||||
|
apiRouter.Get("/app-shell", routes.handleAppShellState)
|
||||||
|
apiRouter.Get("/organizations", routes.handleOrganizations)
|
||||||
|
apiRouter.Get("/workspaces", routes.handleWorkspaces)
|
||||||
|
apiRouter.Route("/projects/{projectId}", func(projectRouter chi.Router) {
|
||||||
|
projectRouter.Get("/folders", routes.handleProjectFolders)
|
||||||
|
projectRouter.Post("/folders", routes.handleCreateProjectFolder)
|
||||||
|
projectRouter.Patch("/folders", routes.handleRenameProjectFolder)
|
||||||
|
projectRouter.Patch("/folders/move", routes.handleMoveProjectFolder)
|
||||||
|
projectRouter.Delete("/folders", routes.handleDeleteProjectFolder)
|
||||||
|
projectRouter.Get("/tree", routes.handleProjectTree)
|
||||||
|
projectRouter.Get("/tree/folders", routes.handleProjectTreeFolders)
|
||||||
|
projectRouter.Post("/tree/folders", routes.handleCreateProjectTreeFolder)
|
||||||
|
projectRouter.Patch("/tree/folders", routes.handleRenameProjectTreeFolder)
|
||||||
|
projectRouter.Patch("/tree/folders/move", routes.handleMoveProjectTreeFolder)
|
||||||
|
projectRouter.Delete("/tree/folders", routes.handleDeleteProjectTreeFolder)
|
||||||
|
projectRouter.Post("/tree/items", routes.handleCreateProjectTreeItem)
|
||||||
|
projectRouter.Patch("/tree/items/move", routes.handleMoveProjectTreeItem)
|
||||||
|
projectRouter.Delete("/tree/items", routes.handleDeleteProjectTreeItem)
|
||||||
|
})
|
||||||
|
|
||||||
|
if routes.cfg.Config.IsDevelopment() {
|
||||||
|
apiRouter.Post("/dev/bootstrap/reset", routes.handleDevelopmentBootstrapReset)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleIndex(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"service": routes.cfg.ServiceName,
|
||||||
|
"version": "v1",
|
||||||
|
"status": "scaffolded",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleOrganizations(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": []any{},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "organizations",
|
||||||
|
"count": 0,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes apiRoutes) handleWorkspaces(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"data": []any{},
|
||||||
|
"meta": map[string]any{
|
||||||
|
"resource": "workspaces",
|
||||||
|
"count": 0,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
// Path: Backend/internal/httpx/middleware.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"log/slog"
|
||||||
|
"net/http"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/google/uuid"
|
||||||
|
)
|
||||||
|
|
||||||
|
type contextKey string
|
||||||
|
|
||||||
|
const requestIDContextKey contextKey = "requestID"
|
||||||
|
|
||||||
|
type statusRecorder struct {
|
||||||
|
http.ResponseWriter
|
||||||
|
statusCode int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *statusRecorder) WriteHeader(statusCode int) {
|
||||||
|
r.statusCode = statusCode
|
||||||
|
r.ResponseWriter.WriteHeader(statusCode)
|
||||||
|
}
|
||||||
|
|
||||||
|
func RequestID(next http.Handler) http.Handler {
|
||||||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
requestID := uuid.NewString()
|
||||||
|
ctx := context.WithValue(r.Context(), requestIDContextKey, requestID)
|
||||||
|
w.Header().Set("X-Request-ID", requestID)
|
||||||
|
next.ServeHTTP(w, r.WithContext(ctx))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func Recoverer(logger *slog.Logger) func(http.Handler) http.Handler {
|
||||||
|
return func(next http.Handler) http.Handler {
|
||||||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
defer func() {
|
||||||
|
if recovered := recover(); recovered != nil {
|
||||||
|
requestID := RequestIDFromContext(r.Context())
|
||||||
|
logger.Error("panic recovered", "request_id", requestID, "panic", recovered, "path", r.URL.Path)
|
||||||
|
WriteError(w, http.StatusInternalServerError, requestID, "internal_error", "An unexpected error occurred.")
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
next.ServeHTTP(w, r)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func RequestLogger(logger *slog.Logger) func(http.Handler) http.Handler {
|
||||||
|
return func(next http.Handler) http.Handler {
|
||||||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
startedAt := time.Now()
|
||||||
|
recorder := &statusRecorder{ResponseWriter: w, statusCode: http.StatusOK}
|
||||||
|
|
||||||
|
next.ServeHTTP(recorder, r)
|
||||||
|
|
||||||
|
logger.Info(
|
||||||
|
"http request",
|
||||||
|
"request_id", RequestIDFromContext(r.Context()),
|
||||||
|
"method", r.Method,
|
||||||
|
"path", r.URL.Path,
|
||||||
|
"status", recorder.statusCode,
|
||||||
|
"duration", time.Since(startedAt).String(),
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func RequestIDFromContext(ctx context.Context) string {
|
||||||
|
requestID, ok := ctx.Value(requestIDContextKey).(string)
|
||||||
|
if !ok {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
return requestID
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
// Path: Backend/internal/httpx/response.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ErrorResponse struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
RequestID string `json:"requestId,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func WriteJSON(w http.ResponseWriter, status int, payload any) {
|
||||||
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||||||
|
w.WriteHeader(status)
|
||||||
|
|
||||||
|
if payload == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_ = json.NewEncoder(w).Encode(payload)
|
||||||
|
}
|
||||||
|
|
||||||
|
func WriteError(w http.ResponseWriter, status int, requestID, code, message string) {
|
||||||
|
WriteJSON(w, status, ErrorResponse{
|
||||||
|
Error: code,
|
||||||
|
Message: message,
|
||||||
|
RequestID: requestID,
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
// Path: Backend/internal/httpx/router.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log/slog"
|
||||||
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/go-chi/chi/v5"
|
||||||
|
chimiddleware "github.com/go-chi/chi/v5/middleware"
|
||||||
|
|
||||||
|
"moku-backend/internal/buildinfo"
|
||||||
|
"moku-backend/internal/cache"
|
||||||
|
"moku-backend/internal/config"
|
||||||
|
"moku-backend/internal/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
type RouterConfig struct {
|
||||||
|
ServiceName string
|
||||||
|
Config *config.Config
|
||||||
|
Logger *slog.Logger
|
||||||
|
BuildInfo buildinfo.Info
|
||||||
|
Database *database.DB
|
||||||
|
Cache *cache.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
type routeRegistrar interface {
|
||||||
|
Register(chi.Router)
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewRouter(cfg RouterConfig) http.Handler {
|
||||||
|
router := chi.NewRouter()
|
||||||
|
|
||||||
|
registerMiddleware(router, cfg)
|
||||||
|
registerRoutes(router, routesForService(cfg)...)
|
||||||
|
router.NotFound(notFoundHandler)
|
||||||
|
|
||||||
|
return router
|
||||||
|
}
|
||||||
|
|
||||||
|
func registerMiddleware(router chi.Router, cfg RouterConfig) {
|
||||||
|
router.Use(chimiddleware.RealIP)
|
||||||
|
router.Use(RequestID)
|
||||||
|
router.Use(Recoverer(cfg.Logger))
|
||||||
|
router.Use(RequestLogger(cfg.Logger))
|
||||||
|
}
|
||||||
|
|
||||||
|
func registerRoutes(router chi.Router, registrars ...routeRegistrar) {
|
||||||
|
for _, registrar := range registrars {
|
||||||
|
registrar.Register(router)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func routesForService(cfg RouterConfig) []routeRegistrar {
|
||||||
|
registrars := []routeRegistrar{newSharedRoutes(cfg)}
|
||||||
|
|
||||||
|
switch strings.ToLower(cfg.ServiceName) {
|
||||||
|
case "web":
|
||||||
|
registrars = append(registrars, newWebRoutes(cfg))
|
||||||
|
case "api":
|
||||||
|
registrars = append(registrars, newAPIRoutes(cfg))
|
||||||
|
}
|
||||||
|
|
||||||
|
return registrars
|
||||||
|
}
|
||||||
|
|
||||||
|
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
WriteError(w, http.StatusNotFound, RequestIDFromContext(r.Context()), "not_found", "The requested endpoint does not exist.")
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
// Path: Backend/internal/httpx/shared_routes.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"net/http"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/go-chi/chi/v5"
|
||||||
|
)
|
||||||
|
|
||||||
|
type sharedRoutes struct {
|
||||||
|
cfg RouterConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
func newSharedRoutes(cfg RouterConfig) routeRegistrar {
|
||||||
|
return sharedRoutes{cfg: cfg}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes sharedRoutes) Register(router chi.Router) {
|
||||||
|
router.Get("/", routes.handleIndex)
|
||||||
|
router.Get("/health", routes.handleHealth)
|
||||||
|
router.Get("/version", routes.handleVersion)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes sharedRoutes) handleIndex(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]string{
|
||||||
|
"service": routes.cfg.ServiceName,
|
||||||
|
"status": "ok",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes sharedRoutes) handleHealth(w http.ResponseWriter, r *http.Request) {
|
||||||
|
ctx, cancel := context.WithTimeout(r.Context(), 2*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
databaseStatus := "ok"
|
||||||
|
if err := routes.cfg.Database.Health(ctx); err != nil {
|
||||||
|
databaseStatus = err.Error()
|
||||||
|
}
|
||||||
|
|
||||||
|
cacheStatus := "ok"
|
||||||
|
if err := routes.cfg.Cache.Health(ctx); err != nil {
|
||||||
|
cacheStatus = err.Error()
|
||||||
|
}
|
||||||
|
|
||||||
|
statusCode := http.StatusOK
|
||||||
|
if databaseStatus != "ok" || cacheStatus != "ok" {
|
||||||
|
statusCode = http.StatusServiceUnavailable
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteJSON(w, statusCode, map[string]any{
|
||||||
|
"service": routes.cfg.ServiceName,
|
||||||
|
"status": map[string]string{
|
||||||
|
"database": databaseStatus,
|
||||||
|
"cache": cacheStatus,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes sharedRoutes) handleVersion(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"service": routes.cfg.ServiceName,
|
||||||
|
"app": routes.cfg.Config.AppName,
|
||||||
|
"environment": routes.cfg.Config.Environment,
|
||||||
|
"build": routes.cfg.BuildInfo,
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
// Path: Backend/internal/httpx/web_routes.go
|
||||||
|
|
||||||
|
package httpx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/go-chi/chi/v5"
|
||||||
|
)
|
||||||
|
|
||||||
|
type webRoutes struct {
|
||||||
|
cfg RouterConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
func newWebRoutes(cfg RouterConfig) routeRegistrar {
|
||||||
|
return webRoutes{cfg: cfg}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes webRoutes) Register(router chi.Router) {
|
||||||
|
router.Get("/session", routes.handleSession)
|
||||||
|
router.Get("/bootstrap", routes.handleBootstrap)
|
||||||
|
router.Get("/me", routes.handleCurrentUser)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes webRoutes) handleSession(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"service": routes.cfg.ServiceName,
|
||||||
|
"session": map[string]any{
|
||||||
|
"authenticated": false,
|
||||||
|
"mode": "cookie",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes webRoutes) handleBootstrap(w http.ResponseWriter, _ *http.Request) {
|
||||||
|
WriteJSON(w, http.StatusOK, map[string]any{
|
||||||
|
"service": routes.cfg.ServiceName,
|
||||||
|
"app": map[string]any{
|
||||||
|
"name": routes.cfg.Config.AppName,
|
||||||
|
"environment": routes.cfg.Config.Environment,
|
||||||
|
},
|
||||||
|
"features": map[string]bool{
|
||||||
|
"auth": false,
|
||||||
|
"workspaces": false,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (routes webRoutes) handleCurrentUser(w http.ResponseWriter, r *http.Request) {
|
||||||
|
WriteError(w, http.StatusNotImplemented, RequestIDFromContext(r.Context()), "not_implemented", "The current user endpoint is scaffolded but not implemented yet.")
|
||||||
|
}
|
||||||
@@ -0,0 +1,196 @@
|
|||||||
|
package jobs
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/jackc/pgx/v5"
|
||||||
|
|
||||||
|
"moku-backend/internal/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
KindBootstrapStructureMaterialize = "bootstrap.structure.materialize"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Status string
|
||||||
|
|
||||||
|
const (
|
||||||
|
StatusPending Status = "pending"
|
||||||
|
StatusRunning Status = "running"
|
||||||
|
StatusSucceeded Status = "succeeded"
|
||||||
|
StatusFailed Status = "failed"
|
||||||
|
)
|
||||||
|
|
||||||
|
type BootstrapStructureMaterializePayload struct {
|
||||||
|
InstallationID string `json:"installationId"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Job struct {
|
||||||
|
ID string
|
||||||
|
Kind string
|
||||||
|
Status Status
|
||||||
|
Payload json.RawMessage
|
||||||
|
Attempts int
|
||||||
|
MaxAttempts int
|
||||||
|
AvailableAt time.Time
|
||||||
|
StartedAt *time.Time
|
||||||
|
FinishedAt *time.Time
|
||||||
|
LastError *string
|
||||||
|
CreatedAt time.Time
|
||||||
|
UpdatedAt time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
type EnqueueInput struct {
|
||||||
|
Kind string
|
||||||
|
Payload any
|
||||||
|
AvailableAt time.Time
|
||||||
|
MaxAttempts int
|
||||||
|
}
|
||||||
|
|
||||||
|
type Store struct {
|
||||||
|
db *database.DB
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewStore(db *database.DB) *Store {
|
||||||
|
return &Store{db: db}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *Store) Enqueue(ctx context.Context, input EnqueueInput) (Job, error) {
|
||||||
|
payload := json.RawMessage([]byte(`{}`))
|
||||||
|
if input.Payload != nil {
|
||||||
|
encoded, err := json.Marshal(input.Payload)
|
||||||
|
if err != nil {
|
||||||
|
return Job{}, err
|
||||||
|
}
|
||||||
|
payload = encoded
|
||||||
|
}
|
||||||
|
|
||||||
|
availableAt := input.AvailableAt
|
||||||
|
if availableAt.IsZero() {
|
||||||
|
availableAt = time.Now().UTC()
|
||||||
|
}
|
||||||
|
|
||||||
|
maxAttempts := input.MaxAttempts
|
||||||
|
if maxAttempts < 1 {
|
||||||
|
maxAttempts = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
return scanJob(store.db.Pool.QueryRow(ctx, `
|
||||||
|
INSERT INTO background_jobs (kind, status, payload, attempts, max_attempts, available_at)
|
||||||
|
VALUES ($1, 'pending'::background_job_status, $2::jsonb, 0, $3, $4)
|
||||||
|
RETURNING
|
||||||
|
id::text,
|
||||||
|
kind,
|
||||||
|
status::text,
|
||||||
|
payload,
|
||||||
|
attempts,
|
||||||
|
max_attempts,
|
||||||
|
available_at,
|
||||||
|
started_at,
|
||||||
|
finished_at,
|
||||||
|
last_error,
|
||||||
|
created_at,
|
||||||
|
updated_at;
|
||||||
|
`, strings.TrimSpace(input.Kind), payload, maxAttempts, availableAt))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *Store) ClaimNext(ctx context.Context) (*Job, error) {
|
||||||
|
job, err := scanJob(store.db.Pool.QueryRow(ctx, `
|
||||||
|
WITH next_job AS (
|
||||||
|
SELECT id
|
||||||
|
FROM background_jobs
|
||||||
|
WHERE status = 'pending'::background_job_status
|
||||||
|
AND available_at <= NOW()
|
||||||
|
ORDER BY created_at ASC
|
||||||
|
LIMIT 1
|
||||||
|
FOR UPDATE SKIP LOCKED
|
||||||
|
)
|
||||||
|
UPDATE background_jobs AS jobs
|
||||||
|
SET
|
||||||
|
status = 'running'::background_job_status,
|
||||||
|
attempts = jobs.attempts + 1,
|
||||||
|
started_at = NOW(),
|
||||||
|
finished_at = NULL,
|
||||||
|
last_error = NULL,
|
||||||
|
updated_at = NOW()
|
||||||
|
FROM next_job
|
||||||
|
WHERE jobs.id = next_job.id
|
||||||
|
RETURNING
|
||||||
|
jobs.id::text,
|
||||||
|
jobs.kind,
|
||||||
|
jobs.status::text,
|
||||||
|
jobs.payload,
|
||||||
|
jobs.attempts,
|
||||||
|
jobs.max_attempts,
|
||||||
|
jobs.available_at,
|
||||||
|
jobs.started_at,
|
||||||
|
jobs.finished_at,
|
||||||
|
jobs.last_error,
|
||||||
|
jobs.created_at,
|
||||||
|
jobs.updated_at;
|
||||||
|
`))
|
||||||
|
if err != nil {
|
||||||
|
if err == pgx.ErrNoRows {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return &job, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *Store) MarkSucceeded(ctx context.Context, jobID string) error {
|
||||||
|
_, err := store.db.Pool.Exec(ctx, `
|
||||||
|
UPDATE background_jobs
|
||||||
|
SET
|
||||||
|
status = 'succeeded'::background_job_status,
|
||||||
|
finished_at = NOW(),
|
||||||
|
last_error = NULL,
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE id = $1::uuid;
|
||||||
|
`, strings.TrimSpace(jobID))
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *Store) MarkFailed(ctx context.Context, jobID, failure string) error {
|
||||||
|
_, err := store.db.Pool.Exec(ctx, `
|
||||||
|
UPDATE background_jobs
|
||||||
|
SET
|
||||||
|
status = 'failed'::background_job_status,
|
||||||
|
finished_at = NOW(),
|
||||||
|
last_error = $2,
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE id = $1::uuid;
|
||||||
|
`, strings.TrimSpace(jobID), strings.TrimSpace(failure))
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func scanJob(row pgx.Row) (Job, error) {
|
||||||
|
var job Job
|
||||||
|
var status string
|
||||||
|
if err := row.Scan(
|
||||||
|
&job.ID,
|
||||||
|
&job.Kind,
|
||||||
|
&status,
|
||||||
|
&job.Payload,
|
||||||
|
&job.Attempts,
|
||||||
|
&job.MaxAttempts,
|
||||||
|
&job.AvailableAt,
|
||||||
|
&job.StartedAt,
|
||||||
|
&job.FinishedAt,
|
||||||
|
&job.LastError,
|
||||||
|
&job.CreatedAt,
|
||||||
|
&job.UpdatedAt,
|
||||||
|
); err != nil {
|
||||||
|
return Job{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
job.Status = Status(status)
|
||||||
|
return job, nil
|
||||||
|
}
|
||||||
@@ -0,0 +1,553 @@
|
|||||||
|
package posixproj
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/hex"
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"io/fs"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"moku-backend/internal/database"
|
||||||
|
)
|
||||||
|
|
||||||
|
const rootProjectionPath = "/"
|
||||||
|
|
||||||
|
type Projector struct {
|
||||||
|
db *database.DB
|
||||||
|
root string
|
||||||
|
}
|
||||||
|
|
||||||
|
type RebuildSummary struct {
|
||||||
|
TotalNodes int
|
||||||
|
DirectoryCount int
|
||||||
|
FileCount int
|
||||||
|
}
|
||||||
|
|
||||||
|
type NodeKind string
|
||||||
|
|
||||||
|
const (
|
||||||
|
NodeKindDirectory NodeKind = "directory"
|
||||||
|
NodeKindFile NodeKind = "file"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Scope struct {
|
||||||
|
InstallationID string
|
||||||
|
OrganizationID string
|
||||||
|
OrganizationSlug string
|
||||||
|
DepartmentSlug string
|
||||||
|
TeamSlug string
|
||||||
|
ProjectSlug string
|
||||||
|
PersonalSlug string
|
||||||
|
}
|
||||||
|
|
||||||
|
type Node struct {
|
||||||
|
Path string
|
||||||
|
ParentPath *string
|
||||||
|
Name string
|
||||||
|
Depth int
|
||||||
|
NodeKind NodeKind
|
||||||
|
LogicalType string
|
||||||
|
FileRole string
|
||||||
|
ResourceID string
|
||||||
|
ResourceName string
|
||||||
|
ResourceSlug string
|
||||||
|
InstallationID string
|
||||||
|
OrganizationID string
|
||||||
|
OrganizationSlug string
|
||||||
|
DepartmentSlug string
|
||||||
|
TeamSlug string
|
||||||
|
ProjectSlug string
|
||||||
|
PersonalSlug string
|
||||||
|
ContentJSON []byte
|
||||||
|
SizeBytes int64
|
||||||
|
Checksum string
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewProjector(db *database.DB, root string) *Projector {
|
||||||
|
return &Projector{db: db, root: strings.TrimSpace(root)}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (projector *Projector) Rebuild(ctx context.Context) error {
|
||||||
|
_, err := projector.RebuildWithSummary(ctx)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (projector *Projector) RebuildWithSummary(ctx context.Context) (RebuildSummary, error) {
|
||||||
|
if projector == nil || projector.db == nil || projector.db.Pool == nil {
|
||||||
|
return RebuildSummary{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
nodes, err := ScanRoot(projector.root)
|
||||||
|
if err != nil {
|
||||||
|
return RebuildSummary{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
summary := summarizeNodes(nodes)
|
||||||
|
|
||||||
|
tx, err := projector.db.Pool.Begin(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return RebuildSummary{}, err
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
_ = tx.Rollback(ctx)
|
||||||
|
}()
|
||||||
|
|
||||||
|
if _, err := tx.Exec(ctx, `DELETE FROM posix_nodes;`); err != nil {
|
||||||
|
return RebuildSummary{}, fmt.Errorf("clear posix_nodes: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, node := range nodes {
|
||||||
|
if _, err := tx.Exec(ctx, `
|
||||||
|
INSERT INTO posix_nodes (
|
||||||
|
path,
|
||||||
|
parent_path,
|
||||||
|
name,
|
||||||
|
depth,
|
||||||
|
node_kind,
|
||||||
|
logical_type,
|
||||||
|
file_role,
|
||||||
|
resource_id,
|
||||||
|
resource_name,
|
||||||
|
resource_slug,
|
||||||
|
installation_id,
|
||||||
|
organization_id,
|
||||||
|
organization_slug,
|
||||||
|
department_slug,
|
||||||
|
team_slug,
|
||||||
|
project_slug,
|
||||||
|
personal_slug,
|
||||||
|
content_json,
|
||||||
|
size_bytes,
|
||||||
|
checksum
|
||||||
|
) VALUES (
|
||||||
|
$1, $2, $3, $4, $5::posix_node_kind, $6, $7, $8, $9, $10,
|
||||||
|
$11, $12, $13, $14, $15, $16, $17, $18::jsonb, $19, $20
|
||||||
|
);
|
||||||
|
`,
|
||||||
|
node.Path,
|
||||||
|
node.ParentPath,
|
||||||
|
node.Name,
|
||||||
|
node.Depth,
|
||||||
|
string(node.NodeKind),
|
||||||
|
node.LogicalType,
|
||||||
|
node.FileRole,
|
||||||
|
node.ResourceID,
|
||||||
|
node.ResourceName,
|
||||||
|
node.ResourceSlug,
|
||||||
|
node.InstallationID,
|
||||||
|
node.OrganizationID,
|
||||||
|
node.OrganizationSlug,
|
||||||
|
node.DepartmentSlug,
|
||||||
|
node.TeamSlug,
|
||||||
|
node.ProjectSlug,
|
||||||
|
node.PersonalSlug,
|
||||||
|
node.ContentJSON,
|
||||||
|
node.SizeBytes,
|
||||||
|
node.Checksum,
|
||||||
|
); err != nil {
|
||||||
|
return RebuildSummary{}, fmt.Errorf("insert posix node %s: %w", node.Path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := tx.Commit(ctx); err != nil {
|
||||||
|
return RebuildSummary{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return summary, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ScanRoot(root string) ([]Node, error) {
|
||||||
|
rootPath := strings.TrimSpace(root)
|
||||||
|
if rootPath == "" {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
info, err := os.Stat(rootPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("stat POSIX root: %w", err)
|
||||||
|
}
|
||||||
|
if !info.IsDir() {
|
||||||
|
return nil, fmt.Errorf("POSIX root is not a directory: %s", rootPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
rootScope, err := loadRootScope(rootPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
nodes := []Node{{
|
||||||
|
Path: rootProjectionPath,
|
||||||
|
ParentPath: nil,
|
||||||
|
Name: filepath.Base(rootPath),
|
||||||
|
Depth: 0,
|
||||||
|
NodeKind: NodeKindDirectory,
|
||||||
|
LogicalType: "tenant_root",
|
||||||
|
InstallationID: rootScope.InstallationID,
|
||||||
|
OrganizationID: rootScope.OrganizationID,
|
||||||
|
OrganizationSlug: rootScope.OrganizationSlug,
|
||||||
|
}}
|
||||||
|
|
||||||
|
err = filepath.WalkDir(rootPath, func(path string, entry fs.DirEntry, walkErr error) error {
|
||||||
|
if walkErr != nil {
|
||||||
|
return walkErr
|
||||||
|
}
|
||||||
|
if path == rootPath {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
relPath, err := filepath.Rel(rootPath, path)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
relPath = filepath.ToSlash(relPath)
|
||||||
|
if relPath == "." {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
node, err := buildNode(rootPath, relPath, entry, rootScope)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
nodes = append(nodes, node)
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return nil, fmt.Errorf("scan POSIX root: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nodes, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadRootScope(rootPath string) (Scope, error) {
|
||||||
|
settingsPath := filepath.Join(rootPath, "settings.json")
|
||||||
|
content, err := os.ReadFile(settingsPath)
|
||||||
|
if err != nil {
|
||||||
|
if errorsIsNotExist(err) {
|
||||||
|
return Scope{}, nil
|
||||||
|
}
|
||||||
|
return Scope{}, fmt.Errorf("read root settings.json: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var payload map[string]any
|
||||||
|
if err := json.Unmarshal(content, &payload); err != nil {
|
||||||
|
return Scope{}, fmt.Errorf("decode root settings.json: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
installation, _ := payload["installation"].(map[string]any)
|
||||||
|
organization, _ := payload["organization"].(map[string]any)
|
||||||
|
|
||||||
|
return Scope{
|
||||||
|
InstallationID: stringValue(installation["id"]),
|
||||||
|
OrganizationID: stringValue(organization["id"]),
|
||||||
|
OrganizationSlug: stringValue(organization["slug"]),
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func buildNode(rootPath, relPath string, entry fs.DirEntry, rootScope Scope) (Node, error) {
|
||||||
|
scope := deriveScope(relPath, rootScope)
|
||||||
|
parentPath := projectionParentPath(relPath)
|
||||||
|
logicalType, fileRole := classifyPath(relPath, entry.IsDir())
|
||||||
|
|
||||||
|
node := Node{
|
||||||
|
Path: relPath,
|
||||||
|
ParentPath: parentPath,
|
||||||
|
Name: entry.Name(),
|
||||||
|
Depth: strings.Count(relPath, "/") + 1,
|
||||||
|
NodeKind: NodeKindDirectory,
|
||||||
|
LogicalType: logicalType,
|
||||||
|
FileRole: fileRole,
|
||||||
|
InstallationID: scope.InstallationID,
|
||||||
|
OrganizationID: scope.OrganizationID,
|
||||||
|
OrganizationSlug: scope.OrganizationSlug,
|
||||||
|
DepartmentSlug: scope.DepartmentSlug,
|
||||||
|
TeamSlug: scope.TeamSlug,
|
||||||
|
ProjectSlug: scope.ProjectSlug,
|
||||||
|
PersonalSlug: scope.PersonalSlug,
|
||||||
|
}
|
||||||
|
|
||||||
|
if entry.IsDir() {
|
||||||
|
return node, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
absPath := filepath.Join(rootPath, filepath.FromSlash(relPath))
|
||||||
|
content, err := os.ReadFile(absPath)
|
||||||
|
if err != nil {
|
||||||
|
return Node{}, fmt.Errorf("read POSIX file %s: %w", relPath, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
hash := sha256.Sum256(content)
|
||||||
|
node.NodeKind = NodeKindFile
|
||||||
|
node.SizeBytes = int64(len(content))
|
||||||
|
node.Checksum = hex.EncodeToString(hash[:])
|
||||||
|
|
||||||
|
if strings.EqualFold(filepath.Ext(entry.Name()), ".json") {
|
||||||
|
var payload map[string]any
|
||||||
|
if err := json.Unmarshal(content, &payload); err == nil {
|
||||||
|
jsonContent, err := json.Marshal(payload)
|
||||||
|
if err != nil {
|
||||||
|
return Node{}, fmt.Errorf("remarshal POSIX file %s: %w", relPath, err)
|
||||||
|
}
|
||||||
|
node.ContentJSON = jsonContent
|
||||||
|
node.ResourceID = stringValue(payload["id"])
|
||||||
|
node.ResourceName = stringValue(payload["name"])
|
||||||
|
node.ResourceSlug = stringValue(payload["slug"])
|
||||||
|
if node.ResourceID == "" && fileRole == "settings" && logicalType == "tenant" {
|
||||||
|
installation, _ := payload["installation"].(map[string]any)
|
||||||
|
organization, _ := payload["organization"].(map[string]any)
|
||||||
|
node.ResourceID = stringValue(installation["id"])
|
||||||
|
node.ResourceName = stringValue(installation["name"])
|
||||||
|
node.InstallationID = stringValue(installation["id"])
|
||||||
|
node.OrganizationID = stringValue(organization["id"])
|
||||||
|
node.OrganizationSlug = firstNonEmpty(node.OrganizationSlug, stringValue(organization["slug"]))
|
||||||
|
}
|
||||||
|
if node.ResourceID == "" && fileRole == "users" {
|
||||||
|
node.ResourceName = firstNonEmpty(node.ResourceName, parentEntityName(logicalType, scope))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if node.ResourceSlug == "" {
|
||||||
|
node.ResourceSlug = inferredResourceSlug(logicalType, scope)
|
||||||
|
}
|
||||||
|
|
||||||
|
return node, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func deriveScope(relPath string, rootScope Scope) Scope {
|
||||||
|
scope := rootScope
|
||||||
|
parts := strings.Split(relPath, "/")
|
||||||
|
for _, part := range parts {
|
||||||
|
switch {
|
||||||
|
case strings.HasPrefix(part, "department-"):
|
||||||
|
scope.DepartmentSlug = strings.TrimPrefix(part, "department-")
|
||||||
|
case strings.HasPrefix(part, "team-"):
|
||||||
|
scope.TeamSlug = strings.TrimPrefix(part, "team-")
|
||||||
|
case strings.HasPrefix(part, "project-"):
|
||||||
|
scope.ProjectSlug = strings.TrimPrefix(part, "project-")
|
||||||
|
case strings.HasPrefix(part, "personal-"):
|
||||||
|
scope.PersonalSlug = strings.TrimPrefix(part, "personal-")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return scope
|
||||||
|
}
|
||||||
|
|
||||||
|
func classifyPath(relPath string, isDir bool) (logicalType, fileRole string) {
|
||||||
|
parts := strings.Split(relPath, "/")
|
||||||
|
name := parts[len(parts)-1]
|
||||||
|
if !isDir {
|
||||||
|
fileRole = strings.TrimSuffix(name, filepath.Ext(name))
|
||||||
|
}
|
||||||
|
|
||||||
|
hasChildrenAncestor := pathContainsSegment(parts, "children")
|
||||||
|
hasTreeAncestor := pathContainsSegment(parts, "tree")
|
||||||
|
parentName := ""
|
||||||
|
if len(parts) >= 2 {
|
||||||
|
parentName = parts[len(parts)-2]
|
||||||
|
}
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case relPath == "settings.json":
|
||||||
|
return "tenant", "settings"
|
||||||
|
case relPath == "layout.json":
|
||||||
|
return "tenant", "layout"
|
||||||
|
case len(parts) >= 1 && parts[0] == "catalog":
|
||||||
|
if isDir {
|
||||||
|
if len(parts) == 1 {
|
||||||
|
return "catalog", ""
|
||||||
|
}
|
||||||
|
if len(parts) >= 2 && parts[1] == "packs" {
|
||||||
|
if len(parts) == 2 {
|
||||||
|
return "catalog_packs", ""
|
||||||
|
}
|
||||||
|
if len(parts) == 3 {
|
||||||
|
return "catalog_pack", ""
|
||||||
|
}
|
||||||
|
if len(parts) >= 4 && parts[3] == "entries" {
|
||||||
|
return "catalog_pack_entries", ""
|
||||||
|
}
|
||||||
|
return "catalog_entry", ""
|
||||||
|
}
|
||||||
|
if len(parts) >= 2 && parts[1] == "standalone" {
|
||||||
|
if len(parts) == 2 {
|
||||||
|
return "catalog_standalone", ""
|
||||||
|
}
|
||||||
|
return "catalog_entry", ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "catalog", fileRole
|
||||||
|
case len(parts) >= 2 && parts[0] == "departments" && strings.HasPrefix(parts[1], "department-"):
|
||||||
|
if isDir {
|
||||||
|
if len(parts) == 2 {
|
||||||
|
return "department", ""
|
||||||
|
}
|
||||||
|
if len(parts) == 3 && parts[2] == "teams" {
|
||||||
|
return "department_teams", ""
|
||||||
|
}
|
||||||
|
if len(parts) >= 4 && strings.HasPrefix(parts[3], "team-") {
|
||||||
|
return "team", ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(parts) >= 4 && strings.HasPrefix(parts[3], "team-") {
|
||||||
|
return "team", fileRole
|
||||||
|
}
|
||||||
|
return "department", fileRole
|
||||||
|
case len(parts) >= 2 && parts[0] == "projects" && strings.HasPrefix(parts[1], "project-"):
|
||||||
|
if isDir {
|
||||||
|
if strings.HasPrefix(name, "project-") {
|
||||||
|
return "project", ""
|
||||||
|
}
|
||||||
|
if name == "children" {
|
||||||
|
return "project_children", ""
|
||||||
|
}
|
||||||
|
if name == "tree" {
|
||||||
|
return "project_tree", ""
|
||||||
|
}
|
||||||
|
if hasChildrenAncestor && strings.HasPrefix(name, "folder-") {
|
||||||
|
return "hierarchy_folder", ""
|
||||||
|
}
|
||||||
|
if hasTreeAncestor && strings.HasPrefix(name, "folder-") {
|
||||||
|
return "hierarchy_folder", ""
|
||||||
|
}
|
||||||
|
if hasTreeAncestor && strings.HasPrefix(name, "item-") {
|
||||||
|
return "item", ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if hasChildrenAncestor && strings.HasPrefix(parentName, "folder-") {
|
||||||
|
return "hierarchy_folder", fileRole
|
||||||
|
}
|
||||||
|
if hasTreeAncestor {
|
||||||
|
if strings.HasPrefix(parentName, "item-") {
|
||||||
|
return "item", fileRole
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(parentName, "folder-") {
|
||||||
|
return "hierarchy_folder", fileRole
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "project", fileRole
|
||||||
|
case len(parts) >= 1 && parts[0] == "users":
|
||||||
|
if isDir {
|
||||||
|
if len(parts) == 1 {
|
||||||
|
return "users", ""
|
||||||
|
}
|
||||||
|
if len(parts) == 2 && parts[1] == "personals" {
|
||||||
|
return "personals", ""
|
||||||
|
}
|
||||||
|
if len(parts) >= 3 && parts[1] == "personals" && strings.HasPrefix(parts[2], "personal-") {
|
||||||
|
return "personal", ""
|
||||||
|
}
|
||||||
|
if strings.Contains(relPath, "/tree/") || strings.HasSuffix(relPath, "/tree") {
|
||||||
|
if strings.HasPrefix(name, "folder-") {
|
||||||
|
return "folder", ""
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(name, "item-") {
|
||||||
|
return "item", ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(parts) >= 3 && parts[1] == "personals" && strings.HasPrefix(parts[2], "personal-") {
|
||||||
|
if strings.Contains(relPath, "/tree/") {
|
||||||
|
if strings.HasPrefix(parts[len(parts)-2], "item-") {
|
||||||
|
return "item", fileRole
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(parts[len(parts)-2], "folder-") {
|
||||||
|
return "folder", fileRole
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "personal", fileRole
|
||||||
|
}
|
||||||
|
return "users", fileRole
|
||||||
|
default:
|
||||||
|
if isDir {
|
||||||
|
return "directory", ""
|
||||||
|
}
|
||||||
|
return "file", fileRole
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func pathContainsSegment(parts []string, target string) bool {
|
||||||
|
for _, part := range parts {
|
||||||
|
if part == target {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func projectionParentPath(relPath string) *string {
|
||||||
|
if relPath == "" || relPath == rootProjectionPath {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
parent := filepath.ToSlash(filepath.Dir(relPath))
|
||||||
|
if parent == "." || parent == "" {
|
||||||
|
root := rootProjectionPath
|
||||||
|
return &root
|
||||||
|
}
|
||||||
|
return &parent
|
||||||
|
}
|
||||||
|
|
||||||
|
func inferredResourceSlug(logicalType string, scope Scope) string {
|
||||||
|
switch logicalType {
|
||||||
|
case "department":
|
||||||
|
return scope.DepartmentSlug
|
||||||
|
case "team":
|
||||||
|
return scope.TeamSlug
|
||||||
|
case "project":
|
||||||
|
return scope.ProjectSlug
|
||||||
|
case "personal":
|
||||||
|
return scope.PersonalSlug
|
||||||
|
default:
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func parentEntityName(logicalType string, scope Scope) string {
|
||||||
|
switch logicalType {
|
||||||
|
case "department":
|
||||||
|
return scope.DepartmentSlug
|
||||||
|
case "team":
|
||||||
|
return scope.TeamSlug
|
||||||
|
case "project":
|
||||||
|
return scope.ProjectSlug
|
||||||
|
case "personal":
|
||||||
|
return scope.PersonalSlug
|
||||||
|
default:
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func stringValue(value any) string {
|
||||||
|
stringValue, _ := value.(string)
|
||||||
|
return strings.TrimSpace(stringValue)
|
||||||
|
}
|
||||||
|
|
||||||
|
func firstNonEmpty(values ...string) string {
|
||||||
|
for _, value := range values {
|
||||||
|
trimmed := strings.TrimSpace(value)
|
||||||
|
if trimmed != "" {
|
||||||
|
return trimmed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func summarizeNodes(nodes []Node) RebuildSummary {
|
||||||
|
summary := RebuildSummary{TotalNodes: len(nodes)}
|
||||||
|
for _, node := range nodes {
|
||||||
|
switch node.NodeKind {
|
||||||
|
case NodeKindDirectory:
|
||||||
|
summary.DirectoryCount++
|
||||||
|
case NodeKindFile:
|
||||||
|
summary.FileCount++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return summary
|
||||||
|
}
|
||||||
|
|
||||||
|
func errorsIsNotExist(err error) bool {
|
||||||
|
return err != nil && os.IsNotExist(err)
|
||||||
|
}
|
||||||
@@ -0,0 +1,232 @@
|
|||||||
|
package posixproj
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestScanRootBuildsProjectedNodesFromBootstrapShape(t *testing.T) {
|
||||||
|
root := filepath.Join(t.TempDir(), "POSIX")
|
||||||
|
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "catalog", "packs"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "catalog", "standalone"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "departments", "department-primary-department", "teams", "team-primary-team"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "children", "project-web", "children"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "children", "project-web", "tree"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "projects", "project-primary-project", "tree"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "projects", "project-primary-project", "tree", "folder-docs", "children"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "projects", "project-primary-project", "tree", "folder-docs", "item-roadmap"))
|
||||||
|
mustMkdirAll(t, filepath.Join(root, "users", "personals"))
|
||||||
|
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "settings.json"), map[string]any{
|
||||||
|
"installation": map[string]any{
|
||||||
|
"id": "installation-1",
|
||||||
|
"name": "MangoPig",
|
||||||
|
"isBootstrapped": true,
|
||||||
|
},
|
||||||
|
"organization": map[string]any{
|
||||||
|
"id": "org-1",
|
||||||
|
"name": "Primary Organization",
|
||||||
|
"slug": "primary-organization",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "layout.json"), map[string]any{
|
||||||
|
"type": "tenant-layout",
|
||||||
|
"home": map[string]any{"defaultProjectSlug": "primary-project"},
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "departments", "department-primary-department", "settings.json"), map[string]any{
|
||||||
|
"id": "dept-1",
|
||||||
|
"name": "Primary Department",
|
||||||
|
"slug": "primary-department",
|
||||||
|
"type": "department",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "departments", "department-primary-department", "users.json"), map[string]any{
|
||||||
|
"users": []map[string]any{{"id": "admin-1"}},
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "departments", "department-primary-department", "teams", "team-primary-team", "settings.json"), map[string]any{
|
||||||
|
"id": "team-1",
|
||||||
|
"name": "Primary Team",
|
||||||
|
"slug": "primary-team",
|
||||||
|
"type": "team",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "settings.json"), map[string]any{
|
||||||
|
"id": "project-1",
|
||||||
|
"name": "Primary Project",
|
||||||
|
"slug": "primary-project",
|
||||||
|
"type": "project",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "home.json"), map[string]any{
|
||||||
|
"type": "project-home",
|
||||||
|
"project": "primary-project",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "acl.json"), map[string]any{
|
||||||
|
"inherits": true,
|
||||||
|
"rules": []any{},
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "folder.json"), map[string]any{
|
||||||
|
"name": "Design",
|
||||||
|
"slug": "design",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "acl.json"), map[string]any{
|
||||||
|
"inherits": true,
|
||||||
|
"rules": []any{},
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "children", "project-web", "settings.json"), map[string]any{
|
||||||
|
"id": "project-2",
|
||||||
|
"name": "Web Project",
|
||||||
|
"slug": "web",
|
||||||
|
"type": "project",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "children", "project-web", "home.json"), map[string]any{
|
||||||
|
"type": "project-home",
|
||||||
|
"project": "web",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "children", "folder-design", "children", "project-web", "acl.json"), map[string]any{
|
||||||
|
"inherits": true,
|
||||||
|
"rules": []any{},
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "tree", "folder-docs", "folder.json"), map[string]any{
|
||||||
|
"name": "Docs",
|
||||||
|
"slug": "docs",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "tree", "folder-docs", "item-roadmap", "item.json"), map[string]any{
|
||||||
|
"id": "item-1",
|
||||||
|
"name": "Roadmap",
|
||||||
|
"slug": "roadmap",
|
||||||
|
"type": "board",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "tree", "folder-docs", "item-roadmap", "schema.json"), map[string]any{
|
||||||
|
"type": "object",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "projects", "project-primary-project", "tree", "folder-docs", "item-roadmap", "data.json"), map[string]any{
|
||||||
|
"title": "Roadmap",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "users", "settings.json"), map[string]any{
|
||||||
|
"primaryAdminId": "admin-1",
|
||||||
|
})
|
||||||
|
mustWriteJSON(t, filepath.Join(root, "users", "data.json"), map[string]any{
|
||||||
|
"users": []map[string]any{{"id": "admin-1", "email": "ronald@example.com"}},
|
||||||
|
})
|
||||||
|
|
||||||
|
nodes, err := ScanRoot(root)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("ScanRoot() error = %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
index := make(map[string]Node, len(nodes))
|
||||||
|
for _, node := range nodes {
|
||||||
|
index[node.Path] = node
|
||||||
|
}
|
||||||
|
|
||||||
|
rootNode, ok := index[rootProjectionPath]
|
||||||
|
if !ok {
|
||||||
|
t.Fatalf("expected synthetic root node")
|
||||||
|
}
|
||||||
|
if rootNode.LogicalType != "tenant_root" {
|
||||||
|
t.Fatalf("expected root logical type tenant_root, got %q", rootNode.LogicalType)
|
||||||
|
}
|
||||||
|
if rootNode.OrganizationSlug != "primary-organization" {
|
||||||
|
t.Fatalf("expected root organization slug primary-organization, got %q", rootNode.OrganizationSlug)
|
||||||
|
}
|
||||||
|
|
||||||
|
tenantSettings := index["settings.json"]
|
||||||
|
if tenantSettings.LogicalType != "tenant" || tenantSettings.FileRole != "settings" {
|
||||||
|
t.Fatalf("unexpected tenant settings classification: %#v", tenantSettings)
|
||||||
|
}
|
||||||
|
if tenantSettings.InstallationID != "installation-1" {
|
||||||
|
t.Fatalf("expected installation id installation-1, got %q", tenantSettings.InstallationID)
|
||||||
|
}
|
||||||
|
|
||||||
|
deptSettings := index["departments/department-primary-department/settings.json"]
|
||||||
|
if deptSettings.DepartmentSlug != "primary-department" {
|
||||||
|
t.Fatalf("expected department slug primary-department, got %q", deptSettings.DepartmentSlug)
|
||||||
|
}
|
||||||
|
if deptSettings.ResourceID != "dept-1" {
|
||||||
|
t.Fatalf("expected department resource id dept-1, got %q", deptSettings.ResourceID)
|
||||||
|
}
|
||||||
|
|
||||||
|
teamSettings := index["departments/department-primary-department/teams/team-primary-team/settings.json"]
|
||||||
|
if teamSettings.TeamSlug != "primary-team" {
|
||||||
|
t.Fatalf("expected team slug primary-team, got %q", teamSettings.TeamSlug)
|
||||||
|
}
|
||||||
|
|
||||||
|
projectSettings := index["projects/project-primary-project/settings.json"]
|
||||||
|
if projectSettings.ProjectSlug != "primary-project" {
|
||||||
|
t.Fatalf("expected project slug primary-project, got %q", projectSettings.ProjectSlug)
|
||||||
|
}
|
||||||
|
if projectSettings.ResourceName != "Primary Project" {
|
||||||
|
t.Fatalf("expected project resource name Primary Project, got %q", projectSettings.ResourceName)
|
||||||
|
}
|
||||||
|
|
||||||
|
projectTree := index["projects/project-primary-project/tree"]
|
||||||
|
if projectTree.LogicalType != "project_tree" || projectTree.NodeKind != NodeKindDirectory {
|
||||||
|
t.Fatalf("unexpected project tree node: %#v", projectTree)
|
||||||
|
}
|
||||||
|
|
||||||
|
projectChildren := index["projects/project-primary-project/children"]
|
||||||
|
if projectChildren.LogicalType != "project_children" || projectChildren.NodeKind != NodeKindDirectory {
|
||||||
|
t.Fatalf("unexpected project children node: %#v", projectChildren)
|
||||||
|
}
|
||||||
|
|
||||||
|
hierarchyFolder := index["projects/project-primary-project/children/folder-design"]
|
||||||
|
if hierarchyFolder.LogicalType != "hierarchy_folder" || hierarchyFolder.ProjectSlug != "primary-project" {
|
||||||
|
t.Fatalf("unexpected hierarchy folder node: %#v", hierarchyFolder)
|
||||||
|
}
|
||||||
|
|
||||||
|
hierarchyFolderACL := index["projects/project-primary-project/children/folder-design/acl.json"]
|
||||||
|
if hierarchyFolderACL.LogicalType != "hierarchy_folder" || hierarchyFolderACL.FileRole != "acl" {
|
||||||
|
t.Fatalf("unexpected hierarchy folder acl classification: %#v", hierarchyFolderACL)
|
||||||
|
}
|
||||||
|
|
||||||
|
childProjectSettings := index["projects/project-primary-project/children/folder-design/children/project-web/settings.json"]
|
||||||
|
if childProjectSettings.LogicalType != "project" || childProjectSettings.ProjectSlug != "web" {
|
||||||
|
t.Fatalf("unexpected child project classification: %#v", childProjectSettings)
|
||||||
|
}
|
||||||
|
|
||||||
|
treeFolder := index["projects/project-primary-project/tree/folder-docs"]
|
||||||
|
if treeFolder.LogicalType != "hierarchy_folder" || treeFolder.ProjectSlug != "primary-project" {
|
||||||
|
t.Fatalf("unexpected tree folder node: %#v", treeFolder)
|
||||||
|
}
|
||||||
|
|
||||||
|
treeFolderACL := index["projects/project-primary-project/tree/folder-docs/folder.json"]
|
||||||
|
if treeFolderACL.LogicalType != "hierarchy_folder" || treeFolderACL.FileRole != "folder" {
|
||||||
|
t.Fatalf("unexpected tree folder file classification: %#v", treeFolderACL)
|
||||||
|
}
|
||||||
|
|
||||||
|
treeItem := index["projects/project-primary-project/tree/folder-docs/item-roadmap/item.json"]
|
||||||
|
if treeItem.LogicalType != "item" || treeItem.FileRole != "item" {
|
||||||
|
t.Fatalf("unexpected tree item classification: %#v", treeItem)
|
||||||
|
}
|
||||||
|
if treeItem.ResourceSlug != "roadmap" {
|
||||||
|
t.Fatalf("expected tree item resource slug roadmap, got %#v", treeItem.ResourceSlug)
|
||||||
|
}
|
||||||
|
|
||||||
|
usersData := index["users/data.json"]
|
||||||
|
if usersData.LogicalType != "users" || usersData.FileRole != "data" {
|
||||||
|
t.Fatalf("unexpected users data classification: %#v", usersData)
|
||||||
|
}
|
||||||
|
if usersData.Checksum == "" || usersData.SizeBytes == 0 {
|
||||||
|
t.Fatalf("expected users/data.json checksum and size to be populated: %#v", usersData)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func mustMkdirAll(t *testing.T, path string) {
|
||||||
|
t.Helper()
|
||||||
|
if err := os.MkdirAll(path, 0o755); err != nil {
|
||||||
|
t.Fatalf("MkdirAll(%q) error = %v", path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func mustWriteJSON(t *testing.T, path string, payload any) {
|
||||||
|
t.Helper()
|
||||||
|
bytes, err := json.MarshalIndent(payload, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("MarshalIndent(%q) error = %v", path, err)
|
||||||
|
}
|
||||||
|
bytes = append(bytes, '\n')
|
||||||
|
if err := os.WriteFile(path, bytes, 0o644); err != nil {
|
||||||
|
t.Fatalf("WriteFile(%q) error = %v", path, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
// Path: Backend/internal/process/process.go
|
||||||
|
|
||||||
|
package process
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"log/slog"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"os/signal"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func RunHTTPServer(serviceName, address string, handler http.Handler, logger *slog.Logger, shutdownTimeout time.Duration) error {
|
||||||
|
server := &http.Server{
|
||||||
|
Addr: address,
|
||||||
|
Handler: handler,
|
||||||
|
ReadHeaderTimeout: 5 * time.Second,
|
||||||
|
}
|
||||||
|
|
||||||
|
serverErr := make(chan error, 1)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
logger.Info("http server starting", "service", serviceName, "address", address)
|
||||||
|
serverErr <- server.ListenAndServe()
|
||||||
|
}()
|
||||||
|
|
||||||
|
signalCtx, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
|
||||||
|
defer stop()
|
||||||
|
|
||||||
|
select {
|
||||||
|
case err := <-serverErr:
|
||||||
|
if err != nil && !errors.Is(err, http.ErrServerClosed) {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
case <-signalCtx.Done():
|
||||||
|
logger.Info("shutdown requested", "service", serviceName)
|
||||||
|
}
|
||||||
|
|
||||||
|
shutdownCtx, cancel := context.WithTimeout(context.Background(), shutdownTimeout)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
if err := server.Shutdown(shutdownCtx); err != nil {
|
||||||
|
return fmt.Errorf("shutdown %s server: %w", serviceName, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Info("http server stopped", "service", serviceName)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func WaitForShutdown(serviceName string, logger *slog.Logger) error {
|
||||||
|
signalCtx, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
|
||||||
|
defer stop()
|
||||||
|
|
||||||
|
logger.Info("process running", "service", serviceName)
|
||||||
|
<-signalCtx.Done()
|
||||||
|
logger.Info("shutdown requested", "service", serviceName)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
package worker
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"log/slog"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"moku-backend/internal/jobs"
|
||||||
|
)
|
||||||
|
|
||||||
|
type JobStore interface {
|
||||||
|
ClaimNext(ctx context.Context) (*jobs.Job, error)
|
||||||
|
MarkSucceeded(ctx context.Context, jobID string) error
|
||||||
|
MarkFailed(ctx context.Context, jobID, failure string) error
|
||||||
|
}
|
||||||
|
|
||||||
|
type Handler func(ctx context.Context, job jobs.Job) error
|
||||||
|
|
||||||
|
type Runner struct {
|
||||||
|
store JobStore
|
||||||
|
logger *slog.Logger
|
||||||
|
pollInterval time.Duration
|
||||||
|
handlers map[string]Handler
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewRunner(store JobStore, logger *slog.Logger, pollInterval time.Duration) *Runner {
|
||||||
|
interval := pollInterval
|
||||||
|
if interval <= 0 {
|
||||||
|
interval = time.Second
|
||||||
|
}
|
||||||
|
|
||||||
|
return &Runner{
|
||||||
|
store: store,
|
||||||
|
logger: logger,
|
||||||
|
pollInterval: interval,
|
||||||
|
handlers: make(map[string]Handler),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (runner *Runner) Register(kind string, handler Handler) {
|
||||||
|
runner.handlers[strings.TrimSpace(kind)] = handler
|
||||||
|
}
|
||||||
|
|
||||||
|
func (runner *Runner) Run(ctx context.Context) error {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return nil
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
|
||||||
|
job, err := runner.store.ClaimNext(ctx)
|
||||||
|
if err != nil {
|
||||||
|
if ctx.Err() != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
runner.logger.Error("worker claim failed", "error", err)
|
||||||
|
|
||||||
|
if err := waitForNextPoll(ctx, runner.pollInterval); err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if job == nil {
|
||||||
|
if err := waitForNextPoll(ctx, runner.pollInterval); err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
handler, ok := runner.handlers[job.Kind]
|
||||||
|
if !ok {
|
||||||
|
failure := fmt.Sprintf("no handler registered for job kind %q", job.Kind)
|
||||||
|
if err := runner.store.MarkFailed(ctx, job.ID, failure); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
runner.logger.Error("worker job failed", "jobID", job.ID, "kind", job.Kind, "error", failure)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := handler(ctx, *job); err != nil {
|
||||||
|
if ctx.Err() != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
failure := strings.TrimSpace(err.Error())
|
||||||
|
if failure == "" {
|
||||||
|
failure = "job handler returned an empty error"
|
||||||
|
}
|
||||||
|
|
||||||
|
if markErr := runner.store.MarkFailed(ctx, job.ID, failure); markErr != nil {
|
||||||
|
return markErr
|
||||||
|
}
|
||||||
|
|
||||||
|
runner.logger.Error("worker job failed", "jobID", job.ID, "kind", job.Kind, "error", failure)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := runner.store.MarkSucceeded(ctx, job.ID); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
runner.logger.Info("worker job succeeded", "jobID", job.ID, "kind", job.Kind)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func waitForNextPoll(ctx context.Context, interval time.Duration) error {
|
||||||
|
timer := time.NewTimer(interval)
|
||||||
|
defer timer.Stop()
|
||||||
|
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
return ctx.Err()
|
||||||
|
case <-timer.C:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,209 @@
|
|||||||
|
package worker
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
"log/slog"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"moku-backend/internal/jobs"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestRunnerProcessesRegisteredJob(t *testing.T) {
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
store := &fakeJobStore{
|
||||||
|
job: &jobs.Job{
|
||||||
|
ID: "job-1",
|
||||||
|
Kind: jobs.KindBootstrapStructureMaterialize,
|
||||||
|
Payload: []byte(`{"installationId":"installation-1"}`),
|
||||||
|
},
|
||||||
|
cancel: cancel,
|
||||||
|
}
|
||||||
|
runner := NewRunner(store, slog.New(slog.NewTextHandler(io.Discard, nil)), 0)
|
||||||
|
|
||||||
|
handlerCalled := false
|
||||||
|
runner.Register(jobs.KindBootstrapStructureMaterialize, func(ctx context.Context, job jobs.Job) error {
|
||||||
|
handlerCalled = true
|
||||||
|
if job.ID != "job-1" {
|
||||||
|
t.Fatalf("expected job id job-1, got %s", job.ID)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := runner.Run(ctx); err != nil {
|
||||||
|
t.Fatalf("runner returned error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !handlerCalled {
|
||||||
|
t.Fatal("expected handler to be called")
|
||||||
|
}
|
||||||
|
if len(store.succeeded) != 1 || store.succeeded[0] != "job-1" {
|
||||||
|
t.Fatalf("expected job to be marked succeeded once, got %#v", store.succeeded)
|
||||||
|
}
|
||||||
|
if len(store.failed) != 0 {
|
||||||
|
t.Fatalf("expected no failed jobs, got %#v", store.failed)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRunnerMarksFailedWhenHandlerErrors(t *testing.T) {
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
store := &fakeJobStore{
|
||||||
|
job: &jobs.Job{
|
||||||
|
ID: "job-2",
|
||||||
|
Kind: jobs.KindBootstrapStructureMaterialize,
|
||||||
|
},
|
||||||
|
cancel: cancel,
|
||||||
|
}
|
||||||
|
runner := NewRunner(store, slog.New(slog.NewTextHandler(io.Discard, nil)), 0)
|
||||||
|
runner.Register(jobs.KindBootstrapStructureMaterialize, func(ctx context.Context, job jobs.Job) error {
|
||||||
|
return errors.New("boom")
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := runner.Run(ctx); err != nil {
|
||||||
|
t.Fatalf("runner returned error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(store.succeeded) != 0 {
|
||||||
|
t.Fatalf("expected no succeeded jobs, got %#v", store.succeeded)
|
||||||
|
}
|
||||||
|
if len(store.failed) != 1 {
|
||||||
|
t.Fatalf("expected one failed job, got %#v", store.failed)
|
||||||
|
}
|
||||||
|
if store.failed[0].jobID != "job-2" {
|
||||||
|
t.Fatalf("expected failed job id job-2, got %#v", store.failed[0])
|
||||||
|
}
|
||||||
|
if !strings.Contains(store.failed[0].failure, "boom") {
|
||||||
|
t.Fatalf("expected failure to mention handler error, got %#v", store.failed[0])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRunnerMarksFailedWhenHandlerMissing(t *testing.T) {
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
store := &fakeJobStore{
|
||||||
|
job: &jobs.Job{
|
||||||
|
ID: "job-3",
|
||||||
|
Kind: "unknown.kind",
|
||||||
|
},
|
||||||
|
cancel: cancel,
|
||||||
|
}
|
||||||
|
runner := NewRunner(store, slog.New(slog.NewTextHandler(io.Discard, nil)), 0)
|
||||||
|
|
||||||
|
if err := runner.Run(ctx); err != nil {
|
||||||
|
t.Fatalf("runner returned error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(store.failed) != 1 {
|
||||||
|
t.Fatalf("expected one failed job, got %#v", store.failed)
|
||||||
|
}
|
||||||
|
if !strings.Contains(store.failed[0].failure, "no handler registered") {
|
||||||
|
t.Fatalf("expected missing handler failure, got %#v", store.failed[0])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRunnerRetriesClaimErrors(t *testing.T) {
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
store := &fakeJobStore{
|
||||||
|
claimErrors: []error{errors.New("relation \"background_jobs\" does not exist")},
|
||||||
|
job: &jobs.Job{
|
||||||
|
ID: "job-4",
|
||||||
|
Kind: jobs.KindBootstrapStructureMaterialize,
|
||||||
|
},
|
||||||
|
cancel: cancel,
|
||||||
|
}
|
||||||
|
runner := NewRunner(store, slog.New(slog.NewTextHandler(io.Discard, nil)), time.Millisecond)
|
||||||
|
|
||||||
|
handlerCalled := false
|
||||||
|
runner.Register(jobs.KindBootstrapStructureMaterialize, func(ctx context.Context, job jobs.Job) error {
|
||||||
|
handlerCalled = true
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := runner.Run(ctx); err != nil {
|
||||||
|
t.Fatalf("runner returned error: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !handlerCalled {
|
||||||
|
t.Fatal("expected handler to be called after claim retry")
|
||||||
|
}
|
||||||
|
if store.claimAttempts < 2 {
|
||||||
|
t.Fatalf("expected at least two claim attempts, got %d", store.claimAttempts)
|
||||||
|
}
|
||||||
|
if len(store.succeeded) != 1 || store.succeeded[0] != "job-4" {
|
||||||
|
t.Fatalf("expected job to be marked succeeded once, got %#v", store.succeeded)
|
||||||
|
}
|
||||||
|
if len(store.failed) != 0 {
|
||||||
|
t.Fatalf("expected no failed jobs, got %#v", store.failed)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type fakeJobStore struct {
|
||||||
|
mu sync.Mutex
|
||||||
|
job *jobs.Job
|
||||||
|
claimed bool
|
||||||
|
claimErrors []error
|
||||||
|
claimAttempts int
|
||||||
|
succeeded []string
|
||||||
|
failed []fakeFailure
|
||||||
|
cancel context.CancelFunc
|
||||||
|
}
|
||||||
|
|
||||||
|
type fakeFailure struct {
|
||||||
|
jobID string
|
||||||
|
failure string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *fakeJobStore) ClaimNext(ctx context.Context) (*jobs.Job, error) {
|
||||||
|
store.mu.Lock()
|
||||||
|
defer store.mu.Unlock()
|
||||||
|
store.claimAttempts++
|
||||||
|
|
||||||
|
if len(store.claimErrors) > 0 {
|
||||||
|
err := store.claimErrors[0]
|
||||||
|
store.claimErrors = store.claimErrors[1:]
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if store.claimed || store.job == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
store.claimed = true
|
||||||
|
job := *store.job
|
||||||
|
return &job, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *fakeJobStore) MarkSucceeded(ctx context.Context, jobID string) error {
|
||||||
|
store.mu.Lock()
|
||||||
|
store.succeeded = append(store.succeeded, jobID)
|
||||||
|
store.mu.Unlock()
|
||||||
|
|
||||||
|
if store.cancel != nil {
|
||||||
|
store.cancel()
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (store *fakeJobStore) MarkFailed(ctx context.Context, jobID, failure string) error {
|
||||||
|
store.mu.Lock()
|
||||||
|
store.failed = append(store.failed, fakeFailure{jobID: jobID, failure: failure})
|
||||||
|
store.mu.Unlock()
|
||||||
|
|
||||||
|
if store.cancel != nil {
|
||||||
|
store.cancel()
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
version: "2"
|
||||||
|
sql:
|
||||||
|
- engine: "postgresql"
|
||||||
|
schema: "db/migrations"
|
||||||
|
queries: "db/queries"
|
||||||
|
gen:
|
||||||
|
go:
|
||||||
|
package: "sqlc"
|
||||||
|
out: "internal/sqlc"
|
||||||
|
sql_package: "pgx/v5"
|
||||||
|
emit_json_tags: true
|
||||||
|
emit_empty_slices: true
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
project_root := justfile_directory()
|
||||||
|
backend_dir := project_root + "/Backend"
|
||||||
|
|
||||||
|
# Apply embedded database migrations.
|
||||||
|
migrate-up:
|
||||||
|
cd '{{backend_dir}}' && go run ./cmd/migrate up
|
||||||
|
|
||||||
|
# Roll back the most recent embedded database migration.
|
||||||
|
migrate-down:
|
||||||
|
cd '{{backend_dir}}' && go run ./cmd/migrate down
|
||||||
|
|
||||||
|
# Reset all embedded database migrations.
|
||||||
|
migrate-reset:
|
||||||
|
cd '{{backend_dir}}' && go run ./cmd/migrate reset
|
||||||
|
|
||||||
|
# Reset embedded database migrations and apply them again from scratch.
|
||||||
|
migrate-rebuild:
|
||||||
|
cd '{{backend_dir}}' && go run ./cmd/migrate reset && go run ./cmd/migrate up
|
||||||
|
|
||||||
|
# Show the embedded database migration status.
|
||||||
|
migrate-status:
|
||||||
|
cd '{{backend_dir}}' && go run ./cmd/migrate status
|
||||||
|
|
||||||
|
# Rebuild the POSIX-to-DB projection from the current POSIX root.
|
||||||
|
posix-rebuild:
|
||||||
|
cd '{{backend_dir}}' && go run ./cmd/posix rebuild
|
||||||
|
|
||||||
|
# Format backend Go source files.
|
||||||
|
fmt:
|
||||||
|
cd '{{backend_dir}}' && gofmt -w ./cmd ./db ./internal
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
project_root := justfile_directory()
|
||||||
|
local_compose := project_root + "/Docker/docker-compose.local.dev.yaml"
|
||||||
|
frontend_dir := project_root + "/Frontend"
|
||||||
|
node_modules_volume := "moku_work_frontend_node_modules"
|
||||||
|
|
||||||
|
# Recreate the frontend node_modules Docker volume.
|
||||||
|
node_modules:
|
||||||
|
docker compose -f '{{local_compose}}' rm -sf frontend >/dev/null 2>&1 || true
|
||||||
|
docker volume rm -f '{{node_modules_volume}}' >/dev/null 2>&1 || true
|
||||||
|
docker compose -f '{{local_compose}}' up -d --remove-orphans --force-recreate frontend
|
||||||
|
|
||||||
|
# Run the frontend TypeScript check.
|
||||||
|
tsc:
|
||||||
|
cd '{{frontend_dir}}' && pnpm typecheck
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
stack_runner := justfile_directory() + "/Commands/Local/Dev/scripts/dev-stack.sh"
|
||||||
|
|
||||||
|
mod frontend
|
||||||
|
mod backend
|
||||||
|
|
||||||
|
# Build the combined local development stack assets.
|
||||||
|
build:
|
||||||
|
bash '{{stack_runner}}' build
|
||||||
|
|
||||||
|
# Start the full local development stack in the background.
|
||||||
|
up:
|
||||||
|
bash '{{stack_runner}}' up
|
||||||
|
|
||||||
|
# Build first, then start the full local development stack in the background.
|
||||||
|
start:
|
||||||
|
bash '{{stack_runner}}' start
|
||||||
|
|
||||||
|
# Alias for the main full local development flow.
|
||||||
|
dev: up
|
||||||
|
|
||||||
|
# Stop and remove the local development stack.
|
||||||
|
down:
|
||||||
|
bash '{{stack_runner}}' down
|
||||||
|
|
||||||
|
# Rebuild the full local development stack.
|
||||||
|
rebuild:
|
||||||
|
bash '{{stack_runner}}' rebuild
|
||||||
|
|
||||||
|
# Follow logs for the full local development stack.
|
||||||
|
logs:
|
||||||
|
bash '{{stack_runner}}' logs
|
||||||
|
|
||||||
|
# Restart the full local development stack.
|
||||||
|
restart:
|
||||||
|
bash '{{stack_runner}}' restart
|
||||||
|
|
||||||
|
# Stop the local development stack and remove local images, volumes, and backend dev state.
|
||||||
|
clean:
|
||||||
|
bash '{{stack_runner}}' clean
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Path: Commands/Local/Dev/scripts/backend-stack.sh
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
action=${1:-up}
|
||||||
|
|
||||||
|
script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)
|
||||||
|
project_root=$(cd -- "$script_dir/../../../.." && pwd)
|
||||||
|
backend_dir="$project_root/Backend"
|
||||||
|
backend_bake="$backend_dir/docker-bake.hcl"
|
||||||
|
env_dir="$project_root/Env"
|
||||||
|
compose_file="$project_root/Docker/docker-compose.local.dev.yaml"
|
||||||
|
runtime_dir="$backend_dir/tmp/dev"
|
||||||
|
backend_image="moku/work-backend:dev"
|
||||||
|
backend_go_pkg_volume="moku_work_backend_go_pkg"
|
||||||
|
backend_go_build_volume="moku_work_backend_go_build"
|
||||||
|
|
||||||
|
services=(web api worker)
|
||||||
|
|
||||||
|
source "$script_dir/docker.sh"
|
||||||
|
source "$script_dir/env.sh"
|
||||||
|
|
||||||
|
build_backend() {
|
||||||
|
cd "$backend_dir"
|
||||||
|
docker buildx bake -f "$backend_bake" dev
|
||||||
|
}
|
||||||
|
|
||||||
|
up_backend() {
|
||||||
|
docker compose -f "$compose_file" up -d --remove-orphans --force-recreate "${services[@]}"
|
||||||
|
}
|
||||||
|
|
||||||
|
down_backend() {
|
||||||
|
docker compose -f "$compose_file" stop "${services[@]}" >/dev/null 2>&1 || true
|
||||||
|
docker compose -f "$compose_file" rm -f "${services[@]}" >/dev/null 2>&1 || true
|
||||||
|
}
|
||||||
|
|
||||||
|
restart_backend() {
|
||||||
|
docker compose -f "$compose_file" restart "${services[@]}"
|
||||||
|
}
|
||||||
|
|
||||||
|
follow_logs() {
|
||||||
|
docker compose -f "$compose_file" logs -f "${services[@]}"
|
||||||
|
}
|
||||||
|
|
||||||
|
clean_runtime() {
|
||||||
|
rm -rf "$runtime_dir"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$action" in
|
||||||
|
check)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
;;
|
||||||
|
build)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
build_backend
|
||||||
|
;;
|
||||||
|
up)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
up_backend
|
||||||
|
;;
|
||||||
|
down)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
down_backend
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
restart_backend
|
||||||
|
;;
|
||||||
|
logs)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
follow_logs
|
||||||
|
;;
|
||||||
|
clean)
|
||||||
|
ensure_docker 'docker is required for the local backend dev runtime. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
down_backend
|
||||||
|
remove_docker_image_if_present "$backend_image"
|
||||||
|
remove_docker_volume_if_present "$backend_go_pkg_volume"
|
||||||
|
remove_docker_volume_if_present "$backend_go_build_volume"
|
||||||
|
clean_runtime
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf 'Unsupported backend stack action: %s\n' "$action" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,102 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Path: Commands/Local/Dev/scripts/dev-stack.sh
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
action=${1:-up}
|
||||||
|
|
||||||
|
script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)
|
||||||
|
project_root=$(cd -- "$script_dir/../../../.." && pwd)
|
||||||
|
frontend_dir="$project_root/Frontend"
|
||||||
|
frontend_bake="$frontend_dir/docker-bake.hcl"
|
||||||
|
backend_dir="$project_root/Backend"
|
||||||
|
backend_bake="$backend_dir/docker-bake.hcl"
|
||||||
|
env_dir="$project_root/Env"
|
||||||
|
compose_file="$project_root/Docker/docker-compose.local.dev.yaml"
|
||||||
|
frontend_image="moku/work-frontend:dev"
|
||||||
|
backend_image="moku/work-backend:dev"
|
||||||
|
frontend_volume="moku_work_frontend_node_modules"
|
||||||
|
backend_go_pkg_volume="moku_work_backend_go_pkg"
|
||||||
|
backend_go_build_volume="moku_work_backend_go_build"
|
||||||
|
backend_runtime_dir="$backend_dir/tmp/dev"
|
||||||
|
|
||||||
|
source "$script_dir/docker.sh"
|
||||||
|
source "$script_dir/env.sh"
|
||||||
|
|
||||||
|
build_frontend() {
|
||||||
|
cd "$frontend_dir"
|
||||||
|
docker buildx bake -f "$frontend_bake" dev
|
||||||
|
}
|
||||||
|
|
||||||
|
build_backend() {
|
||||||
|
cd "$backend_dir"
|
||||||
|
docker buildx bake -f "$backend_bake" dev
|
||||||
|
}
|
||||||
|
|
||||||
|
build_images() {
|
||||||
|
build_frontend
|
||||||
|
build_backend
|
||||||
|
}
|
||||||
|
|
||||||
|
up_stack() {
|
||||||
|
docker compose -f "$compose_file" up -d --remove-orphans --force-recreate
|
||||||
|
}
|
||||||
|
|
||||||
|
down_stack() {
|
||||||
|
docker compose -f "$compose_file" down --remove-orphans --volumes
|
||||||
|
}
|
||||||
|
|
||||||
|
follow_logs() {
|
||||||
|
docker compose -f "$compose_file" logs -f
|
||||||
|
}
|
||||||
|
|
||||||
|
clean_stack() {
|
||||||
|
docker compose -f "$compose_file" down --remove-orphans --volumes >/dev/null 2>&1 || true
|
||||||
|
remove_docker_image_if_present "$frontend_image"
|
||||||
|
remove_docker_image_if_present "$backend_image"
|
||||||
|
remove_docker_volume_if_present "$frontend_volume"
|
||||||
|
remove_docker_volume_if_present "$backend_go_pkg_volume"
|
||||||
|
remove_docker_volume_if_present "$backend_go_build_volume"
|
||||||
|
rm -rf "$backend_runtime_dir"
|
||||||
|
}
|
||||||
|
|
||||||
|
start_stack() {
|
||||||
|
build_images
|
||||||
|
up_stack
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$action" in
|
||||||
|
build)
|
||||||
|
ensure_docker 'docker is required for the local development stack. Install Docker first.'
|
||||||
|
build_images
|
||||||
|
;;
|
||||||
|
up|start|rebuild)
|
||||||
|
ensure_docker 'docker is required for the local development stack. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
start_stack
|
||||||
|
;;
|
||||||
|
down)
|
||||||
|
ensure_docker 'docker is required for the local development stack. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
down_stack
|
||||||
|
;;
|
||||||
|
restart)
|
||||||
|
ensure_docker 'docker is required for the local development stack. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
docker compose -f "$compose_file" restart
|
||||||
|
;;
|
||||||
|
logs)
|
||||||
|
ensure_docker 'docker is required for the local development stack. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
follow_logs
|
||||||
|
;;
|
||||||
|
clean)
|
||||||
|
ensure_docker 'docker is required for the local development stack. Install Docker first.'
|
||||||
|
ensure_local_env_file "$env_dir"
|
||||||
|
clean_stack
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf 'Unsupported dev stack action: %s\n' "$action" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
ensure_docker() {
|
||||||
|
local error_message=${1:-docker is required. Install Docker first.}
|
||||||
|
|
||||||
|
if ! command -v docker >/dev/null 2>&1; then
|
||||||
|
printf '%s\n' "$error_message" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
remove_docker_image_if_present() {
|
||||||
|
docker image rm -f "$1" >/dev/null 2>&1 || true
|
||||||
|
}
|
||||||
|
|
||||||
|
remove_docker_volume_if_present() {
|
||||||
|
docker volume rm -f "$1" >/dev/null 2>&1 || true
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
ensure_local_env_file() {
|
||||||
|
local env_dir=$1
|
||||||
|
local example_env_file="$env_dir/.env.example"
|
||||||
|
local local_env_file="$env_dir/.env.local"
|
||||||
|
|
||||||
|
if [[ -f "$local_env_file" ]]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f "$example_env_file" ]]; then
|
||||||
|
printf 'Missing env template: %s\n' "$example_env_file" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp "$example_env_file" "$local_env_file"
|
||||||
|
printf 'Created %s from %s\n' "$local_env_file" "$example_env_file"
|
||||||
|
}
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
project_root := justfile_directory()
|
|
||||||
frontend_dir := project_root + "/Frontend"
|
|
||||||
frontend_bake := project_root + "/Frontend/docker-bake.hcl"
|
|
||||||
local_compose := project_root + "/Docker/docker-compose.local.dev.yaml"
|
|
||||||
|
|
||||||
# Build the Frontend development image.
|
|
||||||
build:
|
|
||||||
cd '{{frontend_dir}}' && docker buildx bake -f '{{frontend_bake}}' dev
|
|
||||||
|
|
||||||
# Start the local development stack in the background using the current image.
|
|
||||||
up:
|
|
||||||
docker compose -f '{{local_compose}}' up -d --remove-orphans --force-recreate
|
|
||||||
|
|
||||||
# Build first, then start the local development stack in the background.
|
|
||||||
start: build
|
|
||||||
docker compose -f '{{local_compose}}' up -d --remove-orphans --force-recreate
|
|
||||||
|
|
||||||
# Alias for the main local development flow.
|
|
||||||
dev: start
|
|
||||||
|
|
||||||
# Stop and remove the local development stack.
|
|
||||||
down:
|
|
||||||
docker compose -f '{{local_compose}}' down --remove-orphans --volumes
|
|
||||||
|
|
||||||
# Rebuild the Frontend development image and recreate the stack.
|
|
||||||
rebuild:
|
|
||||||
cd '{{frontend_dir}}' && docker buildx bake -f '{{frontend_bake}}' dev
|
|
||||||
docker compose -f '{{local_compose}}' up -d --remove-orphans --force-recreate
|
|
||||||
|
|
||||||
# Follow logs for the local development stack.
|
|
||||||
logs:
|
|
||||||
docker compose -f '{{local_compose}}' logs -f
|
|
||||||
|
|
||||||
# Restart the local development stack.
|
|
||||||
restart:
|
|
||||||
docker compose -f '{{local_compose}}' restart
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
mod dev
|
mod dev "Dev"
|
||||||
mod prod
|
mod prod
|
||||||
|
|||||||
@@ -1,11 +1,44 @@
|
|||||||
project_root := justfile_directory()
|
project_root := justfile_directory()
|
||||||
frontend_dir := project_root + "/Frontend"
|
proxy_bake := project_root + "/Proxy/docker-bake.hcl"
|
||||||
frontend_bake := project_root + "/Frontend/docker-bake.hcl"
|
backend_bake := project_root + "/Backend/docker-bake.hcl"
|
||||||
|
local_compose := project_root + "/Docker/docker-compose.local.prod.yaml"
|
||||||
|
proxy_image := "moku/work-proxy:local-prod"
|
||||||
|
backend_api_image := "moku/work-backend:local-prod-api"
|
||||||
|
backend_worker_image := "moku/work-backend:local-prod-worker"
|
||||||
|
|
||||||
# Build the Frontend production image locally.
|
# Build the local production proxy image locally.
|
||||||
build:
|
build:
|
||||||
cd '{{frontend_dir}}' && docker buildx bake -f '{{frontend_bake}}' prod
|
cd '{{project_root}}' && docker buildx bake -f '{{proxy_bake}}' prod
|
||||||
|
cd '{{project_root}}' && docker buildx bake -f '{{backend_bake}}' prod-api prod-worker
|
||||||
|
|
||||||
# Rebuild the Frontend production image locally.
|
# Start the local production stack in the background using the current image.
|
||||||
|
up:
|
||||||
|
docker compose -f '{{local_compose}}' up -d --remove-orphans --force-recreate
|
||||||
|
|
||||||
|
# Build first, then start the local production stack in the background.
|
||||||
|
start: build up
|
||||||
|
|
||||||
|
# Rebuild the local production proxy image locally.
|
||||||
rebuild:
|
rebuild:
|
||||||
cd '{{frontend_dir}}' && docker buildx bake -f '{{frontend_bake}}' --set '*.no-cache=true' prod
|
cd '{{project_root}}' && docker buildx bake -f '{{proxy_bake}}' --set '*.no-cache=true' prod
|
||||||
|
cd '{{project_root}}' && docker buildx bake -f '{{backend_bake}}' --set '*.no-cache=true' prod-api prod-worker
|
||||||
|
docker compose -f '{{local_compose}}' up -d --remove-orphans --force-recreate
|
||||||
|
|
||||||
|
# Stop and remove the local production stack.
|
||||||
|
down:
|
||||||
|
docker compose -f '{{local_compose}}' down --remove-orphans --volumes
|
||||||
|
|
||||||
|
# Follow logs for the local production stack.
|
||||||
|
logs:
|
||||||
|
docker compose -f '{{local_compose}}' logs -f
|
||||||
|
|
||||||
|
# Restart the local production stack.
|
||||||
|
restart:
|
||||||
|
docker compose -f '{{local_compose}}' restart
|
||||||
|
|
||||||
|
# Stop the local production stack and remove local images.
|
||||||
|
clean:
|
||||||
|
docker compose -f '{{local_compose}}' down --remove-orphans --volumes
|
||||||
|
docker image rm -f '{{proxy_image}}' >/dev/null 2>&1 || true
|
||||||
|
docker image rm -f '{{backend_api_image}}' >/dev/null 2>&1 || true
|
||||||
|
docker image rm -f '{{backend_worker_image}}' >/dev/null 2>&1 || true
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
project_root := justfile_directory()
|
||||||
|
backend_dir := project_root + "/Backend"
|
||||||
|
|
||||||
|
# Run the full backend test suite.
|
||||||
|
[default]
|
||||||
|
all:
|
||||||
|
cd '{{backend_dir}}' && go test ./...
|
||||||
|
|
||||||
|
# Run the isolated POSIX bootstrap smoke test.
|
||||||
|
posix-bootstrap:
|
||||||
|
cd '{{backend_dir}}' && go test ./internal/bootstrap -run TestEnsureBootstrapPOSIXSkeletonInitializesEmptyRoot -count=1 -v
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
mod backend
|
||||||
@@ -1,15 +1,97 @@
|
|||||||
|
x-backend-service: &backend-service
|
||||||
|
image: moku/work-backend:dev
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- ../Env/.env.local
|
||||||
|
environment:
|
||||||
|
DATABASE_URL: postgres://moku:moku_dev_password@postgres:5432/moku?sslmode=disable
|
||||||
|
VALKEY_URL: redis://valkey:6379/0
|
||||||
|
POSIX_ROOT: /posix
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
valkey:
|
||||||
|
condition: service_healthy
|
||||||
|
volumes:
|
||||||
|
- ../Backend:/app
|
||||||
|
- ../POSIX:/posix
|
||||||
|
- moku_work_backend_go_pkg:/go/pkg/mod
|
||||||
|
- moku_work_backend_go_build:/root/.cache/go-build
|
||||||
|
|
||||||
services:
|
services:
|
||||||
frontend:
|
postgres:
|
||||||
image: moku/work-frontend:dev
|
image: postgres:17-alpine
|
||||||
container_name: moku-work-frontend
|
container_name: moku-work-postgres
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
environment:
|
||||||
- ../Env/.env.local
|
POSTGRES_DB: moku
|
||||||
ports:
|
POSTGRES_USER: moku
|
||||||
- "3333:3333"
|
POSTGRES_PASSWORD: moku_dev_password
|
||||||
volumes:
|
ports:
|
||||||
- ../Frontend:/app
|
- "5432:5432"
|
||||||
- moku_work_frontend_node_modules:/app/node_modules
|
volumes:
|
||||||
|
- moku_work_postgres_data:/var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -U moku -d moku"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
start_period: 10s
|
||||||
|
|
||||||
|
valkey:
|
||||||
|
image: valkey/valkey:8-alpine
|
||||||
|
container_name: moku-work-valkey
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "6379:6379"
|
||||||
|
volumes:
|
||||||
|
- moku_work_valkey_data:/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "valkey-cli", "ping"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
start_period: 5s
|
||||||
|
|
||||||
|
frontend:
|
||||||
|
image: moku/work-frontend:dev
|
||||||
|
container_name: moku-work-frontend
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- ../Env/.env.local
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
valkey:
|
||||||
|
condition: service_healthy
|
||||||
|
ports:
|
||||||
|
- "3333:3333"
|
||||||
|
volumes:
|
||||||
|
- ../Frontend:/app
|
||||||
|
- moku_work_frontend_node_modules:/app/node_modules
|
||||||
|
|
||||||
|
web:
|
||||||
|
<<: *backend-service
|
||||||
|
container_name: moku-work-backend-web
|
||||||
|
command: ["air", "-c", ".air.web.toml"]
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
|
||||||
|
api:
|
||||||
|
<<: *backend-service
|
||||||
|
container_name: moku-work-backend-api
|
||||||
|
command: ["air", "-c", ".air.api.toml"]
|
||||||
|
ports:
|
||||||
|
- "8081:8081"
|
||||||
|
|
||||||
|
worker:
|
||||||
|
<<: *backend-service
|
||||||
|
container_name: moku-work-backend-worker
|
||||||
|
command: ["air", "-c", ".air.worker.toml"]
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
moku_work_frontend_node_modules:
|
moku_work_postgres_data:
|
||||||
|
moku_work_valkey_data:
|
||||||
|
moku_work_frontend_node_modules:
|
||||||
|
moku_work_backend_go_pkg:
|
||||||
|
moku_work_backend_go_build:
|
||||||
|
|||||||
@@ -1 +1,70 @@
|
|||||||
# Reserved for a future local production compose stack.
|
x-backend-service: &backend-service
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- ../Env/.env.local
|
||||||
|
environment:
|
||||||
|
DATABASE_URL: postgres://moku:moku_dev_password@postgres:5432/moku?sslmode=disable
|
||||||
|
VALKEY_URL: redis://valkey:6379/0
|
||||||
|
POSIX_ROOT: /posix
|
||||||
|
depends_on:
|
||||||
|
postgres:
|
||||||
|
condition: service_healthy
|
||||||
|
valkey:
|
||||||
|
condition: service_healthy
|
||||||
|
volumes:
|
||||||
|
- ../POSIX:/posix
|
||||||
|
|
||||||
|
services:
|
||||||
|
postgres:
|
||||||
|
image: postgres:17-alpine
|
||||||
|
container_name: moku-work-postgres-prod
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: moku
|
||||||
|
POSTGRES_USER: moku
|
||||||
|
POSTGRES_PASSWORD: moku_dev_password
|
||||||
|
volumes:
|
||||||
|
- moku_work_postgres_prod_data:/var/lib/postgresql/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -U moku -d moku"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
start_period: 10s
|
||||||
|
|
||||||
|
valkey:
|
||||||
|
image: valkey/valkey:8-alpine
|
||||||
|
container_name: moku-work-valkey-prod
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- moku_work_valkey_prod_data:/data
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "valkey-cli", "ping"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
start_period: 5s
|
||||||
|
|
||||||
|
api:
|
||||||
|
<<: *backend-service
|
||||||
|
image: moku/work-backend:local-prod-api
|
||||||
|
container_name: moku-work-backend-api-prod
|
||||||
|
|
||||||
|
worker:
|
||||||
|
<<: *backend-service
|
||||||
|
image: moku/work-backend:local-prod-worker
|
||||||
|
container_name: moku-work-backend-worker-prod
|
||||||
|
|
||||||
|
proxy:
|
||||||
|
image: moku/work-proxy:local-prod
|
||||||
|
container_name: moku-work-proxy-local
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
api:
|
||||||
|
condition: service_started
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
moku_work_postgres_prod_data:
|
||||||
|
moku_work_valkey_prod_data:
|
||||||
|
|||||||
@@ -0,0 +1,171 @@
|
|||||||
|
# Contributing
|
||||||
|
|
||||||
|
Thanks for contributing to Moku Work.
|
||||||
|
|
||||||
|
This project is still in an early scaffold stage, so the goal is to keep changes easy to understand, easy to review, and easy to undo.
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
### Project structure
|
||||||
|
|
||||||
|
- `Frontend/` — SolidStart frontend workspace
|
||||||
|
- `Backend/` — Go backend services (`web`, `api`, `worker`)
|
||||||
|
- `Proxy/` — local production proxy/runtime assets
|
||||||
|
- `Docker/` — local Docker Compose files
|
||||||
|
- `Env/` — local environment files
|
||||||
|
- `Commands/` — Just command modules and entrypoints
|
||||||
|
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
Before working on the project, make sure you have:
|
||||||
|
|
||||||
|
- `just`
|
||||||
|
- Docker with `docker compose`
|
||||||
|
- Docker Buildx
|
||||||
|
- Node.js `>=22`
|
||||||
|
- `pnpm@9`
|
||||||
|
|
||||||
|
### Local development
|
||||||
|
|
||||||
|
List available commands:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
just --list --list-submodules
|
||||||
|
```
|
||||||
|
|
||||||
|
Main local development flow:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
just local dev
|
||||||
|
```
|
||||||
|
|
||||||
|
This command builds the frontend and backend development images, then starts the
|
||||||
|
local development stack for Postgres, Valkey, frontend, and backend services.
|
||||||
|
|
||||||
|
### Local environment
|
||||||
|
|
||||||
|
Local development uses:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
Env/.env.local
|
||||||
|
```
|
||||||
|
|
||||||
|
The template lives at:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
Env/.env.example
|
||||||
|
```
|
||||||
|
|
||||||
|
When you start the local Docker stack, the dev scripts will create `Env/.env.local`
|
||||||
|
from `Env/.env.example` automatically if it does not already exist.
|
||||||
|
|
||||||
|
If you need custom local values, edit `Env/.env.local` after it is created.
|
||||||
|
|
||||||
|
## Commit Naming Convention
|
||||||
|
|
||||||
|
Use short, clear commit messages that describe one logical change.
|
||||||
|
|
||||||
|
Preferred format:
|
||||||
|
|
||||||
|
```text
|
||||||
|
Type: Short description
|
||||||
|
```
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
```text
|
||||||
|
Feat: Add login page scaffold
|
||||||
|
Fix: Resolve mobile sidebar overflow
|
||||||
|
Refactor: Split theme helpers from app entry
|
||||||
|
Docs: Add local development notes
|
||||||
|
Chore: Update frontend dependencies
|
||||||
|
```
|
||||||
|
|
||||||
|
Recommended commit types:
|
||||||
|
|
||||||
|
- `Feat:` — new feature or visible behavior
|
||||||
|
- `Fix:` — bug fix
|
||||||
|
- `Refactor:` — internal code change without behavior change
|
||||||
|
- `Docs:` — documentation only
|
||||||
|
- `Chore:` — maintenance, tooling, dependency, or housekeeping work
|
||||||
|
- `Style:` — formatting or styling-only cleanup
|
||||||
|
- `Test:` — tests added or updated
|
||||||
|
|
||||||
|
### Commit message rules
|
||||||
|
|
||||||
|
- Keep the subject line short and specific
|
||||||
|
- Start with a capitalized type
|
||||||
|
- Describe what changed, not the entire session
|
||||||
|
- One commit should usually be explainable in one sentence
|
||||||
|
|
||||||
|
Good:
|
||||||
|
|
||||||
|
```text
|
||||||
|
Feat: Add base dashboard layout
|
||||||
|
Fix: Correct broken theme toggle import
|
||||||
|
Docs: Document branch naming workflow
|
||||||
|
```
|
||||||
|
|
||||||
|
Bad:
|
||||||
|
|
||||||
|
```text
|
||||||
|
stuff
|
||||||
|
more updates
|
||||||
|
big rewrite
|
||||||
|
misc fixes
|
||||||
|
```
|
||||||
|
|
||||||
|
## Branch Naming Convention
|
||||||
|
|
||||||
|
Use branch names that make the purpose of the work obvious at a glance.
|
||||||
|
|
||||||
|
Preferred format:
|
||||||
|
|
||||||
|
```text
|
||||||
|
type/short-description
|
||||||
|
```
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
```text
|
||||||
|
feature/login-page
|
||||||
|
fix/mobile-sidebar-overflow
|
||||||
|
refactor/theme-helpers
|
||||||
|
docs/contributing-update
|
||||||
|
chore/frontend-dependency-updates
|
||||||
|
rewrite/v2-foundation
|
||||||
|
```
|
||||||
|
|
||||||
|
Recommended branch types:
|
||||||
|
|
||||||
|
- `feature/` — new feature work
|
||||||
|
- `fix/` — bug fixes
|
||||||
|
- `refactor/` — structural code changes without intended behavior changes
|
||||||
|
- `docs/` — documentation work
|
||||||
|
- `chore/` — maintenance or tooling updates
|
||||||
|
- `rewrite/` — large rebuilds or architecture overhauls
|
||||||
|
|
||||||
|
### Branch naming rules
|
||||||
|
|
||||||
|
- Use lowercase words
|
||||||
|
- Separate words with hyphens
|
||||||
|
- Keep the name short but specific
|
||||||
|
- Name the branch after the outcome, not the time spent on it
|
||||||
|
- For larger efforts, prefer one clear branch name over vague labels like `misc` or `updates`
|
||||||
|
|
||||||
|
Good:
|
||||||
|
|
||||||
|
```text
|
||||||
|
feature/auth-shell
|
||||||
|
fix/docker-local-env-loading
|
||||||
|
rewrite/new-routing-foundation
|
||||||
|
```
|
||||||
|
|
||||||
|
Bad:
|
||||||
|
|
||||||
|
```text
|
||||||
|
new-stuff
|
||||||
|
work-branch
|
||||||
|
test
|
||||||
|
misc-updates
|
||||||
|
```
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
# POSIX Structure
|
||||||
|
|
||||||
|
[Filetree Link](https://tree.nathanfriend.com/?s=(%27optiUs!(%27fancy!Yue~fullPath!fbq~YailingSlash!Yue~rootDot!fbq)~R(%27R%27PJ%20or%20OrganizatiU%20%7Bqrver%7DM*46layout6cNlog7packs7*pack37A2*enYies75W5A_standbUe7WA6HwH30LZ2teamw5teamGL5Z6FwF30LKTC058T5C7XFG5LXKXTXC7XI7I05QG5BN2*8QG5BN6Z04_dN_pJw*pJGlayout2L*KI70%27)~vEiU!%271%27)*%20%200M52_*3-%3Cslug%3E4qttings5**69M*7%2F08VG*V259.jsUA5manifestBQ25*schema25*dCchildrenEersFprojectG305HdepartmentI*YeeJEUbKhome2L*42M%5CnNataQitemRsource!Tacl2UonVfolderW*app37X55YtrZusE_90balqsews0%01wqb_ZYXWVUTRQNMLKJIHGFECBA987654320*)
|
||||||
|
|
||||||
|
``` markdown
|
||||||
|
Personal or Organization (server)/
|
||||||
|
├── settings.json
|
||||||
|
├── layout.json
|
||||||
|
├── catalog/
|
||||||
|
│ ├── packs/
|
||||||
|
│ │ └── pack-<slug>/
|
||||||
|
│ │ ├── manifest.json
|
||||||
|
│ │ └── entries/
|
||||||
|
│ │ └── app-<slug>/
|
||||||
|
│ │ └── manifest.json
|
||||||
|
│ └── standalone/
|
||||||
|
│ └── app-<slug>/
|
||||||
|
│ └── manifest.json
|
||||||
|
├── departments/
|
||||||
|
│ └── department-<slug>/
|
||||||
|
│ ├── settings.json
|
||||||
|
│ ├── users.json
|
||||||
|
│ └── teams/
|
||||||
|
│ └── team-<slug>/
|
||||||
|
│ ├── settings.json
|
||||||
|
│ └── users.json
|
||||||
|
├── projects/
|
||||||
|
│ └── project-<slug>/
|
||||||
|
│ ├── settings.json
|
||||||
|
│ ├── home.json
|
||||||
|
│ ├── acl.json
|
||||||
|
│ ├── children/
|
||||||
|
│ │ └── folder-<slug>/
|
||||||
|
│ │ ├── folder.json
|
||||||
|
│ │ ├── acl.json
|
||||||
|
│ │ └── children/
|
||||||
|
│ │ └── project-<slug>/
|
||||||
|
│ │ ├── settings.json
|
||||||
|
│ │ ├── home.json
|
||||||
|
│ │ ├── acl.json
|
||||||
|
│ │ ├── children/
|
||||||
|
│ │ └── tree/
|
||||||
|
│ └── tree/
|
||||||
|
│ ├── item-<slug>/
|
||||||
|
│ │ ├── item.json
|
||||||
|
│ │ ├── schema.json
|
||||||
|
│ │ └── data.json
|
||||||
|
│ └── folder-<slug>/
|
||||||
|
│ ├── folder.json
|
||||||
|
│ └── item-<slug>/
|
||||||
|
│ ├── item.json
|
||||||
|
│ ├── schema.json
|
||||||
|
│ └── data.json
|
||||||
|
└── users/
|
||||||
|
├── settings.json
|
||||||
|
├── data.json
|
||||||
|
└── personals/
|
||||||
|
└── personal-<slug>/
|
||||||
|
├── layout.json
|
||||||
|
├── settings.json
|
||||||
|
├── home.json
|
||||||
|
└── tree/
|
||||||
|
```
|
||||||
|
|
||||||
|
## File Responsibilities
|
||||||
|
|
||||||
|
- `settings.json` — Metadata and presentation config for the thing, such as display name, icon, description, and simple settings.
|
||||||
|
- `layout.json` — Layout configuration for the current server or personal space.
|
||||||
|
- `home.json` — Home surface configuration, such as widgets, sections, and how they are arranged.
|
||||||
|
- `folder.json` — Metadata for a folder node in a tree.
|
||||||
|
- `item.json` — Instance metadata for a created item, including what it is and how it should behave.
|
||||||
|
- `schema.json` — The structure expected by that item's data.
|
||||||
|
- `data.json` — The actual content or state data for that item.
|
||||||
|
- `manifest.json` — Catalog definition metadata, including versioning, description, and capabilities for reusable apps or entries.
|
||||||
|
- `users.json` — User membership or assignment data for departments and teams.
|
||||||
@@ -0,0 +1,177 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": "1.0.0",
|
||||||
|
"id": "moku-styling-sample",
|
||||||
|
"name": "Moku Styling Sample",
|
||||||
|
"description": "Sample theme showing the background, surface, border, accent, and primary tokens documented in Documentation/STYLING.md.",
|
||||||
|
"author": "Moku Work",
|
||||||
|
"tokens": {
|
||||||
|
"shared": {
|
||||||
|
"palette": {
|
||||||
|
"gray": {
|
||||||
|
"0": "hsl(210 20% 99%)",
|
||||||
|
"50": "hsl(220 20% 97%)",
|
||||||
|
"100": "hsl(220 16% 93%)",
|
||||||
|
"200": "hsl(220 13% 87%)",
|
||||||
|
"300": "hsl(220 11% 75%)",
|
||||||
|
"400": "hsl(220 9% 58%)",
|
||||||
|
"500": "hsl(220 10% 45%)",
|
||||||
|
"600": "hsl(220 14% 34%)",
|
||||||
|
"700": "hsl(220 18% 24%)",
|
||||||
|
"800": "hsl(220 22% 16%)",
|
||||||
|
"900": "hsl(220 28% 10%)"
|
||||||
|
},
|
||||||
|
"blue": {
|
||||||
|
"400": "hsl(218 88% 61%)",
|
||||||
|
"500": "hsl(221 83% 53%)",
|
||||||
|
"600": "hsl(224 76% 48%)"
|
||||||
|
},
|
||||||
|
"green": {
|
||||||
|
"500": "hsl(154 60% 40%)"
|
||||||
|
},
|
||||||
|
"red": {
|
||||||
|
"500": "hsl(0 72% 54%)"
|
||||||
|
},
|
||||||
|
"amber": {
|
||||||
|
"500": "hsl(36 100% 50%)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"space": {
|
||||||
|
"1": "0.25rem",
|
||||||
|
"2": "0.5rem",
|
||||||
|
"3": "0.75rem",
|
||||||
|
"4": "1rem",
|
||||||
|
"5": "1.25rem",
|
||||||
|
"6": "1.5rem",
|
||||||
|
"8": "2rem",
|
||||||
|
"10": "2.5rem",
|
||||||
|
"12": "3rem"
|
||||||
|
},
|
||||||
|
"radius": {
|
||||||
|
"sm": "0.375rem",
|
||||||
|
"md": "0.625rem",
|
||||||
|
"lg": "0.875rem",
|
||||||
|
"xl": "1.25rem",
|
||||||
|
"pill": "999px"
|
||||||
|
},
|
||||||
|
"size": {
|
||||||
|
"controlMd": "2.25rem",
|
||||||
|
"controlLg": "2.5rem",
|
||||||
|
"contentWidthWide": "72rem",
|
||||||
|
"blurOverlay": "18px"
|
||||||
|
},
|
||||||
|
"shadow": {
|
||||||
|
"soft": "0 12px 32px hsl(220 30% 10% / 0.08)",
|
||||||
|
"strong": "0 20px 48px hsl(220 30% 10% / 0.16)"
|
||||||
|
},
|
||||||
|
"zIndex": {
|
||||||
|
"base": "1",
|
||||||
|
"dropdown": "100",
|
||||||
|
"sticky": "200",
|
||||||
|
"overlay": "400",
|
||||||
|
"modal": "500",
|
||||||
|
"toast": "600"
|
||||||
|
},
|
||||||
|
"motion": {
|
||||||
|
"durationFast": "140ms",
|
||||||
|
"durationBase": "220ms",
|
||||||
|
"durationSlow": "320ms",
|
||||||
|
"easeStandard": "cubic-bezier(0.2, 0.8, 0.2, 1)"
|
||||||
|
},
|
||||||
|
"typography": {
|
||||||
|
"fontFamily": {
|
||||||
|
"sans": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"heading": "\"Avenir Next\", \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"display": "\"Avenir Next\", \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"serif": "ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif",
|
||||||
|
"mono": "ui-monospace, \"SF Mono\", \"SFMono-Regular\", Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace"
|
||||||
|
},
|
||||||
|
"fontSize": {
|
||||||
|
"caption": "0.75rem",
|
||||||
|
"label": "0.875rem",
|
||||||
|
"body": "1rem",
|
||||||
|
"title": "clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem)",
|
||||||
|
"heading": "clamp(1.5rem, 1.2rem + 1vw, 2.125rem)",
|
||||||
|
"display": "clamp(2.25rem, 1.7rem + 2.2vw, 3.75rem)"
|
||||||
|
},
|
||||||
|
"lineHeight": {
|
||||||
|
"caption": "1.4",
|
||||||
|
"label": "1.35",
|
||||||
|
"body": "1.55",
|
||||||
|
"title": "1.3",
|
||||||
|
"heading": "1.15",
|
||||||
|
"display": "1.05"
|
||||||
|
},
|
||||||
|
"fontWeight": {
|
||||||
|
"caption": "500",
|
||||||
|
"label": "600",
|
||||||
|
"body": "400",
|
||||||
|
"title": "600",
|
||||||
|
"heading": "600",
|
||||||
|
"display": "700"
|
||||||
|
},
|
||||||
|
"letterSpacing": {
|
||||||
|
"caption": "0.01em",
|
||||||
|
"label": "0.005em",
|
||||||
|
"body": "0",
|
||||||
|
"title": "-0.01em",
|
||||||
|
"heading": "-0.02em",
|
||||||
|
"display": "-0.03em"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"modes": {
|
||||||
|
"light": {
|
||||||
|
"colorScheme": "light",
|
||||||
|
"colors": {
|
||||||
|
"canvas": "var(--gray-50)",
|
||||||
|
"surface": "hsl(0 0% 100% / 0.9)",
|
||||||
|
"surfaceMuted": "var(--gray-0)",
|
||||||
|
"surfaceHover": "var(--gray-100)",
|
||||||
|
"border": "hsl(220 15% 85% / 0.9)",
|
||||||
|
"borderStrong": "hsl(220 12% 70% / 0.9)",
|
||||||
|
"text": "var(--gray-800)",
|
||||||
|
"textMuted": "var(--gray-500)",
|
||||||
|
"accent": "var(--blue-500)",
|
||||||
|
"accentStrong": "var(--blue-600)",
|
||||||
|
"accentSoft": "hsl(218 88% 61% / 0.12)",
|
||||||
|
"accentContrast": "hsl(0 0% 100%)",
|
||||||
|
"primaryOne": "var(--blue-500)",
|
||||||
|
"primaryTwo": "hsl(271 72% 60%)",
|
||||||
|
"primaryThree": "hsl(192 76% 48%)",
|
||||||
|
"success": "var(--green-500)",
|
||||||
|
"danger": "var(--red-500)",
|
||||||
|
"warning": "var(--amber-500)",
|
||||||
|
"focusRing": "hsl(221 83% 53% / 0.55)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dark": {
|
||||||
|
"colorScheme": "dark",
|
||||||
|
"colors": {
|
||||||
|
"canvas": "var(--gray-900)",
|
||||||
|
"surface": "hsl(220 23% 14% / 0.92)",
|
||||||
|
"surfaceMuted": "hsl(220 22% 12% / 0.96)",
|
||||||
|
"surfaceHover": "hsl(220 18% 20% / 0.96)",
|
||||||
|
"border": "hsl(220 12% 26% / 0.9)",
|
||||||
|
"borderStrong": "hsl(220 12% 38% / 0.9)",
|
||||||
|
"text": "hsl(210 20% 96%)",
|
||||||
|
"textMuted": "hsl(220 12% 70%)",
|
||||||
|
"accent": "hsl(217 91% 67%)",
|
||||||
|
"accentStrong": "hsl(218 88% 61%)",
|
||||||
|
"accentSoft": "hsl(217 91% 67% / 0.18)",
|
||||||
|
"accentContrast": "hsl(220 28% 10%)",
|
||||||
|
"primaryOne": "hsl(217 91% 67%)",
|
||||||
|
"primaryTwo": "hsl(272 80% 70%)",
|
||||||
|
"primaryThree": "hsl(190 84% 62%)",
|
||||||
|
"success": "hsl(154 55% 48%)",
|
||||||
|
"danger": "hsl(0 72% 62%)",
|
||||||
|
"warning": "hsl(36 100% 60%)",
|
||||||
|
"focusRing": "hsl(217 91% 67% / 0.65)"
|
||||||
|
},
|
||||||
|
"shadow": {
|
||||||
|
"soft": "0 16px 40px hsl(220 40% 3% / 0.45)",
|
||||||
|
"strong": "0 24px 60px hsl(220 40% 3% / 0.55)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,327 @@
|
|||||||
|
# Styling Reference
|
||||||
|
|
||||||
|
This document explains which theme tokens control the main backgrounds, surfaces,
|
||||||
|
borders, and shell gradients in Moku Work.
|
||||||
|
|
||||||
|
It is focused on the current frontend shell scaffold so future visual tuning can
|
||||||
|
be done intentionally instead of by guesswork.
|
||||||
|
|
||||||
|
## Source Of Truth
|
||||||
|
|
||||||
|
There are two places to look when changing styling tokens:
|
||||||
|
|
||||||
|
- Runtime theme payload:
|
||||||
|
- `Frontend/public/themes/moku-default.json`
|
||||||
|
- SCSS fallback defaults:
|
||||||
|
- `Frontend/src/styles/themes/_light.scss`
|
||||||
|
- `Frontend/src/styles/themes/_dark.scss`
|
||||||
|
- Full sample theme file:
|
||||||
|
- `Documentation/STYLING-THEME-SAMPLE.json`
|
||||||
|
|
||||||
|
If you want to change the actual themed values used by the app, update the theme
|
||||||
|
JSON first. The SCSS files act as fallback/default variables.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Core Surface Tokens
|
||||||
|
|
||||||
|
These are the main tokens currently driving shell backgrounds and card surfaces:
|
||||||
|
|
||||||
|
- `--color-canvas`
|
||||||
|
- outer page background
|
||||||
|
- `--color-surface`
|
||||||
|
- standard panel/card/topbar surface
|
||||||
|
- `--color-surface-muted`
|
||||||
|
- quieter secondary panels and dropdown surfaces
|
||||||
|
- `--color-surface-hover`
|
||||||
|
- hover state for solid surface rows
|
||||||
|
- `--color-border`
|
||||||
|
- standard card/panel border
|
||||||
|
- `--color-border-strong`
|
||||||
|
- stronger shell edges, separators, and emphasized borders
|
||||||
|
- `--color-text`
|
||||||
|
- primary text color
|
||||||
|
- `--color-text-muted`
|
||||||
|
- secondary/meta text color
|
||||||
|
- `--color-accent`
|
||||||
|
- primary accent lane
|
||||||
|
- `--color-accent-strong`
|
||||||
|
- stronger accent emphasis
|
||||||
|
- `--color-accent-soft`
|
||||||
|
- soft accent wash for subtle fills
|
||||||
|
|
||||||
|
There are also ring-only multi-primary tokens currently used for the top-right
|
||||||
|
profile ring:
|
||||||
|
|
||||||
|
- `--color-primary-1`
|
||||||
|
- `--color-primary-2`
|
||||||
|
- `--color-primary-3`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Light Mode Values
|
||||||
|
|
||||||
|
Current light-mode surface values:
|
||||||
|
|
||||||
|
```text
|
||||||
|
--color-canvas: var(--gray-50)
|
||||||
|
--color-surface: hsl(0 0% 100% / 0.9)
|
||||||
|
--color-surface-muted: var(--gray-0)
|
||||||
|
--color-surface-hover: var(--gray-100)
|
||||||
|
--color-border: hsl(220 15% 85% / 0.9)
|
||||||
|
--color-border-strong: hsl(220 12% 70% / 0.9)
|
||||||
|
--color-text: var(--gray-800)
|
||||||
|
--color-text-muted: var(--gray-500)
|
||||||
|
--color-accent: var(--blue-500)
|
||||||
|
--color-accent-strong: var(--blue-600)
|
||||||
|
--color-accent-soft: hsl(218 88% 61% / 0.12)
|
||||||
|
--color-primary-1: var(--blue-500)
|
||||||
|
--color-primary-2: hsl(271 72% 60%)
|
||||||
|
--color-primary-3: hsl(192 76% 48%)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Dark Mode Values
|
||||||
|
|
||||||
|
Current dark-mode surface values:
|
||||||
|
|
||||||
|
```text
|
||||||
|
--color-canvas: var(--gray-900)
|
||||||
|
--color-surface: hsl(220 23% 14% / 0.92)
|
||||||
|
--color-surface-muted: hsl(220 22% 12% / 0.96)
|
||||||
|
--color-surface-hover: hsl(220 18% 20% / 0.96)
|
||||||
|
--color-border: hsl(220 12% 26% / 0.9)
|
||||||
|
--color-border-strong: hsl(220 12% 38% / 0.9)
|
||||||
|
--color-text: hsl(210 20% 96%)
|
||||||
|
--color-text-muted: hsl(220 12% 70%)
|
||||||
|
--color-accent: hsl(217 91% 67%)
|
||||||
|
--color-accent-strong: hsl(218 88% 61%)
|
||||||
|
--color-accent-soft: hsl(217 91% 67% / 0.18)
|
||||||
|
--color-primary-1: hsl(217 91% 67%)
|
||||||
|
--color-primary-2: hsl(272 80% 70%)
|
||||||
|
--color-primary-3: hsl(190 84% 62%)
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## What Controls What
|
||||||
|
|
||||||
|
### 1. App Background
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/shell/AppShell/AppShell.module.scss`
|
||||||
|
|
||||||
|
The outer app frame uses:
|
||||||
|
|
||||||
|
```scss
|
||||||
|
background: var(--color-canvas);
|
||||||
|
color: var(--color-text);
|
||||||
|
```
|
||||||
|
|
||||||
|
So if you want to change the overall page backdrop, change `--color-canvas`.
|
||||||
|
|
||||||
|
### 2. Main Shell Split Background
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/shell/AppShell/AppShell.module.scss`
|
||||||
|
|
||||||
|
The shell derives two important internal surface blends:
|
||||||
|
|
||||||
|
```text
|
||||||
|
--sidebar-panel-surface: color-mix(in srgb, var(--color-surface-muted) 92%, transparent)
|
||||||
|
--workspace-panel-surface: color-mix(in srgb, var(--color-canvas) 94%, var(--color-surface))
|
||||||
|
```
|
||||||
|
|
||||||
|
It also derives frame/separator borders:
|
||||||
|
|
||||||
|
```text
|
||||||
|
--shell-frame-border: color-mix(in srgb, var(--color-border-strong) 44%, transparent)
|
||||||
|
--shell-divider-border: color-mix(in srgb, var(--color-border-strong) 34%, transparent)
|
||||||
|
```
|
||||||
|
|
||||||
|
Surface usage inside the shell:
|
||||||
|
|
||||||
|
- `.body` → `var(--color-surface)`
|
||||||
|
- `.railColumn` → `var(--color-surface)`
|
||||||
|
- `.sidebarColumn` → `var(--sidebar-panel-surface)`
|
||||||
|
- `.workspaceMain` → `var(--workspace-panel-surface)`
|
||||||
|
|
||||||
|
The major left/right shell background is drawn by `workspaceRegion::before` using a
|
||||||
|
horizontal gradient from sidebar surface to workspace surface.
|
||||||
|
|
||||||
|
### 3. Standard Content Cards
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/workspace-home/WorkspaceHome/WorkspaceHome.module.scss`
|
||||||
|
|
||||||
|
Cards currently use:
|
||||||
|
|
||||||
|
```text
|
||||||
|
background: var(--color-surface)
|
||||||
|
border: 1px solid var(--color-border)
|
||||||
|
box-shadow: var(--shadow-soft)
|
||||||
|
```
|
||||||
|
|
||||||
|
If cards feel too flat or too strong, start by adjusting:
|
||||||
|
|
||||||
|
- `--color-surface`
|
||||||
|
- `--color-border`
|
||||||
|
|
||||||
|
### 4. Top Bar
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/shell/TopBar/TopBar.module.scss`
|
||||||
|
|
||||||
|
The top bar itself uses:
|
||||||
|
|
||||||
|
```text
|
||||||
|
background: var(--color-surface)
|
||||||
|
```
|
||||||
|
|
||||||
|
Hover/focus states for top-right controls use transparent mixes based on:
|
||||||
|
|
||||||
|
- `--color-text`
|
||||||
|
- `--color-accent-strong`
|
||||||
|
|
||||||
|
So the bar is mostly controlled by `--color-surface`, while the interactive polish
|
||||||
|
comes from text/accent tokens.
|
||||||
|
|
||||||
|
### 5. Server Dock
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/shell/ServerDock/ServerDock.module.scss`
|
||||||
|
|
||||||
|
The dock uses two derived tokens:
|
||||||
|
|
||||||
|
```text
|
||||||
|
--server-dock-border: color-mix(in srgb, var(--color-border-strong) 75%, transparent)
|
||||||
|
--server-dock-surface: color-mix(in srgb, var(--color-surface) 94%, transparent)
|
||||||
|
```
|
||||||
|
|
||||||
|
That means the dock is visually tied most strongly to:
|
||||||
|
|
||||||
|
- `--color-surface`
|
||||||
|
- `--color-border-strong`
|
||||||
|
|
||||||
|
The server glyph fill uses a soft accent wash derived from:
|
||||||
|
|
||||||
|
- `--color-accent-soft`
|
||||||
|
|
||||||
|
### 6. Project Drawer
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/shell/ProjectSelector/ProjectSelector.module.scss`
|
||||||
|
|
||||||
|
Important layers:
|
||||||
|
|
||||||
|
- scrim:
|
||||||
|
- `color-mix(in srgb, black 8%, transparent)`
|
||||||
|
- drawer panel surface:
|
||||||
|
- defined in `.drawer::before`
|
||||||
|
- vertical gradient from `--color-surface` to `--color-surface-muted`
|
||||||
|
- current-project summary block:
|
||||||
|
- `color-mix(in srgb, var(--color-surface) 72%, transparent)`
|
||||||
|
- menu row hover:
|
||||||
|
- based on `--color-surface-hover`
|
||||||
|
- menu row active:
|
||||||
|
- based on `--color-surface`
|
||||||
|
|
||||||
|
So the drawer’s look is mainly shaped by:
|
||||||
|
|
||||||
|
- `--color-surface`
|
||||||
|
- `--color-surface-muted`
|
||||||
|
- `--color-surface-hover`
|
||||||
|
- `--color-border-strong`
|
||||||
|
|
||||||
|
### 7. Department Selector Dropdown
|
||||||
|
|
||||||
|
File:
|
||||||
|
|
||||||
|
- `Frontend/src/components/shell/DepartmentSelector/DepartmentSelector.module.scss`
|
||||||
|
|
||||||
|
The department dropdown is intentionally solid, not blurred.
|
||||||
|
|
||||||
|
It uses:
|
||||||
|
|
||||||
|
```text
|
||||||
|
.menu background: var(--color-surface-muted)
|
||||||
|
.menu border: 1px solid var(--color-border-strong)
|
||||||
|
.menuItem background: var(--color-surface-muted)
|
||||||
|
.submenuItem background: var(--color-surface-muted)
|
||||||
|
hover/active rows: var(--color-surface)
|
||||||
|
```
|
||||||
|
|
||||||
|
If the department menu feels too heavy or too subtle, start by adjusting:
|
||||||
|
|
||||||
|
- `--color-surface-muted`
|
||||||
|
- `--color-surface`
|
||||||
|
- `--color-border-strong`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Quick Tuning Guide
|
||||||
|
|
||||||
|
If you want to change the overall visual mood quickly, these are the highest-leverage tokens:
|
||||||
|
|
||||||
|
### Make the app feel lighter / airier
|
||||||
|
|
||||||
|
Adjust:
|
||||||
|
|
||||||
|
- `--color-canvas`
|
||||||
|
- `--color-surface`
|
||||||
|
- `--color-surface-muted`
|
||||||
|
|
||||||
|
### Make shells/cards feel more separated
|
||||||
|
|
||||||
|
Adjust:
|
||||||
|
|
||||||
|
- `--color-border`
|
||||||
|
- `--color-border-strong`
|
||||||
|
- `--color-surface-muted`
|
||||||
|
|
||||||
|
### Make accent washes more or less noticeable
|
||||||
|
|
||||||
|
Adjust:
|
||||||
|
|
||||||
|
- `--color-accent-soft`
|
||||||
|
|
||||||
|
### Change the visual personality of the profile ring
|
||||||
|
|
||||||
|
Adjust:
|
||||||
|
|
||||||
|
- `--color-primary-1`
|
||||||
|
- `--color-primary-2`
|
||||||
|
- `--color-primary-3`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Practical Rule Of Thumb
|
||||||
|
|
||||||
|
Use this mental model:
|
||||||
|
|
||||||
|
```text
|
||||||
|
canvas = app/page background
|
||||||
|
surface = primary panel or card
|
||||||
|
surface-muted = quieter secondary panel
|
||||||
|
surface-hover = solid hover state
|
||||||
|
border = normal edge
|
||||||
|
border-strong = stronger shell edge or divider
|
||||||
|
accent-soft = subtle tinted wash
|
||||||
|
primary-1/2/3 = decorative multi-color accents
|
||||||
|
```
|
||||||
|
|
||||||
|
If you are unsure where to start, tune these in this order:
|
||||||
|
|
||||||
|
1. `--color-canvas`
|
||||||
|
2. `--color-surface`
|
||||||
|
3. `--color-surface-muted`
|
||||||
|
4. `--color-border`
|
||||||
|
5. `--color-border-strong`
|
||||||
|
6. `--color-accent-soft`
|
||||||
|
|
||||||
|
That usually gives the biggest visual shift with the fewest unintended side effects.
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
# ToDo
|
||||||
|
|
||||||
|
## Version 1.0.0 Roadmap
|
||||||
|
|
||||||
|
### Version 0.1.0
|
||||||
|
|
||||||
|
**Goal:** Finish the base application shell, auth, and platform foundations.
|
||||||
|
|
||||||
|
#### Architecture and Delivery
|
||||||
|
|
||||||
|
- [x] Project-Structure
|
||||||
|
- [x] Stack-Decisions
|
||||||
|
- [x] Proxy
|
||||||
|
- [x] Local-Dev-Vite-Proxy
|
||||||
|
- [x] Local-Prod-NGINX-Proxy
|
||||||
|
- [x] First-Request-Web-Loader
|
||||||
|
- [x] Bootstrap-Document
|
||||||
|
- [x] Route-Intent-Handoff
|
||||||
|
- [x] Tiny-First-Paint-Budget
|
||||||
|
- [x] Dev-and-Prod-Builds
|
||||||
|
- [x] Local-Dev-Just-Commands
|
||||||
|
- [x] Local-Dev-Docker-Compose
|
||||||
|
- [x] Local-Prod-Just-Commands
|
||||||
|
- [x] Local-Prod-Docker-Compose
|
||||||
|
- [x] Frontend-Production-Dockerfile
|
||||||
|
- [x] Frontend-docker-bake
|
||||||
|
|
||||||
|
#### Backend — Done Foundations
|
||||||
|
|
||||||
|
- [x] Bootstrap-Persistence
|
||||||
|
- [x] Installation-Step
|
||||||
|
- [x] Mode-Step
|
||||||
|
- [x] Admin-Step
|
||||||
|
- [x] Structure-Step
|
||||||
|
- [x] Bootstrap-State-Authority
|
||||||
|
- [x] Development-Bootstrap-Reset
|
||||||
|
- [x] Base-Schema
|
||||||
|
- [x] Installations
|
||||||
|
- [x] Users
|
||||||
|
- [x] User-Homes
|
||||||
|
- [x] Organizations
|
||||||
|
- [x] Departments
|
||||||
|
- [x] Teams
|
||||||
|
- [x] Projects
|
||||||
|
- [x] Workspaces
|
||||||
|
- [x] Membership-Tables
|
||||||
|
- [x] App-Shell-Read-API
|
||||||
|
- [x] App-Shell-State-Endpoint
|
||||||
|
- [x] Bootstrap-Read-Endpoints
|
||||||
|
- [x] Shell-Tree-Hydration
|
||||||
|
- [x] Web-Route-Scaffolds
|
||||||
|
- [x] Session-Endpoint-Scaffold
|
||||||
|
- [x] Bootstrap-Endpoint-Scaffold
|
||||||
|
- [x] Current-User-Endpoint-Scaffold
|
||||||
|
|
||||||
|
#### Backend — Remaining for 0.1.0
|
||||||
|
|
||||||
|
- [ ] Auth
|
||||||
|
- [ ] Session-Flow
|
||||||
|
- [ ] Login-Logout-Foundation
|
||||||
|
- [ ] Authentication
|
||||||
|
- [ ] Current-User-Implementation
|
||||||
|
- [ ] POSIX-Lite-File-Persistence-Foundation
|
||||||
|
- [ ] Mounted-Storage-Root-Config
|
||||||
|
- [ ] Project-Folder-Creation-On-Backend
|
||||||
|
- [ ] moku.project.json
|
||||||
|
- [ ] Item-Folder-Creation
|
||||||
|
- [ ] item.json
|
||||||
|
- [ ] schema.json
|
||||||
|
- [ ] data.json
|
||||||
|
- [ ] DB-To-Files-Write-Flow
|
||||||
|
- [ ] User-and-Workspace-Domain-Readiness
|
||||||
|
- [ ] Base-Workspace
|
||||||
|
- [ ] Boards
|
||||||
|
- [ ] Dashboard
|
||||||
|
- [ ] API
|
||||||
|
- [ ] Real-Organizations-Read-Endpoint
|
||||||
|
- [ ] Real-Workspaces-Read-Endpoint
|
||||||
|
- [ ] Tree-Mutation-Endpoints
|
||||||
|
- [ ] Project-Creation-Endpoint
|
||||||
|
|
||||||
|
#### Frontend — Done Foundations
|
||||||
|
|
||||||
|
- [x] Foundation
|
||||||
|
- [x] Typography
|
||||||
|
- [x] Icons
|
||||||
|
- [x] App-Shell
|
||||||
|
- [x] Left-Rail
|
||||||
|
- [x] Top-Bar
|
||||||
|
- [x] Server-Dock
|
||||||
|
- [x] Department-Selector
|
||||||
|
- [x] Theme-Toggle
|
||||||
|
- [x] Notifications-Menu
|
||||||
|
- [x] Profile-Menu
|
||||||
|
- [x] Responsive-Shell
|
||||||
|
- [x] Collapsible-Shell
|
||||||
|
- [x] Mobile-Bottom-Nav
|
||||||
|
- [x] Mobile-Workspace-Browser
|
||||||
|
- [x] Mobile-Workspace-Views
|
||||||
|
- [x] Context-Menus
|
||||||
|
- [x] Workspace-Context-Menu
|
||||||
|
- [x] Project-Context-Menu
|
||||||
|
- [x] Bootstrap-Workspace-Home
|
||||||
|
- [x] Bootstrap-Wizard
|
||||||
|
- [x] Bootstrap-Step-Submission
|
||||||
|
- [x] App-Shell-Reload-After-Bootstrap
|
||||||
|
- [x] Project-Menu
|
||||||
|
- [x] Folders-and-Subfolders
|
||||||
|
- [x] Rooted-From-Department
|
||||||
|
- [x] Long-Press-Drag-and-Drop
|
||||||
|
- [x] Workspace-Tree
|
||||||
|
- [x] Folders-and-Subfolders
|
||||||
|
- [x] Long-Press-Drag-and-Drop
|
||||||
|
- [x] App-Shell-Hydration
|
||||||
|
|
||||||
|
#### Frontend — Remaining for 0.1.0
|
||||||
|
|
||||||
|
- [ ] Primitives
|
||||||
|
- [ ] Button
|
||||||
|
- [ ] IconButton
|
||||||
|
- [ ] Input
|
||||||
|
- [ ] Surface
|
||||||
|
- [ ] Workspace-Switching
|
||||||
|
- [ ] Real-Workspace-Home
|
||||||
|
- [ ] Real-Workspace-Tree-Hydration
|
||||||
|
- [ ] Create-Project-Flow
|
||||||
|
- [ ] Persist-Tree-Mutations
|
||||||
|
- [ ] Connect-Tree-Interactions-To-Backend-Data
|
||||||
|
|
||||||
|
### Version 0.2.0
|
||||||
|
|
||||||
|
**Goal:** Build the plugin app system on top of the base platform. And core app plugins like calendar, board, docs and text channels
|
||||||
|
|
||||||
|
### Version 0.3.0
|
||||||
|
|
||||||
|
**Goal:** Communications and Collaboration (Email System, Reminder System, and Live Collaboration on Documents)
|
||||||
|
|
||||||
|
### Version 0.4.0
|
||||||
|
|
||||||
|
**Goal:** Introduce the POSIX-based file system drive direction with OnlyOffice + S3 blob storage + Per File Versioning
|
||||||
|
|
||||||
|
### Version 0.5.0
|
||||||
|
|
||||||
|
**Goal:** File Sharing and Per File Permissions
|
||||||
|
|
||||||
|
### Version 0.6.0
|
||||||
|
|
||||||
|
**Goal:** Git as a core plugin
|
||||||
|
|
||||||
|
### Version 0.7.0
|
||||||
|
|
||||||
|
**Goal:** Full Automation System (Extensive)
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
ALLOWED_HOSTS=
|
||||||
|
|
||||||
|
APP_NAME=moku
|
||||||
|
GO_ENV=development
|
||||||
|
LOG_LEVEL=debug
|
||||||
|
|
||||||
|
BACKEND_WEB_PORT=8080
|
||||||
|
BACKEND_API_PORT=8081
|
||||||
|
BACKEND_SHUTDOWN_TIMEOUT=10s
|
||||||
|
|
||||||
|
DATABASE_URL=postgres://moku:moku_dev_password@localhost:5432/moku?sslmode=disable
|
||||||
|
VALKEY_URL=redis://localhost:6379/0
|
||||||
|
POSIX_ROOT=../POSIX
|
||||||
|
|
||||||
|
VITE_API_BASE_URL=/v1
|
||||||
|
|
||||||
|
# Local frontend dev uses the Vite proxy for /v1 requests.
|
||||||
|
# Override only if the browser must call the API directly:
|
||||||
|
# VITE_API_BASE_URL=http://localhost:8081/v1
|
||||||
+6
-19
@@ -1,5 +1,8 @@
|
|||||||
# syntax=docker/dockerfile:1.7
|
# syntax=docker/dockerfile:1.7
|
||||||
|
|
||||||
|
# Frontend development image only.
|
||||||
|
# Production static serving is owned by Proxy/Local/Dockerfile.
|
||||||
|
|
||||||
FROM node:22-alpine AS base
|
FROM node:22-alpine AS base
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
@@ -16,27 +19,11 @@ FROM dependencies AS development
|
|||||||
ENV NODE_ENV=development
|
ENV NODE_ENV=development
|
||||||
ENV PORT=3333
|
ENV PORT=3333
|
||||||
|
|
||||||
|
ARG ALLOWED_HOSTS
|
||||||
|
ENV ALLOWED_HOSTS=${ALLOWED_HOSTS}
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
EXPOSE 3333
|
EXPOSE 3333
|
||||||
|
|
||||||
CMD ["pnpm", "dev", "--host", "0.0.0.0", "--port", "3333"]
|
CMD ["pnpm", "dev", "--host", "0.0.0.0", "--port", "3333"]
|
||||||
|
|
||||||
FROM dependencies AS build
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
RUN pnpm build
|
|
||||||
|
|
||||||
FROM base AS production
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
|
||||||
ENV PORT=3333
|
|
||||||
|
|
||||||
COPY --from=build /app /app
|
|
||||||
|
|
||||||
EXPOSE 3333
|
|
||||||
|
|
||||||
CMD ["pnpm", "start", "--host", "0.0.0.0", "--port", "3333"]
|
|
||||||
|
|||||||
@@ -17,30 +17,18 @@ target "dev" {
|
|||||||
tags = ["moku/work-frontend:dev"]
|
tags = ["moku/work-frontend:dev"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "prod" {
|
|
||||||
inherits = ["_app"]
|
|
||||||
target = "production"
|
|
||||||
tags = ["moku/work-frontend:prod"]
|
|
||||||
}
|
|
||||||
|
|
||||||
target "dev-image" {
|
target "dev-image" {
|
||||||
inherits = ["_app"]
|
inherits = ["_app"]
|
||||||
target = "development"
|
target = "development"
|
||||||
tags = ["${REGISTRY}/moku/work-frontend:dev-${TAG}"]
|
tags = ["${REGISTRY}/moku/work-frontend:dev-${TAG}"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "prod-image" {
|
|
||||||
inherits = ["_app"]
|
|
||||||
target = "production"
|
|
||||||
tags = ["${REGISTRY}/moku/work-frontend:prod-${TAG}"]
|
|
||||||
}
|
|
||||||
|
|
||||||
group "local" {
|
group "local" {
|
||||||
targets = ["dev", "prod"]
|
targets = ["dev"]
|
||||||
}
|
}
|
||||||
|
|
||||||
group "registry" {
|
group "registry" {
|
||||||
targets = ["dev-image", "prod-image"]
|
targets = ["dev-image"]
|
||||||
}
|
}
|
||||||
|
|
||||||
group "default" {
|
group "default" {
|
||||||
|
|||||||
@@ -11,18 +11,22 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"start": "vite start",
|
"build:static": "pnpm build && node ./scripts/render-static-index.mjs",
|
||||||
|
"typecheck": "tsc --noEmit",
|
||||||
|
"start": "vite preview",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@solidjs/start": "2.0.0-alpha.2",
|
"@solidjs/start": "2.0.0-alpha.2",
|
||||||
"@solidjs/vite-plugin-nitro-2": "^0.1.0",
|
"@solidjs/vite-plugin-nitro-2": "^0.1.0",
|
||||||
|
"lucide-solid": "^0.542.0",
|
||||||
"postcss": "^8.5.15",
|
"postcss": "^8.5.15",
|
||||||
"sass": "^1.101.0",
|
"sass": "^1.101.0",
|
||||||
"solid-js": "^1.9.5",
|
"solid-js": "^1.9.5",
|
||||||
"vite": "^7.0.0"
|
"vite": "^7.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@types/node": "^25.9.3",
|
||||||
"autoprefixer": "^10.5.0",
|
"autoprefixer": "^10.5.0",
|
||||||
"cssnano": "^8.0.2",
|
"cssnano": "^8.0.2",
|
||||||
"postcss-preset-env": "^11.3.0",
|
"postcss-preset-env": "^11.3.0",
|
||||||
|
|||||||
Generated
+47
-19
@@ -10,10 +10,13 @@ importers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@solidjs/start':
|
'@solidjs/start':
|
||||||
specifier: 2.0.0-alpha.2
|
specifier: 2.0.0-alpha.2
|
||||||
version: 2.0.0-alpha.2(crossws@0.4.4(srvx@0.11.8))(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
version: 2.0.0-alpha.2(crossws@0.4.4(srvx@0.11.8))(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
||||||
'@solidjs/vite-plugin-nitro-2':
|
'@solidjs/vite-plugin-nitro-2':
|
||||||
specifier: ^0.1.0
|
specifier: ^0.1.0
|
||||||
version: 0.1.0(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
version: 0.1.0(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
||||||
|
lucide-solid:
|
||||||
|
specifier: ^0.542.0
|
||||||
|
version: 0.542.0(solid-js@1.9.11)
|
||||||
postcss:
|
postcss:
|
||||||
specifier: ^8.5.15
|
specifier: ^8.5.15
|
||||||
version: 8.5.15
|
version: 8.5.15
|
||||||
@@ -25,8 +28,11 @@ importers:
|
|||||||
version: 1.9.11
|
version: 1.9.11
|
||||||
vite:
|
vite:
|
||||||
specifier: ^7.0.0
|
specifier: ^7.0.0
|
||||||
version: 7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
version: 7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
||||||
devDependencies:
|
devDependencies:
|
||||||
|
'@types/node':
|
||||||
|
specifier: ^25.9.3
|
||||||
|
version: 25.9.3
|
||||||
autoprefixer:
|
autoprefixer:
|
||||||
specifier: ^10.5.0
|
specifier: ^10.5.0
|
||||||
version: 10.5.0(postcss@8.5.15)
|
version: 10.5.0(postcss@8.5.15)
|
||||||
@@ -1259,6 +1265,9 @@ packages:
|
|||||||
'@types/micromatch@4.0.10':
|
'@types/micromatch@4.0.10':
|
||||||
resolution: {integrity: sha512-5jOhFDElqr4DKTrTEbnW8DZ4Hz5LRUEmyrGpCMrD/NphYv3nUnaF08xmSLx1rGGnyEs/kFnhiw6dCgcDqMr5PQ==}
|
resolution: {integrity: sha512-5jOhFDElqr4DKTrTEbnW8DZ4Hz5LRUEmyrGpCMrD/NphYv3nUnaF08xmSLx1rGGnyEs/kFnhiw6dCgcDqMr5PQ==}
|
||||||
|
|
||||||
|
'@types/node@25.9.3':
|
||||||
|
resolution: {integrity: sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==}
|
||||||
|
|
||||||
'@types/resolve@1.20.2':
|
'@types/resolve@1.20.2':
|
||||||
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
|
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
|
||||||
|
|
||||||
@@ -2151,6 +2160,11 @@ packages:
|
|||||||
lru-cache@5.1.1:
|
lru-cache@5.1.1:
|
||||||
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
||||||
|
|
||||||
|
lucide-solid@0.542.0:
|
||||||
|
resolution: {integrity: sha512-cMy0fZu9TEEm1IIP3BIXBJd07xJGeAYNebIE1Zti+7cnv1hJcHoNZx4+D2tHZIYKILoSB/Rhs5M0vdKzQTU33g==}
|
||||||
|
peerDependencies:
|
||||||
|
solid-js: ^1.4.7
|
||||||
|
|
||||||
magic-string@0.30.21:
|
magic-string@0.30.21:
|
||||||
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
||||||
|
|
||||||
@@ -3209,6 +3223,9 @@ packages:
|
|||||||
unctx@2.5.0:
|
unctx@2.5.0:
|
||||||
resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
|
resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==}
|
||||||
|
|
||||||
|
undici-types@7.24.6:
|
||||||
|
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
||||||
|
|
||||||
unenv@2.0.0-rc.24:
|
unenv@2.0.0-rc.24:
|
||||||
resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==}
|
resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==}
|
||||||
|
|
||||||
@@ -4468,13 +4485,13 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
solid-js: 1.9.11
|
solid-js: 1.9.11
|
||||||
|
|
||||||
'@solidjs/start@2.0.0-alpha.2(crossws@0.4.4(srvx@0.11.8))(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
'@solidjs/start@2.0.0-alpha.2(crossws@0.4.4(srvx@0.11.8))(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
'@babel/traverse': 7.29.0
|
'@babel/traverse': 7.29.0
|
||||||
'@babel/types': 7.29.0
|
'@babel/types': 7.29.0
|
||||||
'@solidjs/meta': 0.29.4(solid-js@1.9.11)
|
'@solidjs/meta': 0.29.4(solid-js@1.9.11)
|
||||||
'@tanstack/server-functions-plugin': 1.134.5(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
'@tanstack/server-functions-plugin': 1.134.5(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
||||||
'@types/babel__traverse': 7.28.0
|
'@types/babel__traverse': 7.28.0
|
||||||
'@types/micromatch': 4.0.10
|
'@types/micromatch': 4.0.10
|
||||||
cookie-es: 2.0.0
|
cookie-es: 2.0.0
|
||||||
@@ -4496,17 +4513,17 @@ snapshots:
|
|||||||
source-map-js: 1.2.1
|
source-map-js: 1.2.1
|
||||||
srvx: 0.9.8
|
srvx: 0.9.8
|
||||||
terracotta: 1.1.0(solid-js@1.9.11)
|
terracotta: 1.1.0(solid-js@1.9.11)
|
||||||
vite: 7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
vite: 7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
||||||
vite-plugin-solid: 2.11.10(solid-js@1.9.11)(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
vite-plugin-solid: 2.11.10(solid-js@1.9.11)(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@testing-library/jest-dom'
|
- '@testing-library/jest-dom'
|
||||||
- crossws
|
- crossws
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@solidjs/vite-plugin-nitro-2@0.1.0(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
'@solidjs/vite-plugin-nitro-2@0.1.0(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
nitropack: 2.13.1
|
nitropack: 2.13.1
|
||||||
vite: 7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
vite: 7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@azure/app-configuration'
|
- '@azure/app-configuration'
|
||||||
- '@azure/cosmos'
|
- '@azure/cosmos'
|
||||||
@@ -4541,7 +4558,7 @@ snapshots:
|
|||||||
|
|
||||||
'@speed-highlight/core@1.2.14': {}
|
'@speed-highlight/core@1.2.14': {}
|
||||||
|
|
||||||
'@tanstack/directive-functions-plugin@1.134.5(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
'@tanstack/directive-functions-plugin@1.134.5(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/code-frame': 7.27.1
|
'@babel/code-frame': 7.27.1
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
@@ -4551,7 +4568,7 @@ snapshots:
|
|||||||
babel-dead-code-elimination: 1.0.12
|
babel-dead-code-elimination: 1.0.12
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
tiny-invariant: 1.3.3
|
tiny-invariant: 1.3.3
|
||||||
vite: 7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
vite: 7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
@@ -4568,7 +4585,7 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@tanstack/server-functions-plugin@1.134.5(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
'@tanstack/server-functions-plugin@1.134.5(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/code-frame': 7.27.1
|
'@babel/code-frame': 7.27.1
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
@@ -4577,7 +4594,7 @@ snapshots:
|
|||||||
'@babel/template': 7.28.6
|
'@babel/template': 7.28.6
|
||||||
'@babel/traverse': 7.29.0
|
'@babel/traverse': 7.29.0
|
||||||
'@babel/types': 7.29.0
|
'@babel/types': 7.29.0
|
||||||
'@tanstack/directive-functions-plugin': 1.134.5(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
'@tanstack/directive-functions-plugin': 1.134.5(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
||||||
babel-dead-code-elimination: 1.0.12
|
babel-dead-code-elimination: 1.0.12
|
||||||
tiny-invariant: 1.3.3
|
tiny-invariant: 1.3.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -4621,6 +4638,10 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/braces': 3.0.5
|
'@types/braces': 3.0.5
|
||||||
|
|
||||||
|
'@types/node@25.9.3':
|
||||||
|
dependencies:
|
||||||
|
undici-types: 7.24.6
|
||||||
|
|
||||||
'@types/resolve@1.20.2': {}
|
'@types/resolve@1.20.2': {}
|
||||||
|
|
||||||
'@types/unist@3.0.3': {}
|
'@types/unist@3.0.3': {}
|
||||||
@@ -5522,6 +5543,10 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
yallist: 3.1.1
|
yallist: 3.1.1
|
||||||
|
|
||||||
|
lucide-solid@0.542.0(solid-js@1.9.11):
|
||||||
|
dependencies:
|
||||||
|
solid-js: 1.9.11
|
||||||
|
|
||||||
magic-string@0.30.21:
|
magic-string@0.30.21:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/sourcemap-codec': 1.5.5
|
'@jridgewell/sourcemap-codec': 1.5.5
|
||||||
@@ -6741,6 +6766,8 @@ snapshots:
|
|||||||
magic-string: 0.30.21
|
magic-string: 0.30.21
|
||||||
unplugin: 2.3.11
|
unplugin: 2.3.11
|
||||||
|
|
||||||
|
undici-types@7.24.6: {}
|
||||||
|
|
||||||
unenv@2.0.0-rc.24:
|
unenv@2.0.0-rc.24:
|
||||||
dependencies:
|
dependencies:
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
@@ -6864,7 +6891,7 @@ snapshots:
|
|||||||
'@types/unist': 3.0.3
|
'@types/unist': 3.0.3
|
||||||
vfile-message: 4.0.3
|
vfile-message: 4.0.3
|
||||||
|
|
||||||
vite-plugin-solid@2.11.10(solid-js@1.9.11)(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)):
|
vite-plugin-solid@2.11.10(solid-js@1.9.11)(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.29.0
|
'@babel/core': 7.29.0
|
||||||
'@types/babel__core': 7.20.5
|
'@types/babel__core': 7.20.5
|
||||||
@@ -6872,12 +6899,12 @@ snapshots:
|
|||||||
merge-anything: 5.1.7
|
merge-anything: 5.1.7
|
||||||
solid-js: 1.9.11
|
solid-js: 1.9.11
|
||||||
solid-refresh: 0.6.3(solid-js@1.9.11)
|
solid-refresh: 0.6.3(solid-js@1.9.11)
|
||||||
vite: 7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
vite: 7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
||||||
vitefu: 1.1.2(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
vitefu: 1.1.2(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0):
|
vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild: 0.27.3
|
esbuild: 0.27.3
|
||||||
fdir: 6.5.0(picomatch@4.0.3)
|
fdir: 6.5.0(picomatch@4.0.3)
|
||||||
@@ -6886,15 +6913,16 @@ snapshots:
|
|||||||
rollup: 4.59.0
|
rollup: 4.59.0
|
||||||
tinyglobby: 0.2.15
|
tinyglobby: 0.2.15
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
|
'@types/node': 25.9.3
|
||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
jiti: 2.6.1
|
jiti: 2.6.1
|
||||||
sass: 1.101.0
|
sass: 1.101.0
|
||||||
sass-embedded: 1.100.0
|
sass-embedded: 1.100.0
|
||||||
terser: 5.46.0
|
terser: 5.46.0
|
||||||
|
|
||||||
vitefu@1.1.2(vite@7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)):
|
vitefu@1.1.2(vite@7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)):
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
vite: 7.3.1(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
vite: 7.3.1(@types/node@25.9.3)(jiti@2.6.1)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.46.0)
|
||||||
|
|
||||||
webidl-conversions@3.0.1: {}
|
webidl-conversions@3.0.1: {}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,176 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": "1.0.0",
|
||||||
|
"id": "moku-default",
|
||||||
|
"name": "Moku Default",
|
||||||
|
"description": "Baseline Moku shell tokens for built-in light and dark modes.",
|
||||||
|
"tokens": {
|
||||||
|
"shared": {
|
||||||
|
"palette": {
|
||||||
|
"gray": {
|
||||||
|
"0": "hsl(210 20% 99%)",
|
||||||
|
"50": "hsl(220 20% 97%)",
|
||||||
|
"100": "hsl(220 16% 93%)",
|
||||||
|
"200": "hsl(220 13% 87%)",
|
||||||
|
"300": "hsl(220 11% 75%)",
|
||||||
|
"400": "hsl(220 9% 58%)",
|
||||||
|
"500": "hsl(220 10% 45%)",
|
||||||
|
"600": "hsl(220 14% 34%)",
|
||||||
|
"700": "hsl(220 18% 24%)",
|
||||||
|
"800": "hsl(220 22% 16%)",
|
||||||
|
"900": "hsl(220 28% 10%)"
|
||||||
|
},
|
||||||
|
"blue": {
|
||||||
|
"400": "hsl(218 88% 61%)",
|
||||||
|
"500": "hsl(221 83% 53%)",
|
||||||
|
"600": "hsl(224 76% 48%)"
|
||||||
|
},
|
||||||
|
"green": {
|
||||||
|
"500": "hsl(154 60% 40%)"
|
||||||
|
},
|
||||||
|
"red": {
|
||||||
|
"500": "hsl(0 72% 54%)"
|
||||||
|
},
|
||||||
|
"amber": {
|
||||||
|
"500": "hsl(36 100% 50%)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"space": {
|
||||||
|
"1": "0.25rem",
|
||||||
|
"2": "0.5rem",
|
||||||
|
"3": "0.75rem",
|
||||||
|
"4": "1rem",
|
||||||
|
"5": "1.25rem",
|
||||||
|
"6": "1.5rem",
|
||||||
|
"8": "2rem",
|
||||||
|
"10": "2.5rem",
|
||||||
|
"12": "3rem"
|
||||||
|
},
|
||||||
|
"radius": {
|
||||||
|
"sm": "0.375rem",
|
||||||
|
"md": "0.625rem",
|
||||||
|
"lg": "0.875rem",
|
||||||
|
"xl": "1.25rem",
|
||||||
|
"pill": "999px"
|
||||||
|
},
|
||||||
|
"size": {
|
||||||
|
"controlMd": "2.25rem",
|
||||||
|
"controlLg": "2.5rem",
|
||||||
|
"contentWidthWide": "72rem",
|
||||||
|
"blurOverlay": "18px"
|
||||||
|
},
|
||||||
|
"shadow": {
|
||||||
|
"soft": "0 12px 32px hsl(220 30% 10% / 0.08)",
|
||||||
|
"strong": "0 20px 48px hsl(220 30% 10% / 0.16)"
|
||||||
|
},
|
||||||
|
"zIndex": {
|
||||||
|
"base": "1",
|
||||||
|
"dropdown": "100",
|
||||||
|
"sticky": "200",
|
||||||
|
"overlay": "400",
|
||||||
|
"modal": "500",
|
||||||
|
"toast": "600"
|
||||||
|
},
|
||||||
|
"motion": {
|
||||||
|
"durationFast": "140ms",
|
||||||
|
"durationBase": "220ms",
|
||||||
|
"durationSlow": "320ms",
|
||||||
|
"easeStandard": "cubic-bezier(0.2, 0.8, 0.2, 1)"
|
||||||
|
},
|
||||||
|
"typography": {
|
||||||
|
"fontFamily": {
|
||||||
|
"sans": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"heading": "\"Avenir Next\", \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"display": "\"Avenir Next\", \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"serif": "ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif",
|
||||||
|
"mono": "ui-monospace, \"SF Mono\", \"SFMono-Regular\", Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace"
|
||||||
|
},
|
||||||
|
"fontSize": {
|
||||||
|
"caption": "0.75rem",
|
||||||
|
"label": "0.875rem",
|
||||||
|
"body": "1rem",
|
||||||
|
"title": "clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem)",
|
||||||
|
"heading": "clamp(1.5rem, 1.2rem + 1vw, 2.125rem)",
|
||||||
|
"display": "clamp(2.25rem, 1.7rem + 2.2vw, 3.75rem)"
|
||||||
|
},
|
||||||
|
"lineHeight": {
|
||||||
|
"caption": "1.4",
|
||||||
|
"label": "1.35",
|
||||||
|
"body": "1.55",
|
||||||
|
"title": "1.3",
|
||||||
|
"heading": "1.15",
|
||||||
|
"display": "1.05"
|
||||||
|
},
|
||||||
|
"fontWeight": {
|
||||||
|
"caption": "500",
|
||||||
|
"label": "600",
|
||||||
|
"body": "400",
|
||||||
|
"title": "600",
|
||||||
|
"heading": "600",
|
||||||
|
"display": "700"
|
||||||
|
},
|
||||||
|
"letterSpacing": {
|
||||||
|
"caption": "0.01em",
|
||||||
|
"label": "0.005em",
|
||||||
|
"body": "0",
|
||||||
|
"title": "-0.01em",
|
||||||
|
"heading": "-0.02em",
|
||||||
|
"display": "-0.03em"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"modes": {
|
||||||
|
"light": {
|
||||||
|
"colorScheme": "light",
|
||||||
|
"colors": {
|
||||||
|
"canvas": "var(--gray-50)",
|
||||||
|
"surface": "hsl(0 0% 100% / 0.9)",
|
||||||
|
"surfaceMuted": "var(--gray-0)",
|
||||||
|
"surfaceHover": "var(--gray-100)",
|
||||||
|
"border": "hsl(220 15% 85% / 0.9)",
|
||||||
|
"borderStrong": "hsl(220 12% 70% / 0.9)",
|
||||||
|
"text": "var(--gray-800)",
|
||||||
|
"textMuted": "var(--gray-500)",
|
||||||
|
"accent": "var(--blue-500)",
|
||||||
|
"accentStrong": "var(--blue-600)",
|
||||||
|
"accentSoft": "hsl(218 88% 61% / 0.12)",
|
||||||
|
"accentContrast": "hsl(0 0% 100%)",
|
||||||
|
"primaryOne": "var(--blue-500)",
|
||||||
|
"primaryTwo": "hsl(271 72% 60%)",
|
||||||
|
"primaryThree": "hsl(192 76% 48%)",
|
||||||
|
"success": "var(--green-500)",
|
||||||
|
"danger": "var(--red-500)",
|
||||||
|
"warning": "var(--amber-500)",
|
||||||
|
"focusRing": "hsl(221 83% 53% / 0.55)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dark": {
|
||||||
|
"colorScheme": "dark",
|
||||||
|
"colors": {
|
||||||
|
"canvas": "var(--gray-900)",
|
||||||
|
"surface": "hsl(220 23% 14% / 0.92)",
|
||||||
|
"surfaceMuted": "hsl(220 22% 12% / 0.96)",
|
||||||
|
"surfaceHover": "hsl(220 18% 20% / 0.96)",
|
||||||
|
"border": "hsl(220 12% 26% / 0.9)",
|
||||||
|
"borderStrong": "hsl(220 12% 38% / 0.9)",
|
||||||
|
"text": "hsl(210 20% 96%)",
|
||||||
|
"textMuted": "hsl(220 12% 70%)",
|
||||||
|
"accent": "hsl(217 91% 67%)",
|
||||||
|
"accentStrong": "hsl(218 88% 61%)",
|
||||||
|
"accentSoft": "hsl(217 91% 67% / 0.18)",
|
||||||
|
"accentContrast": "hsl(220 28% 10%)",
|
||||||
|
"primaryOne": "hsl(217 91% 67%)",
|
||||||
|
"primaryTwo": "hsl(272 80% 70%)",
|
||||||
|
"primaryThree": "hsl(190 84% 62%)",
|
||||||
|
"success": "hsl(154 55% 48%)",
|
||||||
|
"danger": "hsl(0 72% 62%)",
|
||||||
|
"warning": "hsl(36 100% 60%)",
|
||||||
|
"focusRing": "hsl(217 91% 67% / 0.65)"
|
||||||
|
},
|
||||||
|
"shadow": {
|
||||||
|
"soft": "0 16px 40px hsl(220 40% 3% / 0.45)",
|
||||||
|
"strong": "0 24px 60px hsl(220 40% 3% / 0.55)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,177 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": "1.0.0",
|
||||||
|
"id": "moku-midnight",
|
||||||
|
"name": "Moku Midnight",
|
||||||
|
"description": "A warm, low-light Moku theme inspired by the mood and palette direction of refact0r's Midnight Discord theme, adapted to Moku's token schema.",
|
||||||
|
"author": "Moku Work",
|
||||||
|
"tokens": {
|
||||||
|
"shared": {
|
||||||
|
"palette": {
|
||||||
|
"gray": {
|
||||||
|
"0": "#f9f5d7",
|
||||||
|
"50": "#fbf1c7",
|
||||||
|
"100": "#ebdbb2",
|
||||||
|
"200": "#d5c4a1",
|
||||||
|
"300": "#bdae93",
|
||||||
|
"400": "#a89984",
|
||||||
|
"500": "#928374",
|
||||||
|
"600": "#7c6f64",
|
||||||
|
"700": "#665c54",
|
||||||
|
"800": "#3c3836",
|
||||||
|
"900": "#282828"
|
||||||
|
},
|
||||||
|
"blue": {
|
||||||
|
"400": "hsl(167 24% 68%)",
|
||||||
|
"500": "#7caea3",
|
||||||
|
"600": "hsl(167 24% 48%)"
|
||||||
|
},
|
||||||
|
"green": {
|
||||||
|
"500": "#a8b665"
|
||||||
|
},
|
||||||
|
"red": {
|
||||||
|
"500": "#ea6962"
|
||||||
|
},
|
||||||
|
"amber": {
|
||||||
|
"500": "#d8a656"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"space": {
|
||||||
|
"1": "0.25rem",
|
||||||
|
"2": "0.5rem",
|
||||||
|
"3": "0.75rem",
|
||||||
|
"4": "1rem",
|
||||||
|
"5": "1.25rem",
|
||||||
|
"6": "1.5rem",
|
||||||
|
"8": "2rem",
|
||||||
|
"10": "2.5rem",
|
||||||
|
"12": "3rem"
|
||||||
|
},
|
||||||
|
"radius": {
|
||||||
|
"sm": "0.375rem",
|
||||||
|
"md": "0.625rem",
|
||||||
|
"lg": "0.875rem",
|
||||||
|
"xl": "1.25rem",
|
||||||
|
"pill": "999px"
|
||||||
|
},
|
||||||
|
"size": {
|
||||||
|
"controlMd": "2.25rem",
|
||||||
|
"controlLg": "2.5rem",
|
||||||
|
"contentWidthWide": "72rem",
|
||||||
|
"blurOverlay": "18px"
|
||||||
|
},
|
||||||
|
"shadow": {
|
||||||
|
"soft": "0 12px 28px hsl(28 16% 12% / 0.08)",
|
||||||
|
"strong": "0 18px 40px hsl(28 18% 10% / 0.14)"
|
||||||
|
},
|
||||||
|
"zIndex": {
|
||||||
|
"base": "1",
|
||||||
|
"dropdown": "100",
|
||||||
|
"sticky": "200",
|
||||||
|
"overlay": "400",
|
||||||
|
"modal": "500",
|
||||||
|
"toast": "600"
|
||||||
|
},
|
||||||
|
"motion": {
|
||||||
|
"durationFast": "140ms",
|
||||||
|
"durationBase": "220ms",
|
||||||
|
"durationSlow": "320ms",
|
||||||
|
"easeStandard": "cubic-bezier(0.2, 0.8, 0.2, 1)"
|
||||||
|
},
|
||||||
|
"typography": {
|
||||||
|
"fontFamily": {
|
||||||
|
"sans": "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"heading": "Inter, \"Avenir Next\", \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"display": "Inter, \"Avenir Next\", \"Segoe UI\", \"Helvetica Neue\", Arial, sans-serif",
|
||||||
|
"serif": "ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif",
|
||||||
|
"mono": "ui-monospace, \"SF Mono\", \"SFMono-Regular\", Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace"
|
||||||
|
},
|
||||||
|
"fontSize": {
|
||||||
|
"caption": "0.75rem",
|
||||||
|
"label": "0.875rem",
|
||||||
|
"body": "1rem",
|
||||||
|
"title": "clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem)",
|
||||||
|
"heading": "clamp(1.5rem, 1.2rem + 1vw, 2.125rem)",
|
||||||
|
"display": "clamp(2.25rem, 1.7rem + 2.2vw, 3.75rem)"
|
||||||
|
},
|
||||||
|
"lineHeight": {
|
||||||
|
"caption": "1.4",
|
||||||
|
"label": "1.35",
|
||||||
|
"body": "1.55",
|
||||||
|
"title": "1.3",
|
||||||
|
"heading": "1.15",
|
||||||
|
"display": "1.05"
|
||||||
|
},
|
||||||
|
"fontWeight": {
|
||||||
|
"caption": "500",
|
||||||
|
"label": "600",
|
||||||
|
"body": "400",
|
||||||
|
"title": "600",
|
||||||
|
"heading": "600",
|
||||||
|
"display": "700"
|
||||||
|
},
|
||||||
|
"letterSpacing": {
|
||||||
|
"caption": "0.01em",
|
||||||
|
"label": "0.005em",
|
||||||
|
"body": "0",
|
||||||
|
"title": "-0.01em",
|
||||||
|
"heading": "-0.02em",
|
||||||
|
"display": "-0.03em"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"modes": {
|
||||||
|
"light": {
|
||||||
|
"colorScheme": "light",
|
||||||
|
"colors": {
|
||||||
|
"canvas": "hsl(38 24% 97%)",
|
||||||
|
"surface": "hsl(36 22% 99% / 0.94)",
|
||||||
|
"surfaceMuted": "hsl(36 20% 96%)",
|
||||||
|
"surfaceHover": "hsl(34 18% 93%)",
|
||||||
|
"border": "hsl(30 14% 76% / 0.72)",
|
||||||
|
"borderStrong": "hsl(28 16% 60% / 0.82)",
|
||||||
|
"text": "hsl(22 16% 22%)",
|
||||||
|
"textMuted": "hsl(28 10% 42%)",
|
||||||
|
"accent": "#d3869b",
|
||||||
|
"accentStrong": "hsl(344 47% 56%)",
|
||||||
|
"accentSoft": "hsl(344 47% 70% / 0.12)",
|
||||||
|
"accentContrast": "var(--gray-0)",
|
||||||
|
"primaryOne": "#7caea3",
|
||||||
|
"primaryTwo": "#d3869b",
|
||||||
|
"primaryThree": "#d8a656",
|
||||||
|
"success": "#a8b665",
|
||||||
|
"danger": "#ea6962",
|
||||||
|
"warning": "#d8a656",
|
||||||
|
"focusRing": "hsl(344 47% 56% / 0.28)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dark": {
|
||||||
|
"colorScheme": "dark",
|
||||||
|
"colors": {
|
||||||
|
"canvas": "var(--gray-900)",
|
||||||
|
"surface": "hsl(20 8% 16% / 0.94)",
|
||||||
|
"surfaceMuted": "var(--gray-800)",
|
||||||
|
"surfaceHover": "hsl(22 9% 24% / 0.96)",
|
||||||
|
"border": "hsl(20 10% 30% / 0.72)",
|
||||||
|
"borderStrong": "hsl(30 14% 55% / 0.62)",
|
||||||
|
"text": "#d4be98",
|
||||||
|
"textMuted": "#a79a83",
|
||||||
|
"accent": "#d3869b",
|
||||||
|
"accentStrong": "hsl(344 47% 63%)",
|
||||||
|
"accentSoft": "hsl(344 47% 63% / 0.18)",
|
||||||
|
"accentContrast": "var(--gray-900)",
|
||||||
|
"primaryOne": "#7caea3",
|
||||||
|
"primaryTwo": "#d3869b",
|
||||||
|
"primaryThree": "#d8a656",
|
||||||
|
"success": "#a8b665",
|
||||||
|
"danger": "#ea6962",
|
||||||
|
"warning": "#d8a656",
|
||||||
|
"focusRing": "hsl(344 47% 63% / 0.45)"
|
||||||
|
},
|
||||||
|
"shadow": {
|
||||||
|
"soft": "0 14px 32px hsl(20 16% 3% / 0.28)",
|
||||||
|
"strong": "0 20px 48px hsl(20 16% 2% / 0.38)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
import { mkdir, readFile, writeFile } from "node:fs/promises";
|
||||||
|
import { dirname, resolve } from "node:path";
|
||||||
|
|
||||||
|
const manifestPath = resolve("dist/client/.vite/manifest.json");
|
||||||
|
const outputPath = resolve("dist/client/index.html");
|
||||||
|
|
||||||
|
const themeBootstrapScript = `
|
||||||
|
(() => {
|
||||||
|
try {
|
||||||
|
const storageKey = "theme";
|
||||||
|
const stored = localStorage.getItem(storageKey);
|
||||||
|
const theme = stored === "light" || stored === "dark"
|
||||||
|
? stored
|
||||||
|
: (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
|
||||||
|
|
||||||
|
document.documentElement.setAttribute("data-theme", theme);
|
||||||
|
} catch {
|
||||||
|
document.documentElement.setAttribute("data-theme", "light");
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
`.trim();
|
||||||
|
|
||||||
|
const manifest = JSON.parse(await readFile(manifestPath, "utf8"));
|
||||||
|
const entry = manifest["src/entry-client.tsx"];
|
||||||
|
|
||||||
|
if (!entry?.file) {
|
||||||
|
throw new Error("Could not find src/entry-client.tsx in the client manifest.");
|
||||||
|
}
|
||||||
|
|
||||||
|
const cssLinks = Array.isArray(entry.css) ? entry.css.map((href) => ` <link rel="stylesheet" href="/${href}">`).join("\n") : "";
|
||||||
|
|
||||||
|
const html = `<!doctype html>
|
||||||
|
<html lang="en" data-theme="light">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="icon" href="/favicon.ico">
|
||||||
|
<script>${themeBootstrapScript}</script>
|
||||||
|
${cssLinks}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/${entry.file}"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
`;
|
||||||
|
|
||||||
|
await mkdir(dirname(outputPath), { recursive: true });
|
||||||
|
await writeFile(outputPath, html, "utf8");
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
// Path: Frontend/src/app.tsx
|
// Path: Frontend/src/app.tsx
|
||||||
|
|
||||||
|
import type { JSX } from "solid-js";
|
||||||
|
import { AppShell } from "./components/app-shell/AppShell/AppShell";
|
||||||
import "./styles/main.scss";
|
import "./styles/main.scss";
|
||||||
|
import "./styles/user-overrides.scss";
|
||||||
|
|
||||||
export default function App() {
|
const App = (): JSX.Element => {
|
||||||
return <main />;
|
return <AppShell />;
|
||||||
}
|
};
|
||||||
|
|
||||||
|
export default App;
|
||||||
|
|||||||
@@ -0,0 +1,248 @@
|
|||||||
|
.shell {
|
||||||
|
height: 100dvh;
|
||||||
|
min-height: 100dvh;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto minmax(0, 1fr);
|
||||||
|
background: var(--color-canvas);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.body {
|
||||||
|
--shell-dock-clearance: calc(var(--space-12) + var(--space-12) + var(--space-8));
|
||||||
|
--rail-width: 4.75rem;
|
||||||
|
--sidebar-width: 16.75rem;
|
||||||
|
--mobile-bottom-nav-clearance: 0rem;
|
||||||
|
--shell-top-left-radius: calc(var(--radius-xl) + var(--space-1));
|
||||||
|
--shell-frame-border: color-mix(in srgb, var(--color-border-strong) 44%, transparent);
|
||||||
|
--shell-divider-border: color-mix(in srgb, var(--color-border-strong) 34%, transparent);
|
||||||
|
--sidebar-panel-surface: color-mix(in srgb, var(--color-surface-muted) 92%, transparent);
|
||||||
|
--workspace-panel-surface: color-mix(in srgb, var(--color-canvas) 94%, var(--color-surface));
|
||||||
|
position: relative;
|
||||||
|
min-height: 0;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: var(--rail-width) minmax(0, 1fr);
|
||||||
|
overflow: hidden;
|
||||||
|
background: var(--color-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodyRailCollapsed {
|
||||||
|
--rail-width: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed {
|
||||||
|
--sidebar-width: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.railColumn {
|
||||||
|
min-height: 0;
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
z-index: 6;
|
||||||
|
isolation: isolate;
|
||||||
|
overflow: visible;
|
||||||
|
background: var(--color-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceRegion {
|
||||||
|
position: relative;
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 0;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
|
||||||
|
overflow: visible;
|
||||||
|
z-index: 1;
|
||||||
|
isolation: isolate;
|
||||||
|
border-top-left-radius: var(--shell-top-left-radius);
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceRegion::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background:
|
||||||
|
linear-gradient(
|
||||||
|
to right,
|
||||||
|
var(--sidebar-panel-surface) 0,
|
||||||
|
var(--sidebar-panel-surface) calc(var(--sidebar-width) - 0.5px),
|
||||||
|
var(--workspace-panel-surface) calc(var(--sidebar-width) - 0.5px),
|
||||||
|
var(--workspace-panel-surface) 100%
|
||||||
|
);
|
||||||
|
border: 1px solid var(--shell-frame-border);
|
||||||
|
border-top: 0;
|
||||||
|
border-top-left-radius: var(--shell-top-left-radius);
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
box-shadow: inset 0 1px 0 color-mix(in srgb, white 3%, transparent);
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebarColumn {
|
||||||
|
position: relative;
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 0;
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: minmax(0, 1fr);
|
||||||
|
overflow: visible;
|
||||||
|
z-index: 1;
|
||||||
|
background: var(--sidebar-panel-surface);
|
||||||
|
border-top: 1px solid var(--shell-frame-border);
|
||||||
|
border-left: 1px solid var(--shell-frame-border);
|
||||||
|
border-top-left-radius: var(--shell-top-left-radius);
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceMain {
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 0;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
border-top: 1px solid var(--shell-frame-border);
|
||||||
|
border-left: 1px solid var(--shell-divider-border);
|
||||||
|
background: var(--workspace-panel-surface);
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobileWorkspaceView {
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 0;
|
||||||
|
height: 100%;
|
||||||
|
display: grid;
|
||||||
|
box-sizing: border-box;
|
||||||
|
overflow: hidden;
|
||||||
|
background: var(--workspace-panel-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebarDock {
|
||||||
|
position: absolute;
|
||||||
|
bottom: var(--space-3);
|
||||||
|
left: calc(var(--space-1) + (var(--rail-width) * 0.1));
|
||||||
|
width: max(12rem, calc(var(--sidebar-width) + (var(--rail-width) * 0.9) - var(--space-2)));
|
||||||
|
right: auto;
|
||||||
|
z-index: calc(var(--z-modal) + 1);
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
|
> * {
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-up(mobile) {
|
||||||
|
.body {
|
||||||
|
--rail-width: 5rem;
|
||||||
|
--sidebar-width: 17.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodyRailCollapsed {
|
||||||
|
--rail-width: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed {
|
||||||
|
--sidebar-width: 0rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-down(tablet) {
|
||||||
|
.body {
|
||||||
|
--rail-width: 4.5rem;
|
||||||
|
--sidebar-width: 13.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodyRailCollapsed {
|
||||||
|
--rail-width: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed {
|
||||||
|
--sidebar-width: 0rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodyRailCollapsed .railColumn {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed .railColumn {
|
||||||
|
--rail-dock-clearance: 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed:not(.bodyRailCollapsed) .railColumn {
|
||||||
|
--rail-bottom-offset: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed .sidebarColumn {
|
||||||
|
--sidebar-dock-clearance: 0rem;
|
||||||
|
display: none;
|
||||||
|
overflow: hidden;
|
||||||
|
border-left-width: 0;
|
||||||
|
border-top-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed .workspaceRegion {
|
||||||
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed .workspaceMain {
|
||||||
|
border-left-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed:not(.bodyRailCollapsed) .workspaceMain {
|
||||||
|
border-top-width: 1px;
|
||||||
|
border-top-color: var(--shell-frame-border);
|
||||||
|
border-left-color: var(--shell-frame-border);
|
||||||
|
border-top-left-radius: var(--shell-top-left-radius);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed:not(.bodyRailCollapsed) .workspaceRegion::before {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bodySidebarCollapsed .sidebarDock {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-down(mobile) {
|
||||||
|
.body {
|
||||||
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
--rail-width: 0rem;
|
||||||
|
--sidebar-width: 0rem;
|
||||||
|
--mobile-bottom-nav-clearance: calc(var(--space-12) + var(--space-10) + env(safe-area-inset-bottom, 0px));
|
||||||
|
}
|
||||||
|
|
||||||
|
.railColumn {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceRegion {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceRegion::before {
|
||||||
|
background: var(--workspace-panel-surface);
|
||||||
|
border-left-width: 0;
|
||||||
|
border-right-width: 0;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebarColumn,
|
||||||
|
.sidebarDock {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceMain {
|
||||||
|
border-left-width: 0;
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding-bottom: var(--mobile-bottom-nav-clearance);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mobileWorkspaceView {
|
||||||
|
height: 100%;
|
||||||
|
max-height: none;
|
||||||
|
padding-bottom: 0;
|
||||||
|
background: var(--workspace-panel-surface);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,184 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/AppShell/AppShell.tsx
|
||||||
|
|
||||||
|
import { createSignal, onCleanup, onMount, Show, type JSX } from "solid-js";
|
||||||
|
import { getDocumentTheme, setTheme, type Theme } from "../../../helper/themeRuntime";
|
||||||
|
import { BootstrapWizard } from "../../bootstrap/BootstrapWizard/BootstrapWizard";
|
||||||
|
import { WorkspaceHome } from "../../workspace-home/WorkspaceHome";
|
||||||
|
import { AppShellDataProvider, useAppShellData } from "../data/app-shell.context";
|
||||||
|
import { LeftRail } from "../../workspace-navigation/LeftRail/LeftRail";
|
||||||
|
import { MobileBottomNav } from "../MobileBottomNav/MobileBottomNav";
|
||||||
|
import { MobileWorkspaceBrowser } from "../../workspace-navigation/MobileWorkspaceBrowser/MobileWorkspaceBrowser";
|
||||||
|
import { ServerDock } from "../ServerDock/ServerDock";
|
||||||
|
import { NotificationsMenu } from "../../top-bar/TopBar/NotificationsMenu";
|
||||||
|
import { ProfileMenu } from "../../top-bar/TopBar/ProfileMenu";
|
||||||
|
import { TopBar } from "../../top-bar/TopBar/TopBar";
|
||||||
|
import { WorkspaceTopBar } from "../../workspace-navigation/WorkspaceTopBar/WorkspaceTopBar";
|
||||||
|
import { WorkspaceSidebar } from "../../workspace-navigation/WorkspaceSidebar/WorkspaceSidebar";
|
||||||
|
import styles from "./AppShell.module.scss";
|
||||||
|
|
||||||
|
type MobileWorkspaceView = "notifications" | "profile" | null;
|
||||||
|
const MOBILE_VIEWPORT_QUERY = "(max-width: 48rem)";
|
||||||
|
|
||||||
|
const AppShellContent = (): JSX.Element => {
|
||||||
|
const [themeState, setThemeState] = createSignal<Theme>("light");
|
||||||
|
const [isRailCollapsed, setIsRailCollapsed] = createSignal(false);
|
||||||
|
const [isSidebarCollapsed, setIsSidebarCollapsed] = createSignal(false);
|
||||||
|
const [isMobileViewport, setIsMobileViewport] = createSignal(false);
|
||||||
|
const [isMobileWorkspaceBrowserOpen, setIsMobileWorkspaceBrowserOpen] = createSignal(false);
|
||||||
|
const [activeMobileWorkspaceView, setActiveMobileWorkspaceView] = createSignal<MobileWorkspaceView>(null);
|
||||||
|
const appShellData = useAppShellData();
|
||||||
|
|
||||||
|
onMount((): void => {
|
||||||
|
setThemeState(getDocumentTheme());
|
||||||
|
|
||||||
|
if (typeof window === "undefined" || typeof window.matchMedia !== "function") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const mediaQuery = window.matchMedia(MOBILE_VIEWPORT_QUERY);
|
||||||
|
const syncMobileViewport = (): void => {
|
||||||
|
setIsMobileViewport(mediaQuery.matches);
|
||||||
|
|
||||||
|
if (!mediaQuery.matches) {
|
||||||
|
setIsMobileWorkspaceBrowserOpen(false);
|
||||||
|
setActiveMobileWorkspaceView(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
syncMobileViewport();
|
||||||
|
mediaQuery.addEventListener("change", syncMobileViewport);
|
||||||
|
|
||||||
|
onCleanup(() => {
|
||||||
|
mediaQuery.removeEventListener("change", syncMobileViewport);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const toggleTheme = (): void => {
|
||||||
|
const next: Theme = themeState() === "dark" ? "light" : "dark";
|
||||||
|
|
||||||
|
setTheme(next);
|
||||||
|
setThemeState(next);
|
||||||
|
};
|
||||||
|
|
||||||
|
const openMobileWorkspaceView = (view: Exclude<MobileWorkspaceView, null>): void => {
|
||||||
|
setIsMobileWorkspaceBrowserOpen(false);
|
||||||
|
setActiveMobileWorkspaceView((current) => (current === view ? null : view));
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleMobileWorkspaceBrowser = (): void => {
|
||||||
|
setActiveMobileWorkspaceView(null);
|
||||||
|
setIsMobileWorkspaceBrowserOpen((open) => !open);
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleMobileNotifications = (): void => {
|
||||||
|
openMobileWorkspaceView("notifications");
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleMobileProfile = (): void => {
|
||||||
|
openMobileWorkspaceView("profile");
|
||||||
|
};
|
||||||
|
|
||||||
|
const closeMobileWorkspaceView = (): void => {
|
||||||
|
setActiveMobileWorkspaceView(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const workspaceBreadcrumb = (): string => `${appShellData.activeServer().name} / ${appShellData.activeProject().name} / Home`;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div class={styles.shell} data-ui="app-shell" data-app-shell-status={appShellData.status()}>
|
||||||
|
<TopBar
|
||||||
|
theme={themeState()}
|
||||||
|
onToggleTheme={toggleTheme}
|
||||||
|
isMobileViewport={isMobileViewport()}
|
||||||
|
isNotificationsOpen={activeMobileWorkspaceView() === "notifications"}
|
||||||
|
isProfileOpen={activeMobileWorkspaceView() === "profile"}
|
||||||
|
onToggleNotifications={toggleMobileNotifications}
|
||||||
|
onToggleProfile={toggleMobileProfile}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div
|
||||||
|
classList={{
|
||||||
|
[styles.body]: true,
|
||||||
|
[styles.bodyRailCollapsed]: isRailCollapsed(),
|
||||||
|
[styles.bodySidebarCollapsed]: isSidebarCollapsed(),
|
||||||
|
}}
|
||||||
|
data-slot="shell-body"
|
||||||
|
data-rail-collapsed={isRailCollapsed() ? "true" : "false"}
|
||||||
|
data-sidebar-collapsed={isSidebarCollapsed() ? "true" : "false"}
|
||||||
|
>
|
||||||
|
{/* Left server rail */}
|
||||||
|
<div class={styles.railColumn} data-slot="rail-column">
|
||||||
|
<LeftRail collapsed={isRailCollapsed()} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Sidebar + main workspace frame */}
|
||||||
|
<div class={styles.workspaceRegion} data-slot="workspace-region">
|
||||||
|
<div class={styles.sidebarColumn} data-slot="sidebar-column">
|
||||||
|
<WorkspaceSidebar
|
||||||
|
collapsed={isSidebarCollapsed()}
|
||||||
|
railCollapsed={isRailCollapsed()}
|
||||||
|
onToggleRailCollapse={(): void => {
|
||||||
|
setIsRailCollapsed((collapsed) => !collapsed);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class={styles.workspaceMain} data-slot="workspace-main">
|
||||||
|
{/* On mobile, top-bar menus become full workspace views instead of popovers. */}
|
||||||
|
<Show
|
||||||
|
when={isMobileViewport() && activeMobileWorkspaceView() !== null}
|
||||||
|
fallback={
|
||||||
|
<>
|
||||||
|
<WorkspaceTopBar
|
||||||
|
sidebarCollapsed={isSidebarCollapsed()}
|
||||||
|
breadcrumb={workspaceBreadcrumb()}
|
||||||
|
onToggleSidebarCollapse={(): void => {
|
||||||
|
setIsSidebarCollapsed((collapsed) => !collapsed);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<WorkspaceHome />
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<div class={styles.mobileWorkspaceView} data-slot="mobile-workspace-view" data-view={activeMobileWorkspaceView() ?? undefined}>
|
||||||
|
<Show when={activeMobileWorkspaceView() === "notifications"}>
|
||||||
|
<NotificationsMenu id="mobile-workspace-notifications" onSelect={closeMobileWorkspaceView} variant="workspace" />
|
||||||
|
</Show>
|
||||||
|
<Show when={activeMobileWorkspaceView() === "profile"}>
|
||||||
|
<ProfileMenu id="mobile-workspace-profile" onSelect={closeMobileWorkspaceView} variant="workspace" />
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Floating server dock overlay */}
|
||||||
|
<div class={styles.sidebarDock} data-slot="sidebar-dock">
|
||||||
|
<ServerDock />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<MobileBottomNav
|
||||||
|
isBrowseOpen={isMobileWorkspaceBrowserOpen()}
|
||||||
|
onBrowseToggle={(): void => {
|
||||||
|
toggleMobileWorkspaceBrowser();
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<MobileWorkspaceBrowser
|
||||||
|
open={isMobileWorkspaceBrowserOpen()}
|
||||||
|
onClose={(): void => {
|
||||||
|
setIsMobileWorkspaceBrowserOpen(false);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<BootstrapWizard />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const AppShell = (): JSX.Element => {
|
||||||
|
return (
|
||||||
|
<AppShellDataProvider>
|
||||||
|
<AppShellContent />
|
||||||
|
</AppShellDataProvider>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
.mobileNav {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-down(mobile) {
|
||||||
|
.mobileNav {
|
||||||
|
--mobile-nav-button-gap: var(--space-1);
|
||||||
|
--mobile-nav-button-padding-inline: var(--space-2);
|
||||||
|
--mobile-nav-button-padding-top: calc(var(--space-2) + (var(--space-1) / 2));
|
||||||
|
--mobile-nav-button-padding-bottom: var(--space-2);
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
|
||||||
|
background:
|
||||||
|
linear-gradient(to top, color-mix(in srgb, var(--color-canvas) 98%, transparent), color-mix(in srgb, var(--color-canvas) 92%, transparent));
|
||||||
|
border-top: 1px solid color-mix(in srgb, var(--color-border-strong) 40%, transparent);
|
||||||
|
backdrop-filter: blur(var(--blur-overlay));
|
||||||
|
z-index: var(--z-sticky);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextBar {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
min-width: 0;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextServer,
|
||||||
|
.contextProject {
|
||||||
|
@include text-caption;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextServer {
|
||||||
|
max-width: 45vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextProject {
|
||||||
|
max-width: 30vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contextDivider {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-subtle);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navGrid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navButton {
|
||||||
|
min-width: 0;
|
||||||
|
display: grid;
|
||||||
|
justify-items: center;
|
||||||
|
gap: var(--mobile-nav-button-gap);
|
||||||
|
padding: var(--mobile-nav-button-padding-top) var(--mobile-nav-button-padding-inline) var(--mobile-nav-button-padding-bottom);
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: var(--radius-xl);
|
||||||
|
background: transparent;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
transition:
|
||||||
|
background 160ms var(--easing-standard),
|
||||||
|
color 160ms var(--easing-standard),
|
||||||
|
border-color 160ms var(--easing-standard),
|
||||||
|
transform 180ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navButton:hover,
|
||||||
|
.navButton:focus-visible {
|
||||||
|
color: var(--color-text);
|
||||||
|
background: color-mix(in srgb, var(--color-surface) 82%, transparent);
|
||||||
|
border-color: color-mix(in srgb, var(--color-border-strong) 28%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navButton:active {
|
||||||
|
transform: translateY(calc(var(--space-1) / 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
.navButtonActive {
|
||||||
|
color: var(--color-text);
|
||||||
|
background: color-mix(in srgb, var(--color-surface) 90%, transparent);
|
||||||
|
border-color: color-mix(in srgb, var(--color-border-strong) 34%, transparent);
|
||||||
|
box-shadow: var(--shadow-soft);
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconWrap {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
@include text-caption;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/MobileBottomNav/MobileBottomNav.tsx
|
||||||
|
|
||||||
|
import { For, type JSX } from "solid-js";
|
||||||
|
import { useAppShellData } from "../data/app-shell.context";
|
||||||
|
import { mobileBottomNavItems, type MobileBottomNavItem } from "../data/shell.data";
|
||||||
|
import styles from "./MobileBottomNav.module.scss";
|
||||||
|
|
||||||
|
type MobileBottomNavProps = {
|
||||||
|
isBrowseOpen: boolean;
|
||||||
|
onBrowseToggle: VoidFunction;
|
||||||
|
};
|
||||||
|
|
||||||
|
const MobileNavEntry = (props: {
|
||||||
|
item: MobileBottomNavItem;
|
||||||
|
isActive: boolean;
|
||||||
|
onSelect?: VoidFunction;
|
||||||
|
}): JSX.Element => {
|
||||||
|
const Icon = props.item.icon;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => props.onSelect?.()}
|
||||||
|
classList={{
|
||||||
|
[styles.navButton]: true,
|
||||||
|
[styles.navButtonActive]: props.isActive,
|
||||||
|
}}
|
||||||
|
aria-current={props.isActive ? "page" : undefined}
|
||||||
|
aria-expanded={props.item.id === "browse" ? props.isActive : undefined}
|
||||||
|
aria-label={props.item.label}
|
||||||
|
title={props.item.label}
|
||||||
|
>
|
||||||
|
<span class={styles.iconWrap} aria-hidden="true">
|
||||||
|
<Icon size={18} strokeWidth={2} />
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class={styles.label}>{props.item.label}</span>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const MobileBottomNav = (props: MobileBottomNavProps): JSX.Element => {
|
||||||
|
const appShellData = useAppShellData();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<nav class={styles.mobileNav} aria-label="Mobile workspace navigation">
|
||||||
|
<div class={styles.contextBar}>
|
||||||
|
<span class={styles.contextServer}>{appShellData.activeServer().name}</span>
|
||||||
|
<span class={styles.contextDivider}>/</span>
|
||||||
|
<span class={styles.contextProject}>{appShellData.activeProject().name}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class={styles.navGrid}>
|
||||||
|
<For each={mobileBottomNavItems}>
|
||||||
|
{(item): JSX.Element => (
|
||||||
|
<MobileNavEntry
|
||||||
|
item={item}
|
||||||
|
isActive={item.id === "browse" ? props.isBrowseOpen : (item.active ?? false) && !props.isBrowseOpen}
|
||||||
|
onSelect={item.id === "browse" ? props.onBrowseToggle : undefined}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</For>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
.panel {
|
||||||
|
--server-dock-glyph-size: var(--control-size-md);
|
||||||
|
--server-dock-action-min-height: var(--space-8);
|
||||||
|
--server-dock-border: color-mix(in srgb, var(--color-border-strong) 75%, transparent);
|
||||||
|
--server-dock-surface: color-mix(in srgb, var(--color-surface) 94%, transparent);
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding: var(--space-3) var(--space-3) var(--space-2);
|
||||||
|
border: 1px solid var(--server-dock-border);
|
||||||
|
border-radius: calc(var(--radius-xl) + var(--space-1));
|
||||||
|
background: var(--server-dock-surface);
|
||||||
|
box-shadow:
|
||||||
|
0 20px 48px color-mix(in srgb, black 16%, transparent),
|
||||||
|
var(--shadow-strong);
|
||||||
|
backdrop-filter: blur(var(--blur-overlay));
|
||||||
|
}
|
||||||
|
|
||||||
|
.identity {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto minmax(0, 1fr);
|
||||||
|
gap: var(--space-3);
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.glyph {
|
||||||
|
width: var(--server-dock-glyph-size);
|
||||||
|
height: var(--server-dock-glyph-size);
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: var(--radius-lg);
|
||||||
|
background: color-mix(in srgb, var(--color-accent-soft) 84%, transparent);
|
||||||
|
color: var(--color-accent-strong);
|
||||||
|
@include text-label;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy {
|
||||||
|
min-width: 0;
|
||||||
|
display: grid;
|
||||||
|
gap: 0.15rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name {
|
||||||
|
@include text-label;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status,
|
||||||
|
.subtitle {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.status {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusDot {
|
||||||
|
width: 0.45rem;
|
||||||
|
height: 0.45rem;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
border-radius: 999px;
|
||||||
|
background: var(--color-success);
|
||||||
|
box-shadow: 0 0 0 0.1rem color-mix(in srgb, var(--color-success) 18%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.action {
|
||||||
|
min-height: var(--server-dock-action-min-height);
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: var(--space-1);
|
||||||
|
@include interactive-frame(var(--color-surface-muted));
|
||||||
|
@include interactive-frame-hover();
|
||||||
|
}
|
||||||
|
|
||||||
|
.actionLabel {
|
||||||
|
@include text-caption;
|
||||||
|
}
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/ServerDock/ServerDock.tsx
|
||||||
|
|
||||||
|
import { For, Show, type JSX } from "solid-js";
|
||||||
|
import { useAppShellData } from "../data/app-shell.context";
|
||||||
|
import styles from "./ServerDock.module.scss";
|
||||||
|
|
||||||
|
export const ServerDock = (): JSX.Element => {
|
||||||
|
const appShellData = useAppShellData();
|
||||||
|
const activeServer = () => appShellData.activeServer();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<section class={styles.panel} aria-label="Server dock" data-ui="server-dock" data-server-kind={activeServer().kind}>
|
||||||
|
<div class={styles.identity} data-slot="server-dock-identity">
|
||||||
|
<div class={styles.glyph} aria-hidden="true">
|
||||||
|
{activeServer().abbreviation}
|
||||||
|
</div>
|
||||||
|
<div class={styles.copy} data-slot="server-dock-copy">
|
||||||
|
<span class={styles.name}>{activeServer().name}</span>
|
||||||
|
<Show
|
||||||
|
when={activeServer().kind === "organization"}
|
||||||
|
fallback={<span class={styles.subtitle}>{activeServer().subtitle}</span>}
|
||||||
|
>
|
||||||
|
<span class={styles.status}>
|
||||||
|
<span class={styles.statusDot} aria-hidden="true" />
|
||||||
|
<span>{activeServer().connectedLabel}</span>
|
||||||
|
</span>
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Show when={activeServer().dockActions.length > 0}>
|
||||||
|
<div class={styles.actions} data-slot="server-dock-actions">
|
||||||
|
<For each={activeServer().dockActions}>
|
||||||
|
{(item): JSX.Element => {
|
||||||
|
const Icon = item.icon;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button type="button" class={styles.action} aria-label={item.label} title={item.label} data-slot="server-dock-action" data-action-id={item.id}>
|
||||||
|
<Icon size={16} strokeWidth={2} />
|
||||||
|
<span class={styles.actionLabel}>{item.label}</span>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
</For>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,169 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/app-shell.builders.ts
|
||||||
|
|
||||||
|
import {
|
||||||
|
activeDepartment as fallbackActiveDepartment,
|
||||||
|
activeProject as fallbackActiveProject,
|
||||||
|
activeServer as fallbackActiveServer,
|
||||||
|
activeUserProfile as fallbackActiveUserProfile,
|
||||||
|
departmentItems as fallbackDepartmentItems,
|
||||||
|
organizationAdminDockActions,
|
||||||
|
personalDockActions,
|
||||||
|
projectItems as fallbackProjectItems,
|
||||||
|
railItems as fallbackRailItems,
|
||||||
|
workspaceTree as fallbackWorkspaceTree,
|
||||||
|
type ActiveDepartment,
|
||||||
|
type ActiveProject,
|
||||||
|
type ActiveServer,
|
||||||
|
type ActiveUserProfile,
|
||||||
|
type DepartmentItem,
|
||||||
|
type ProjectItem,
|
||||||
|
type RailItem,
|
||||||
|
type WorkspaceTreeNode,
|
||||||
|
} from "./shell.data";
|
||||||
|
import type { AppShellPayload } from "./app-shell.types";
|
||||||
|
|
||||||
|
const buildAbbreviation = (name: string, fallback: string): string => {
|
||||||
|
const parts = name
|
||||||
|
.trim()
|
||||||
|
.split(/\s+/)
|
||||||
|
.filter(Boolean);
|
||||||
|
|
||||||
|
if (parts.length === 0) {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
|
||||||
|
const abbreviation = parts
|
||||||
|
.slice(0, 2)
|
||||||
|
.map((part) => part[0]?.toUpperCase() ?? "")
|
||||||
|
.join("");
|
||||||
|
|
||||||
|
return abbreviation || fallback;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildRailItems = (payload: AppShellPayload | null): readonly RailItem[] => {
|
||||||
|
if (!payload?.installation || payload.organizations.length === 0) {
|
||||||
|
return fallbackRailItems;
|
||||||
|
}
|
||||||
|
|
||||||
|
const kind = payload.installation.mode === "personal" ? "personal" : "organization";
|
||||||
|
const serverName = payload.installation.name || payload.organizations[0]?.name || payload.installation.host;
|
||||||
|
|
||||||
|
return payload.organizations.map((organization, index) => ({
|
||||||
|
id: organization.id,
|
||||||
|
label: serverName || organization.name,
|
||||||
|
abbreviation: buildAbbreviation(serverName || organization.name, kind === "personal" ? "P" : "O"),
|
||||||
|
kind,
|
||||||
|
active: index === 0,
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildActiveServer = (payload: AppShellPayload | null): ActiveServer => {
|
||||||
|
const installation = payload?.installation;
|
||||||
|
const organization = payload?.organizations[0];
|
||||||
|
|
||||||
|
if (!installation || !organization) {
|
||||||
|
return fallbackActiveServer;
|
||||||
|
}
|
||||||
|
|
||||||
|
const kind = installation.mode === "personal" ? "personal" : "organization";
|
||||||
|
const serverName = installation.name || organization.name || installation.host;
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: installation.id,
|
||||||
|
name: serverName || fallbackActiveServer.name,
|
||||||
|
abbreviation: buildAbbreviation(serverName, kind === "personal" ? "P" : "O"),
|
||||||
|
kind,
|
||||||
|
connectedLabel: kind === "organization" ? `${payload?.teams.length ?? 0} connected` : undefined,
|
||||||
|
subtitle: kind === "personal" ? installation.host || payload?.admin?.homeTitle || "Personal home" : undefined,
|
||||||
|
dockActions: kind === "personal" ? personalDockActions : organizationAdminDockActions,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildProjectItems = (payload: AppShellPayload | null): readonly ProjectItem[] => {
|
||||||
|
if (!payload?.projects.length) {
|
||||||
|
return fallbackProjectItems;
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload.projects.map((project, index) => ({
|
||||||
|
id: project.id,
|
||||||
|
name: project.name,
|
||||||
|
description: project.slug || "Persisted project workspace",
|
||||||
|
groupLabel: payload.departments.find((department) => department.id === project.departmentId)?.name || "Projects",
|
||||||
|
parentLabel:
|
||||||
|
payload.teams.find((team) => team.id === project.teamId)?.name ||
|
||||||
|
payload.departments.find((department) => department.id === project.departmentId)?.name ||
|
||||||
|
"Shared project",
|
||||||
|
meta: (() => {
|
||||||
|
const workspaceCount = payload.workspaces.filter((workspace) => workspace.projectId === project.id).length;
|
||||||
|
|
||||||
|
return workspaceCount > 0 ? `${workspaceCount} workspace${workspaceCount === 1 ? "" : "s"}` : undefined;
|
||||||
|
})(),
|
||||||
|
active: index === 0,
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildActiveProject = (payload: AppShellPayload | null): ActiveProject => {
|
||||||
|
const firstProject = payload?.projects[0];
|
||||||
|
|
||||||
|
if (!firstProject) {
|
||||||
|
return fallbackActiveProject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: firstProject.id,
|
||||||
|
name: firstProject.name,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildDepartmentItems = (payload: AppShellPayload | null): readonly DepartmentItem[] => {
|
||||||
|
if (!payload?.departments.length) {
|
||||||
|
return fallbackDepartmentItems;
|
||||||
|
}
|
||||||
|
|
||||||
|
return payload.departments.map((department, index) => ({
|
||||||
|
id: department.id,
|
||||||
|
name: department.name,
|
||||||
|
teams: payload.teams.filter((team) => team.departmentId === department.id).map((team) => team.name),
|
||||||
|
active: index === 0,
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildActiveDepartment = (payload: AppShellPayload | null): ActiveDepartment => {
|
||||||
|
const firstDepartment = payload?.departments[0];
|
||||||
|
|
||||||
|
if (!firstDepartment) {
|
||||||
|
return fallbackActiveDepartment;
|
||||||
|
}
|
||||||
|
|
||||||
|
const firstTeamName = payload?.teams.find((team) => team.departmentId === firstDepartment.id)?.name ?? "";
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: firstDepartment.id,
|
||||||
|
name: firstDepartment.name,
|
||||||
|
teamName: firstTeamName,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildWorkspaceTree = (payload: AppShellPayload | null): readonly WorkspaceTreeNode[] => {
|
||||||
|
if (!payload?.projects.length) {
|
||||||
|
return fallbackWorkspaceTree;
|
||||||
|
}
|
||||||
|
|
||||||
|
return [];
|
||||||
|
};
|
||||||
|
|
||||||
|
export const buildActiveUserProfile = (payload: AppShellPayload | null): ActiveUserProfile => {
|
||||||
|
if (!payload?.admin) {
|
||||||
|
return fallbackActiveUserProfile;
|
||||||
|
}
|
||||||
|
|
||||||
|
const organizationName = payload.installation?.name || payload.organizations[0]?.name || fallbackActiveServer.name;
|
||||||
|
const departmentName = payload.departments[0]?.name;
|
||||||
|
|
||||||
|
return {
|
||||||
|
name: payload.admin.displayName,
|
||||||
|
email: payload.admin.email,
|
||||||
|
roleLabel: payload.admin.isInstanceAdmin ? "Instance admin" : "Member",
|
||||||
|
contextLabel: departmentName ? `${organizationName} • ${departmentName}` : organizationName,
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/app-shell.context.tsx
|
||||||
|
|
||||||
|
import {
|
||||||
|
createContext,
|
||||||
|
createMemo,
|
||||||
|
createSignal,
|
||||||
|
onMount,
|
||||||
|
useContext,
|
||||||
|
type JSX,
|
||||||
|
} from "solid-js";
|
||||||
|
import { resolveAPIBase } from "../../../lib/api";
|
||||||
|
import {
|
||||||
|
buildActiveDepartment,
|
||||||
|
buildActiveProject,
|
||||||
|
buildActiveServer,
|
||||||
|
buildActiveUserProfile,
|
||||||
|
buildDepartmentItems,
|
||||||
|
buildProjectItems,
|
||||||
|
buildRailItems,
|
||||||
|
buildWorkspaceTree,
|
||||||
|
} from "./app-shell.builders";
|
||||||
|
import type { AppShellContextValue, AppShellPayload } from "./app-shell.types";
|
||||||
|
import { normalizeAppShellPayload } from "./app-shell.types";
|
||||||
|
|
||||||
|
const AppShellContext = createContext<AppShellContextValue>();
|
||||||
|
|
||||||
|
export const AppShellDataProvider = (props: { children: JSX.Element }): JSX.Element => {
|
||||||
|
const [status, setStatus] = createSignal<"idle" | "loading" | "success" | "error">("idle");
|
||||||
|
const [error, setError] = createSignal("");
|
||||||
|
const [payload, setPayload] = createSignal<AppShellPayload | null>(null);
|
||||||
|
|
||||||
|
const load = async (): Promise<void> => {
|
||||||
|
setStatus("loading");
|
||||||
|
setError("");
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await fetch(`${resolveAPIBase()}/app-shell`, {
|
||||||
|
headers: {
|
||||||
|
Accept: "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const body = (await response.json()) as {
|
||||||
|
data?: AppShellPayload;
|
||||||
|
error?: { message?: string } | string;
|
||||||
|
message?: string;
|
||||||
|
};
|
||||||
|
const errorMessage =
|
||||||
|
typeof body.message === "string"
|
||||||
|
? body.message
|
||||||
|
: typeof body.error === "string"
|
||||||
|
? body.error
|
||||||
|
: body.error?.message;
|
||||||
|
|
||||||
|
if (!response.ok || !body.data) {
|
||||||
|
throw new Error(errorMessage || "Failed to load app shell state.");
|
||||||
|
}
|
||||||
|
|
||||||
|
setPayload(normalizeAppShellPayload(body.data));
|
||||||
|
setStatus("success");
|
||||||
|
} catch (loadError) {
|
||||||
|
setStatus("error");
|
||||||
|
setError(loadError instanceof Error ? loadError.message : "Failed to load app shell state.");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
void load();
|
||||||
|
});
|
||||||
|
|
||||||
|
const value: AppShellContextValue = {
|
||||||
|
status,
|
||||||
|
error,
|
||||||
|
installation: createMemo(() => payload()?.installation),
|
||||||
|
railItems: createMemo(() => buildRailItems(payload())),
|
||||||
|
activeServer: createMemo(() => buildActiveServer(payload())),
|
||||||
|
activeProject: createMemo(() => buildActiveProject(payload())),
|
||||||
|
activeDepartment: createMemo(() => buildActiveDepartment(payload())),
|
||||||
|
projectItems: createMemo(() => buildProjectItems(payload())),
|
||||||
|
departmentItems: createMemo(() => buildDepartmentItems(payload())),
|
||||||
|
workspaceTree: createMemo(() => buildWorkspaceTree(payload())),
|
||||||
|
activeUserProfile: createMemo(() => buildActiveUserProfile(payload())),
|
||||||
|
reload: load,
|
||||||
|
};
|
||||||
|
|
||||||
|
return <AppShellContext.Provider value={value}>{props.children}</AppShellContext.Provider>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const useAppShellData = (): AppShellContextValue => {
|
||||||
|
const context = useContext(AppShellContext);
|
||||||
|
|
||||||
|
if (!context) {
|
||||||
|
throw new Error("useAppShellData must be used within AppShellDataProvider");
|
||||||
|
}
|
||||||
|
|
||||||
|
return context;
|
||||||
|
};
|
||||||
@@ -0,0 +1,130 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/app-shell.types.ts
|
||||||
|
|
||||||
|
import type { Accessor } from "solid-js";
|
||||||
|
import type {
|
||||||
|
ActiveDepartment,
|
||||||
|
ActiveProject,
|
||||||
|
ActiveServer,
|
||||||
|
ActiveUserProfile,
|
||||||
|
DepartmentItem,
|
||||||
|
ProjectItem,
|
||||||
|
RailItem,
|
||||||
|
WorkspaceTreeNode,
|
||||||
|
} from "./shell.data";
|
||||||
|
|
||||||
|
export type AppShellInstallation = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
mode: "personal" | "organizational" | string;
|
||||||
|
access: string;
|
||||||
|
protocol: string;
|
||||||
|
host: string;
|
||||||
|
isBootstrapped: boolean;
|
||||||
|
materializationStatus: "not_started" | "pending" | "running" | "succeeded" | "failed" | string;
|
||||||
|
materializationError?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellAdmin = {
|
||||||
|
id: string;
|
||||||
|
email: string;
|
||||||
|
displayName: string;
|
||||||
|
isInstanceAdmin: boolean;
|
||||||
|
homeTitle: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellOrganization = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellDepartment = {
|
||||||
|
id: string;
|
||||||
|
organizationId: string;
|
||||||
|
name: string;
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellTeam = {
|
||||||
|
id: string;
|
||||||
|
organizationId: string;
|
||||||
|
departmentId?: string;
|
||||||
|
name: string;
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellProject = {
|
||||||
|
id: string;
|
||||||
|
organizationId: string;
|
||||||
|
departmentId?: string;
|
||||||
|
teamId?: string;
|
||||||
|
name: string;
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellWorkspace = {
|
||||||
|
id: string;
|
||||||
|
organizationId: string;
|
||||||
|
name: string;
|
||||||
|
slug: string;
|
||||||
|
kind: "organization" | "department" | "team" | "project" | string;
|
||||||
|
departmentId?: string;
|
||||||
|
teamId?: string;
|
||||||
|
projectId?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellPayload = {
|
||||||
|
installation?: AppShellInstallation;
|
||||||
|
admin?: AppShellAdmin;
|
||||||
|
organizations: AppShellOrganization[];
|
||||||
|
departments: AppShellDepartment[];
|
||||||
|
teams: AppShellTeam[];
|
||||||
|
projects: AppShellProject[];
|
||||||
|
workspaces: AppShellWorkspace[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AppShellContextValue = {
|
||||||
|
status: Accessor<"idle" | "loading" | "success" | "error">;
|
||||||
|
error: Accessor<string>;
|
||||||
|
installation: Accessor<AppShellInstallation | undefined>;
|
||||||
|
railItems: Accessor<readonly RailItem[]>;
|
||||||
|
activeServer: Accessor<ActiveServer>;
|
||||||
|
activeProject: Accessor<ActiveProject>;
|
||||||
|
activeDepartment: Accessor<ActiveDepartment>;
|
||||||
|
projectItems: Accessor<readonly ProjectItem[]>;
|
||||||
|
departmentItems: Accessor<readonly DepartmentItem[]>;
|
||||||
|
workspaceTree: Accessor<readonly WorkspaceTreeNode[]>;
|
||||||
|
activeUserProfile: Accessor<ActiveUserProfile>;
|
||||||
|
reload: () => Promise<void>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const normalizeInstallation = (
|
||||||
|
installation: AppShellInstallation | null | undefined,
|
||||||
|
): AppShellInstallation | undefined => {
|
||||||
|
if (!installation) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
const materializationStatus = installation.materializationStatus?.trim()
|
||||||
|
? installation.materializationStatus
|
||||||
|
: installation.isBootstrapped
|
||||||
|
? "succeeded"
|
||||||
|
: "not_started";
|
||||||
|
const materializationError = installation.materializationError?.trim() || undefined;
|
||||||
|
|
||||||
|
return {
|
||||||
|
...installation,
|
||||||
|
materializationStatus,
|
||||||
|
materializationError,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const normalizeAppShellPayload = (payload: AppShellPayload | null | undefined): AppShellPayload => ({
|
||||||
|
installation: normalizeInstallation(payload?.installation),
|
||||||
|
admin: payload?.admin,
|
||||||
|
organizations: Array.isArray(payload?.organizations) ? payload.organizations : [],
|
||||||
|
departments: Array.isArray(payload?.departments) ? payload.departments : [],
|
||||||
|
teams: Array.isArray(payload?.teams) ? payload.teams : [],
|
||||||
|
projects: Array.isArray(payload?.projects) ? payload.projects : [],
|
||||||
|
workspaces: Array.isArray(payload?.workspaces) ? payload.workspaces : [],
|
||||||
|
});
|
||||||
@@ -0,0 +1,174 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/shell.context-menu.ts
|
||||||
|
|
||||||
|
import { getWorkspaceCreateActions, getWorkspaceItemTypeDefinition } from "./shell.registry";
|
||||||
|
import type {
|
||||||
|
ActiveProject,
|
||||||
|
ProjectContextMenuAction,
|
||||||
|
ProjectContextMenuSection,
|
||||||
|
ProjectItem,
|
||||||
|
ProjectMenuTarget,
|
||||||
|
WorkspaceContextMenuSection,
|
||||||
|
WorkspaceContextMenuTarget,
|
||||||
|
WorkspaceStaticItem,
|
||||||
|
WorkspaceTreeNode,
|
||||||
|
} from "./shell.types";
|
||||||
|
|
||||||
|
export { getWorkspaceContextMenuEyebrow } from "./shell.registry";
|
||||||
|
|
||||||
|
export const createWorkspaceSurfaceTarget = (workspace: ActiveProject): WorkspaceContextMenuTarget => ({
|
||||||
|
id: `workspace-${workspace.id}`,
|
||||||
|
label: workspace.name,
|
||||||
|
kind: "workspace",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const createWorkspaceStaticTarget = (item: WorkspaceStaticItem): WorkspaceContextMenuTarget => ({
|
||||||
|
id: item.id,
|
||||||
|
label: item.label,
|
||||||
|
kind: item.contextKind,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const createWorkspaceTreeTarget = (node: WorkspaceTreeNode): WorkspaceContextMenuTarget => ({
|
||||||
|
id: node.id,
|
||||||
|
label: node.label,
|
||||||
|
...(node.kind === "folder"
|
||||||
|
? { kind: "folder" as const }
|
||||||
|
: {
|
||||||
|
kind: "item" as const,
|
||||||
|
itemType: node.itemType,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const getWorkspaceContextMenuSections = (
|
||||||
|
target: WorkspaceContextMenuTarget,
|
||||||
|
): readonly WorkspaceContextMenuSection[] => {
|
||||||
|
const createActions = getWorkspaceCreateActions();
|
||||||
|
const createSubmenuAction = {
|
||||||
|
id: "create",
|
||||||
|
label: "Create",
|
||||||
|
children: createActions,
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
switch (target.kind) {
|
||||||
|
case "workspace":
|
||||||
|
return [
|
||||||
|
{ id: "create", label: undefined, items: [createSubmenuAction] },
|
||||||
|
{
|
||||||
|
id: "workspace",
|
||||||
|
label: undefined,
|
||||||
|
items: [
|
||||||
|
{ id: "rename-workspace", label: "Rename workspace", shortcut: { key: "enter" } },
|
||||||
|
{ id: "copy-workspace-link", label: "Copy link", shortcut: { modifiers: ["meta"], key: "c" } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
case "home":
|
||||||
|
return [
|
||||||
|
{ id: "create", label: undefined, items: [createSubmenuAction] },
|
||||||
|
{ id: "workspace", label: undefined, items: [{ id: "open-home", label: "Open home", shortcut: { key: "enter" } }] },
|
||||||
|
] as const;
|
||||||
|
case "settings":
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
id: "settings",
|
||||||
|
label: undefined,
|
||||||
|
items: [
|
||||||
|
{ id: "open-settings", label: "Open settings", shortcut: { key: "enter" } },
|
||||||
|
{ id: "copy-settings-link", label: "Copy link", shortcut: { modifiers: ["meta"], key: "c" } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
case "folder":
|
||||||
|
return [
|
||||||
|
{ id: "open", items: [{ id: "open-folder", label: "Open folder", shortcut: { key: "enter" } }, { id: "rename-folder", label: "Rename", shortcut: { modifiers: ["meta"], key: "r" } }] },
|
||||||
|
{ id: "create", label: undefined, items: [createSubmenuAction] },
|
||||||
|
{
|
||||||
|
id: "organize",
|
||||||
|
label: undefined,
|
||||||
|
items: [
|
||||||
|
{ id: "move-folder", label: "Move…", shortcut: { modifiers: ["meta"], key: "m" } },
|
||||||
|
{ id: "delete-folder", label: "Delete", shortcut: { modifiers: ["meta"], key: "delete" }, tone: "danger" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
case "item": {
|
||||||
|
const definition = getWorkspaceItemTypeDefinition(target.itemType);
|
||||||
|
const actionPrefix = definition.actionPrefix;
|
||||||
|
const nounLabel = definition.noun;
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
id: `${actionPrefix}-primary`,
|
||||||
|
items: [
|
||||||
|
{ id: `open-${actionPrefix}`, label: `Open ${nounLabel}`, shortcut: { key: "enter" } },
|
||||||
|
{ id: `rename-${actionPrefix}`, label: "Rename", shortcut: { modifiers: ["meta"], key: "r" } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "organize",
|
||||||
|
label: undefined,
|
||||||
|
items: [
|
||||||
|
{ id: `move-${actionPrefix}`, label: "Move…", shortcut: { modifiers: ["meta"], key: "m" } },
|
||||||
|
{ id: `delete-${actionPrefix}`, label: "Delete", shortcut: { modifiers: ["meta"], key: "delete" }, tone: "danger" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getProjectCreateActions = (): readonly ProjectContextMenuAction[] =>
|
||||||
|
[
|
||||||
|
{ id: "new-project", label: "New project" },
|
||||||
|
{ id: "new-folder", label: "New folder" },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
const getProjectFolderDangerActions = (): readonly ProjectContextMenuAction[] =>
|
||||||
|
[
|
||||||
|
{ id: "rename-folder", label: "Rename", shortcut: { modifiers: ["meta"], key: "r" } },
|
||||||
|
{ id: "delete-folder", label: "Delete", shortcut: { modifiers: ["meta"], key: "delete" }, tone: "danger" },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const createProjectSurfaceTarget = (label = "Projects"): ProjectMenuTarget => ({
|
||||||
|
id: "project-surface",
|
||||||
|
label,
|
||||||
|
kind: "surface",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const createProjectFolderTarget = (id: string, label: string): ProjectMenuTarget => ({
|
||||||
|
id,
|
||||||
|
label,
|
||||||
|
kind: "folder",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const createProjectTarget = (project: ProjectItem): ProjectMenuTarget => ({
|
||||||
|
id: project.id,
|
||||||
|
label: project.name,
|
||||||
|
kind: "project",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const getProjectContextMenuEyebrow = (target: ProjectMenuTarget): string => {
|
||||||
|
switch (target.kind) {
|
||||||
|
case "surface":
|
||||||
|
return "Projects";
|
||||||
|
case "folder":
|
||||||
|
return "Folder";
|
||||||
|
case "project":
|
||||||
|
return "Project";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getProjectContextMenuSections = (target: ProjectMenuTarget): readonly ProjectContextMenuSection[] => {
|
||||||
|
const createActions = getProjectCreateActions();
|
||||||
|
|
||||||
|
switch (target.kind) {
|
||||||
|
case "surface":
|
||||||
|
return [{ id: "create", items: createActions }] as const;
|
||||||
|
case "folder":
|
||||||
|
return [
|
||||||
|
{ id: "create", items: createActions },
|
||||||
|
{ id: "organize", items: getProjectFolderDangerActions() },
|
||||||
|
] as const;
|
||||||
|
case "project":
|
||||||
|
return [{ id: "create", items: createActions }] as const;
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/shell.data.ts
|
||||||
|
|
||||||
|
export * from "./shell.types";
|
||||||
|
export * from "./shell.registry";
|
||||||
|
export * from "./shell.scaffold";
|
||||||
|
export * from "./shell.context-menu";
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/shell.registry.ts
|
||||||
|
|
||||||
|
import { FileText, LayoutGrid } from "../../../lib/icons";
|
||||||
|
import type {
|
||||||
|
ShellIcon,
|
||||||
|
WorkspaceContextMenuAction,
|
||||||
|
WorkspaceContextMenuTarget,
|
||||||
|
WorkspaceItemTypeDefinition,
|
||||||
|
WorkspaceItemTypeId,
|
||||||
|
WorkspaceTreeNode,
|
||||||
|
} from "./shell.types";
|
||||||
|
|
||||||
|
export const firstPartyWorkspaceItemTypes: readonly WorkspaceItemTypeDefinition[] = [
|
||||||
|
{
|
||||||
|
id: "core.doc",
|
||||||
|
label: "Doc",
|
||||||
|
shortLabel: "Doc",
|
||||||
|
icon: FileText,
|
||||||
|
noun: "doc",
|
||||||
|
actionPrefix: "doc",
|
||||||
|
defaultCreateLabel: "New doc",
|
||||||
|
includeInWorkspaceCreate: true,
|
||||||
|
description: "Rich text documents and notes.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "core.board.kanban",
|
||||||
|
label: "Kanban board",
|
||||||
|
shortLabel: "Board",
|
||||||
|
icon: LayoutGrid,
|
||||||
|
noun: "board",
|
||||||
|
actionPrefix: "board",
|
||||||
|
defaultCreateLabel: "New board",
|
||||||
|
includeInWorkspaceCreate: true,
|
||||||
|
description: "Default board-style workspace item.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "core.board.list",
|
||||||
|
label: "List board",
|
||||||
|
shortLabel: "Board",
|
||||||
|
icon: LayoutGrid,
|
||||||
|
noun: "board",
|
||||||
|
actionPrefix: "list-board",
|
||||||
|
defaultCreateLabel: "New list board",
|
||||||
|
description: "Alternate first-party board view prepared for the future registry.",
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
const workspaceItemTypeMap = new Map<WorkspaceItemTypeId, WorkspaceItemTypeDefinition>(
|
||||||
|
firstPartyWorkspaceItemTypes.map((definition) => [definition.id, definition]),
|
||||||
|
);
|
||||||
|
|
||||||
|
const createUnknownWorkspaceItemTypeDefinition = (
|
||||||
|
itemType: WorkspaceItemTypeId,
|
||||||
|
): WorkspaceItemTypeDefinition => ({
|
||||||
|
id: itemType,
|
||||||
|
label: "Item",
|
||||||
|
shortLabel: "Item",
|
||||||
|
icon: FileText,
|
||||||
|
noun: "item",
|
||||||
|
actionPrefix: "item",
|
||||||
|
defaultCreateLabel: "New item",
|
||||||
|
description: "Fallback definition for unknown or future workspace item types.",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const getWorkspaceItemTypeDefinition = (itemType: WorkspaceItemTypeId): WorkspaceItemTypeDefinition => {
|
||||||
|
return workspaceItemTypeMap.get(itemType) ?? createUnknownWorkspaceItemTypeDefinition(itemType);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getWorkspaceNodeIcon = (node: WorkspaceTreeNode): ShellIcon =>
|
||||||
|
node.kind === "folder" ? node.icon : getWorkspaceItemTypeDefinition(node.itemType).icon;
|
||||||
|
|
||||||
|
export const getWorkspaceCreateActions = (): readonly WorkspaceContextMenuAction[] => [
|
||||||
|
{ id: "new-folder", label: "New folder", shortcut: { modifiers: ["alt"], key: "f" } },
|
||||||
|
...firstPartyWorkspaceItemTypes
|
||||||
|
.filter((definition) => definition.includeInWorkspaceCreate)
|
||||||
|
.map((definition) => ({
|
||||||
|
id: `create-${definition.actionPrefix}`,
|
||||||
|
label: definition.defaultCreateLabel,
|
||||||
|
shortcut:
|
||||||
|
definition.id === "core.board.kanban"
|
||||||
|
? ({ modifiers: ["alt"], key: "b" } as const)
|
||||||
|
: definition.id === "core.doc"
|
||||||
|
? ({ modifiers: ["alt"], key: "d" } as const)
|
||||||
|
: undefined,
|
||||||
|
})),
|
||||||
|
];
|
||||||
|
|
||||||
|
export const getWorkspaceContextMenuEyebrow = (target: WorkspaceContextMenuTarget): string => {
|
||||||
|
switch (target.kind) {
|
||||||
|
case "workspace":
|
||||||
|
case "home":
|
||||||
|
return "Workspace";
|
||||||
|
case "settings":
|
||||||
|
return "Configuration";
|
||||||
|
case "folder":
|
||||||
|
return "Folder";
|
||||||
|
case "item":
|
||||||
|
return getWorkspaceItemTypeDefinition(target.itemType).shortLabel;
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,222 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/shell.scaffold.ts
|
||||||
|
|
||||||
|
import {
|
||||||
|
Bell,
|
||||||
|
CircleHelp,
|
||||||
|
FileText,
|
||||||
|
Folder,
|
||||||
|
Home,
|
||||||
|
Keyboard,
|
||||||
|
LayoutGrid,
|
||||||
|
ListCollapse,
|
||||||
|
LogOut,
|
||||||
|
Repeat,
|
||||||
|
Search,
|
||||||
|
Settings,
|
||||||
|
Shield,
|
||||||
|
User,
|
||||||
|
} from "../../../lib/icons";
|
||||||
|
import type {
|
||||||
|
ActiveDepartment,
|
||||||
|
ActiveProject,
|
||||||
|
ActiveServer,
|
||||||
|
ActiveUserProfile,
|
||||||
|
DepartmentItem,
|
||||||
|
MobileBottomNavItem,
|
||||||
|
NotificationItem,
|
||||||
|
ProfileMenuSection,
|
||||||
|
ProjectItem,
|
||||||
|
RailItem,
|
||||||
|
ServerDockAction,
|
||||||
|
SidebarHeaderAction,
|
||||||
|
TopBarAction,
|
||||||
|
WorkspaceStaticItem,
|
||||||
|
WorkspaceTreeNode,
|
||||||
|
} from "./shell.types";
|
||||||
|
|
||||||
|
export const personalDockActions: readonly ServerDockAction[] = [
|
||||||
|
{ id: "account", label: "Account", icon: User },
|
||||||
|
{ id: "settings", label: "Settings", icon: Settings },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const organizationAdminDockActions: readonly ServerDockAction[] = [
|
||||||
|
{ id: "members", label: "Members", icon: User },
|
||||||
|
{ id: "server", label: "Server", icon: Settings },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const railItems: readonly RailItem[] = [
|
||||||
|
{ id: "personal-server", label: "Personal Server Name", abbreviation: "P", kind: "personal" },
|
||||||
|
{ id: "organization-server", label: "Organization Name", abbreviation: "O", kind: "organization", active: true },
|
||||||
|
{ id: "design-review", label: "Design Review", abbreviation: "D", kind: "organization" },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const activeServer: ActiveServer = {
|
||||||
|
id: "organization-server",
|
||||||
|
name: "Organization Name",
|
||||||
|
abbreviation: "O",
|
||||||
|
kind: "organization",
|
||||||
|
connectedLabel: "12 connected",
|
||||||
|
dockActions: organizationAdminDockActions,
|
||||||
|
};
|
||||||
|
|
||||||
|
export const activeProject: ActiveProject = {
|
||||||
|
id: "general",
|
||||||
|
name: "General",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const activeDepartment: ActiveDepartment = {
|
||||||
|
id: "product",
|
||||||
|
name: "Product",
|
||||||
|
teamName: "Design Systems",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const projectItems: readonly ProjectItem[] = [
|
||||||
|
{
|
||||||
|
id: "general",
|
||||||
|
name: "General",
|
||||||
|
description: "Default shared project",
|
||||||
|
groupLabel: "Shared space",
|
||||||
|
parentLabel: "Workspace home",
|
||||||
|
meta: "1 workspace",
|
||||||
|
active: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "operations",
|
||||||
|
name: "Operations",
|
||||||
|
description: "Cross-team planning and delivery",
|
||||||
|
groupLabel: "Team folders",
|
||||||
|
parentLabel: "Shared Services",
|
||||||
|
meta: "2 workspaces",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "hiring",
|
||||||
|
name: "Hiring",
|
||||||
|
description: "Candidate pipeline and interview loops",
|
||||||
|
groupLabel: "Team folders",
|
||||||
|
parentLabel: "People Ops",
|
||||||
|
meta: "1 workspace",
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const departmentItems: readonly DepartmentItem[] = [
|
||||||
|
{ id: "product", name: "Product", teams: ["Design Systems", "Research Ops"], active: true },
|
||||||
|
{ id: "engineering", name: "Engineering", teams: ["Platform", "Realtime Collaboration"] },
|
||||||
|
{ id: "operations", name: "Operations", teams: ["Shared Services", "People Ops"] },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const workspaceStaticItems: readonly WorkspaceStaticItem[] = [
|
||||||
|
{ id: "home", label: "Home", icon: Home, active: true, contextKind: "home" },
|
||||||
|
{ id: "workspace-settings", label: "Settings", icon: Settings, contextKind: "settings" },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const workspaceTree: readonly WorkspaceTreeNode[] = [
|
||||||
|
{
|
||||||
|
id: "product-workspace",
|
||||||
|
label: "Product",
|
||||||
|
kind: "folder",
|
||||||
|
icon: Folder,
|
||||||
|
children: [
|
||||||
|
{ id: "roadmap-board", label: "Roadmap", kind: "item", itemType: "core.board.kanban", active: true },
|
||||||
|
{ id: "launch-brief", label: "Launch Brief", kind: "item", itemType: "core.doc" },
|
||||||
|
{
|
||||||
|
id: "research-folder",
|
||||||
|
label: "Research",
|
||||||
|
kind: "folder",
|
||||||
|
icon: Folder,
|
||||||
|
children: [
|
||||||
|
{ id: "interviews-doc", label: "Interviews", kind: "item", itemType: "core.doc" },
|
||||||
|
{ id: "signals-board", label: "Signals", kind: "item", itemType: "core.board.kanban", meta: "2" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "design-folder",
|
||||||
|
label: "Design",
|
||||||
|
kind: "folder",
|
||||||
|
icon: Folder,
|
||||||
|
children: [
|
||||||
|
{ id: "system-doc", label: "Design System", kind: "item", itemType: "core.doc" },
|
||||||
|
{ id: "review-board", label: "Review Queue", kind: "item", itemType: "core.board.kanban" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{ id: "general-notes", label: "General Notes", kind: "item", itemType: "core.doc" },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const workspaceSidebarHeaderActions: readonly SidebarHeaderAction[] = [
|
||||||
|
{ id: "search-workspace", label: "Search workspace", icon: Search },
|
||||||
|
{ id: "toggle-workspace-folders", label: "Collapse all folders", icon: ListCollapse },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const mobileBottomNavItems: readonly MobileBottomNavItem[] = [
|
||||||
|
{ id: "home", label: "Home", icon: Home, active: true },
|
||||||
|
{ id: "search", label: "Search", icon: Search },
|
||||||
|
{ id: "browse", label: "Browse", icon: Folder },
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const topBarActions: readonly TopBarAction[] = [{ id: "search", label: "Search", icon: Search }] as const;
|
||||||
|
|
||||||
|
export const notificationItems: readonly NotificationItem[] = [
|
||||||
|
{
|
||||||
|
id: "comment-design-systems",
|
||||||
|
title: "New comment on Design Systems",
|
||||||
|
contextLabel: "Product • Review thread updated",
|
||||||
|
timeLabel: "2m ago",
|
||||||
|
unread: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "sprint-platform",
|
||||||
|
title: "Sprint updated in Platform",
|
||||||
|
contextLabel: "Engineering • Scope changed",
|
||||||
|
timeLabel: "15m ago",
|
||||||
|
unread: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "member-joined",
|
||||||
|
title: "New member joined Operations",
|
||||||
|
contextLabel: "Organization Name • Access granted",
|
||||||
|
timeLabel: "1h ago",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "daily-summary",
|
||||||
|
title: "Daily summary is ready",
|
||||||
|
contextLabel: "General • 8 updates across boards",
|
||||||
|
timeLabel: "Today, 8:00 AM",
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export const unreadNotificationCount = notificationItems.filter((item) => item.unread).length;
|
||||||
|
|
||||||
|
export const activeUserProfile: ActiveUserProfile = {
|
||||||
|
name: "Demo Account",
|
||||||
|
email: "demo@moku.work",
|
||||||
|
roleLabel: "Founder · Product",
|
||||||
|
contextLabel: "Organization Name • Design Systems",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const profileMenuSections: readonly ProfileMenuSection[] = [
|
||||||
|
{
|
||||||
|
id: "account",
|
||||||
|
items: [
|
||||||
|
{ id: "profile", label: "Profile", icon: User },
|
||||||
|
{ id: "account-settings", label: "Account Settings", icon: Settings },
|
||||||
|
{ id: "notifications", label: "Notifications", icon: Bell },
|
||||||
|
{ id: "security", label: "Security", icon: Shield },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "preferences",
|
||||||
|
items: [
|
||||||
|
{ id: "keyboard-shortcuts", label: "Keyboard Shortcuts", icon: Keyboard },
|
||||||
|
{ id: "theme-preferences", label: "Theme Preferences", icon: Settings },
|
||||||
|
{ id: "help-support", label: "Help & Support", icon: CircleHelp },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "session",
|
||||||
|
items: [
|
||||||
|
{ id: "switch-account", label: "Switch Account", icon: Repeat },
|
||||||
|
{ id: "sign-out", label: "Sign Out", icon: LogOut, tone: "danger" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
// Path: Frontend/src/components/app-shell/data/shell.types.ts
|
||||||
|
|
||||||
|
import type { Component } from "solid-js";
|
||||||
|
|
||||||
|
export type ShellIconProps = {
|
||||||
|
class?: string;
|
||||||
|
size?: number;
|
||||||
|
strokeWidth?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ShellIcon = Component<ShellIconProps>;
|
||||||
|
|
||||||
|
export type RailItem = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
abbreviation: string;
|
||||||
|
kind: "personal" | "organization";
|
||||||
|
active?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ServerDockAction = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ActiveServer = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
abbreviation: string;
|
||||||
|
kind: "personal" | "organization";
|
||||||
|
connectedLabel?: string;
|
||||||
|
subtitle?: string;
|
||||||
|
dockActions: readonly ServerDockAction[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ActiveProject = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ActiveDepartment = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
teamName: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type DepartmentItem = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
teams: readonly string[];
|
||||||
|
active?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ProjectItem = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
groupLabel?: string;
|
||||||
|
parentLabel?: string;
|
||||||
|
meta?: string;
|
||||||
|
active?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ProjectMenuTarget =
|
||||||
|
| {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
kind: "surface";
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
kind: "folder";
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
kind: "project";
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ProjectContextMenuAction = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
tone?: "default" | "danger";
|
||||||
|
shortcut?: WorkspaceContextMenuShortcut;
|
||||||
|
children?: readonly ProjectContextMenuAction[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ProjectContextMenuSection = {
|
||||||
|
id: string;
|
||||||
|
label?: string;
|
||||||
|
items: readonly ProjectContextMenuAction[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type SidebarItem = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
active?: boolean;
|
||||||
|
meta?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceStaticKind = "workspace" | "home" | "settings";
|
||||||
|
|
||||||
|
export type WorkspaceItemTypeId = string;
|
||||||
|
|
||||||
|
export type WorkspaceStaticItem = SidebarItem & {
|
||||||
|
contextKind: WorkspaceStaticKind;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceFolderNode = {
|
||||||
|
id: string;
|
||||||
|
path?: string;
|
||||||
|
label: string;
|
||||||
|
kind: "folder";
|
||||||
|
icon: ShellIcon;
|
||||||
|
active?: boolean;
|
||||||
|
meta?: string;
|
||||||
|
children?: readonly WorkspaceTreeNode[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceItemNode = {
|
||||||
|
id: string;
|
||||||
|
path?: string;
|
||||||
|
label: string;
|
||||||
|
kind: "item";
|
||||||
|
itemType: WorkspaceItemTypeId;
|
||||||
|
active?: boolean;
|
||||||
|
meta?: string;
|
||||||
|
children?: undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceTreeNode = WorkspaceFolderNode | WorkspaceItemNode;
|
||||||
|
|
||||||
|
export type WorkspaceItemTypeDefinition = {
|
||||||
|
id: WorkspaceItemTypeId;
|
||||||
|
label: string;
|
||||||
|
shortLabel: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
noun: string;
|
||||||
|
actionPrefix: string;
|
||||||
|
defaultCreateLabel: string;
|
||||||
|
includeInWorkspaceCreate?: boolean;
|
||||||
|
description?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type SidebarHeaderAction = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type TopBarAction = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type MobileBottomNavItem = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
active?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceContextMenuTarget =
|
||||||
|
| {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
kind: WorkspaceStaticKind;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
kind: "folder";
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
kind: "item";
|
||||||
|
itemType: WorkspaceItemTypeId;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceContextMenuAction = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
tone?: "default" | "danger";
|
||||||
|
shortcut?: WorkspaceContextMenuShortcut;
|
||||||
|
children?: readonly WorkspaceContextMenuAction[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceContextMenuShortcutModifier = "meta" | "alt" | "shift";
|
||||||
|
|
||||||
|
export type WorkspaceContextMenuShortcutKey = "b" | "c" | "d" | "delete" | "enter" | "f" | "m" | "r";
|
||||||
|
|
||||||
|
export type WorkspaceContextMenuShortcut = {
|
||||||
|
modifiers?: readonly WorkspaceContextMenuShortcutModifier[];
|
||||||
|
key: WorkspaceContextMenuShortcutKey;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type WorkspaceContextMenuSection = {
|
||||||
|
id: string;
|
||||||
|
label?: string;
|
||||||
|
items: readonly WorkspaceContextMenuAction[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type NotificationItem = {
|
||||||
|
id: string;
|
||||||
|
title: string;
|
||||||
|
contextLabel: string;
|
||||||
|
timeLabel: string;
|
||||||
|
unread?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ProfileMenuAction = {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
icon: ShellIcon;
|
||||||
|
tone?: "default" | "danger";
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ProfileMenuSection = {
|
||||||
|
id: string;
|
||||||
|
items: readonly ProfileMenuAction[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ActiveUserProfile = {
|
||||||
|
name: string;
|
||||||
|
email: string;
|
||||||
|
roleLabel: string;
|
||||||
|
contextLabel: string;
|
||||||
|
};
|
||||||
@@ -0,0 +1,173 @@
|
|||||||
|
// Path: Frontend/src/components/bootstrap/BootstrapWizard/BootstrapWizard.data.ts
|
||||||
|
|
||||||
|
export type BootstrapStepKey = "persona" | "instance" | "mode" | "admin" | "structure";
|
||||||
|
|
||||||
|
export type BootstrapStepDefinition = {
|
||||||
|
id: BootstrapStepKey;
|
||||||
|
title: string;
|
||||||
|
buttonLabel: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type InstanceForm = {
|
||||||
|
protocol: "http" | "https";
|
||||||
|
access: "local" | "remote";
|
||||||
|
host: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ModeForm = {
|
||||||
|
mode: "personal" | "organizational";
|
||||||
|
name: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AdminForm = {
|
||||||
|
displayName: string;
|
||||||
|
email: string;
|
||||||
|
password: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type StructureForm = {
|
||||||
|
departmentName: string;
|
||||||
|
teamName: string;
|
||||||
|
projectName: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type BootstrapPersona = "personal" | "enthusiast" | "team" | "organization";
|
||||||
|
|
||||||
|
export type BootstrapPersonaDefinition = {
|
||||||
|
id: BootstrapPersona;
|
||||||
|
title: string;
|
||||||
|
isAvailable: boolean;
|
||||||
|
bestFor: string;
|
||||||
|
bullets: readonly string[];
|
||||||
|
defaults: {
|
||||||
|
protocol: InstanceForm["protocol"];
|
||||||
|
access: InstanceForm["access"];
|
||||||
|
host: string;
|
||||||
|
mode: ModeForm["mode"];
|
||||||
|
namePlaceholder: string;
|
||||||
|
departmentName: string;
|
||||||
|
teamName: string;
|
||||||
|
projectName: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const bootstrapStepDefinitions: readonly BootstrapStepDefinition[] = [
|
||||||
|
{ id: "persona", title: "What are you setting up your server for?", buttonLabel: "Continue" },
|
||||||
|
{ id: "instance", title: "Connection details", buttonLabel: "Save and continue" },
|
||||||
|
{ id: "mode", title: "Server identity", buttonLabel: "Save and continue" },
|
||||||
|
{ id: "admin", title: "Admin account", buttonLabel: "Save and continue" },
|
||||||
|
{ id: "structure", title: "Initial structure", buttonLabel: "Submit" },
|
||||||
|
];
|
||||||
|
|
||||||
|
export const defaultInstanceForm: InstanceForm = {
|
||||||
|
protocol: "http",
|
||||||
|
access: "local",
|
||||||
|
host: "localhost",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const defaultModeForm: ModeForm = {
|
||||||
|
mode: "personal",
|
||||||
|
name: "",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const defaultAdminForm: AdminForm = {
|
||||||
|
displayName: "Admin",
|
||||||
|
email: "admin@example.com",
|
||||||
|
password: "",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const personalStructureDefaults = {
|
||||||
|
departmentName: "Default",
|
||||||
|
teamName: "Personal",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const organizationalStructureDefaults = {
|
||||||
|
departmentName: "Department",
|
||||||
|
teamName: "Team",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const defaultStructureForm: StructureForm = {
|
||||||
|
...personalStructureDefaults,
|
||||||
|
projectName: "Project",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const bootstrapPersonaDefinitions: readonly BootstrapPersonaDefinition[] = [
|
||||||
|
{
|
||||||
|
id: "personal",
|
||||||
|
title: "Personal",
|
||||||
|
isAvailable: true,
|
||||||
|
bestFor: "Best for low maintenance, personal use",
|
||||||
|
bullets: ["Preconfigured for personal use", "Low setup time", "Easy to manage"],
|
||||||
|
defaults: {
|
||||||
|
protocol: "http",
|
||||||
|
access: "local",
|
||||||
|
host: "localhost",
|
||||||
|
mode: "personal",
|
||||||
|
namePlaceholder: "Personal Server",
|
||||||
|
departmentName: "Default",
|
||||||
|
teamName: "Personal",
|
||||||
|
projectName: "Project",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "enthusiast",
|
||||||
|
title: "Self Hosted Enthusiast",
|
||||||
|
isAvailable: true,
|
||||||
|
bestFor: "Best for people who want to customize their server",
|
||||||
|
bullets: ["Networking knowledge", "Comfortable with tinkering", "Willing to troubleshoot issues"],
|
||||||
|
defaults: {
|
||||||
|
protocol: "https",
|
||||||
|
access: "remote",
|
||||||
|
host: "moku.local",
|
||||||
|
mode: "personal",
|
||||||
|
namePlaceholder: "Personal Server",
|
||||||
|
departmentName: "Default",
|
||||||
|
teamName: "Personal",
|
||||||
|
projectName: "Project",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "team",
|
||||||
|
title: "Team",
|
||||||
|
isAvailable: true,
|
||||||
|
bestFor: "Best for low maintenance but for small team",
|
||||||
|
bullets: ["Built-in collaboration with low setup time", "Keeps the shared structure simple", "Good for a small product, design, or delivery team"],
|
||||||
|
defaults: {
|
||||||
|
protocol: "http",
|
||||||
|
access: "local",
|
||||||
|
host: "localhost",
|
||||||
|
mode: "organizational",
|
||||||
|
namePlaceholder: "Team Server",
|
||||||
|
departmentName: "Default",
|
||||||
|
teamName: "Core Team",
|
||||||
|
projectName: "Project",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "organization",
|
||||||
|
title: "Organization",
|
||||||
|
isAvailable: true,
|
||||||
|
bestFor: "Best for multiple teams and shared ownership",
|
||||||
|
bullets: ["SME to Organization", "Fine grained access control", "Better fit for teams with multiple departments"],
|
||||||
|
defaults: {
|
||||||
|
protocol: "https",
|
||||||
|
access: "remote",
|
||||||
|
host: "workspace.example.com",
|
||||||
|
mode: "organizational",
|
||||||
|
namePlaceholder: "Organization server name",
|
||||||
|
departmentName: "Operations",
|
||||||
|
teamName: "Platform Team",
|
||||||
|
projectName: "Moku",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const workspaceHomeFieldTooltips = {
|
||||||
|
protocol: "Usually people use http for a local-only setup and https when the server will be reached over a domain or reverse proxy.",
|
||||||
|
access: "Usually people use local when Moku is only reached on the same machine or LAN, and remote when they plan to reach it from another network or public domain.",
|
||||||
|
host: "Examples people usually set here are localhost, moku.local, or a real domain like workspace.example.com depending on how they plan to reach the server.",
|
||||||
|
serverName: "This is the friendly name people usually give the server itself, for example Personal Server, Ronald's Server, Homelab, Studio, or Workspace.",
|
||||||
|
department: "Departments are the highest-level grouping for work. People usually use names like Default, Operations, Product, Design, or Engineering.",
|
||||||
|
team: "Teams sit inside a department. Common examples are Personal, Platform Team, Core Team, Delivery, or Design Systems.",
|
||||||
|
project: "Projects are the workspace or initiative people work inside. Common examples are Project, Shared Workspace, Moku, Client Portal, or Website Redesign.",
|
||||||
|
} as const;
|
||||||
@@ -0,0 +1,469 @@
|
|||||||
|
// Path: Frontend/src/components/bootstrap/BootstrapWizard/BootstrapWizard.hook.ts
|
||||||
|
|
||||||
|
import { createEffect, createMemo, createSignal, onCleanup } from "solid-js";
|
||||||
|
import { createStore } from "solid-js/store";
|
||||||
|
import {
|
||||||
|
bootstrapPersonaDefinitions,
|
||||||
|
bootstrapStepDefinitions,
|
||||||
|
defaultAdminForm,
|
||||||
|
defaultInstanceForm,
|
||||||
|
defaultModeForm,
|
||||||
|
defaultStructureForm,
|
||||||
|
organizationalStructureDefaults,
|
||||||
|
personalStructureDefaults,
|
||||||
|
type AdminForm,
|
||||||
|
type BootstrapPersona,
|
||||||
|
type BootstrapPersonaDefinition,
|
||||||
|
type BootstrapStepDefinition,
|
||||||
|
type BootstrapStepKey,
|
||||||
|
type InstanceForm,
|
||||||
|
type ModeForm,
|
||||||
|
type StructureForm,
|
||||||
|
} from "./BootstrapWizard.data";
|
||||||
|
import { submitBootstrapStepRequest } from "./bootstrapWizard.api";
|
||||||
|
|
||||||
|
type AppShellBootstrapAdapter = {
|
||||||
|
installation: () => { isBootstrapped?: boolean; materializationStatus?: string; materializationError?: string } | undefined;
|
||||||
|
status: () => string;
|
||||||
|
reload: () => Promise<void>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type BootstrapSubmissionState = {
|
||||||
|
status: "idle" | "submitting" | "success" | "error";
|
||||||
|
error: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type MaterializationState = "not_started" | "pending" | "running" | "succeeded" | "failed";
|
||||||
|
|
||||||
|
export type FieldTooltipState = {
|
||||||
|
text: string;
|
||||||
|
left: number;
|
||||||
|
top: number;
|
||||||
|
placement: "top" | "bottom";
|
||||||
|
};
|
||||||
|
|
||||||
|
const initialSubmissionState = (): BootstrapSubmissionState => ({
|
||||||
|
status: "idle",
|
||||||
|
error: "",
|
||||||
|
});
|
||||||
|
|
||||||
|
const materializationPollIntervalMs = 2000;
|
||||||
|
|
||||||
|
export const useBootstrapWizard = (appShellData: AppShellBootstrapAdapter) => {
|
||||||
|
const [instanceForm, setInstanceForm] = createStore<InstanceForm>({ ...defaultInstanceForm });
|
||||||
|
const [modeForm, setModeForm] = createStore<ModeForm>({ ...defaultModeForm });
|
||||||
|
const [adminForm, setAdminForm] = createStore<AdminForm>({ ...defaultAdminForm });
|
||||||
|
const [structureForm, setStructureForm] = createStore<StructureForm>({ ...defaultStructureForm });
|
||||||
|
const [selectedPersona, setSelectedPersona] = createSignal<BootstrapPersona>("enthusiast");
|
||||||
|
const [hasChosenPersona, setHasChosenPersona] = createSignal(false);
|
||||||
|
const [stepState, setStepState] = createStore<Record<BootstrapStepKey, BootstrapSubmissionState>>({
|
||||||
|
persona: initialSubmissionState(),
|
||||||
|
instance: initialSubmissionState(),
|
||||||
|
mode: initialSubmissionState(),
|
||||||
|
admin: initialSubmissionState(),
|
||||||
|
structure: initialSubmissionState(),
|
||||||
|
});
|
||||||
|
const [isBootstrapStateResolved, setIsBootstrapStateResolved] = createSignal(false);
|
||||||
|
const [isBootstrapComplete, setIsBootstrapComplete] = createSignal(false);
|
||||||
|
const [isWizardOpen, setIsWizardOpen] = createSignal(false);
|
||||||
|
const [isFinishingBootstrapFlow, setIsFinishingBootstrapFlow] = createSignal(false);
|
||||||
|
const [currentStepIndex, setCurrentStepIndex] = createSignal(0);
|
||||||
|
const [fieldTooltip, setFieldTooltip] = createSignal<FieldTooltipState | null>(null);
|
||||||
|
|
||||||
|
const installation = createMemo(() => appShellData.installation());
|
||||||
|
const materializationState = createMemo<MaterializationState>(() => {
|
||||||
|
const status = installation()?.materializationStatus;
|
||||||
|
|
||||||
|
switch (status) {
|
||||||
|
case "pending":
|
||||||
|
case "running":
|
||||||
|
case "failed":
|
||||||
|
case "succeeded":
|
||||||
|
case "not_started":
|
||||||
|
return status;
|
||||||
|
default:
|
||||||
|
return installation()?.isBootstrapped ? "succeeded" : "not_started";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const isBootstrapPersisted = createMemo(() => installation()?.isBootstrapped ?? false);
|
||||||
|
const isMaterializationInFlight = createMemo(() => materializationState() === "pending" || materializationState() === "running");
|
||||||
|
const hasMaterializationFailed = createMemo(() => materializationState() === "failed");
|
||||||
|
const showBootstrapFinishingState = createMemo(() => isFinishingBootstrapFlow() && (isMaterializationInFlight() || hasMaterializationFailed()));
|
||||||
|
const materializationStatusLabel = createMemo(() => {
|
||||||
|
switch (materializationState()) {
|
||||||
|
case "pending":
|
||||||
|
return "Materialization queued";
|
||||||
|
case "running":
|
||||||
|
return "Materialization running";
|
||||||
|
case "failed":
|
||||||
|
return "Materialization failed";
|
||||||
|
case "succeeded":
|
||||||
|
return "Ready";
|
||||||
|
default:
|
||||||
|
return "Not started";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const materializationMessage = createMemo(() => {
|
||||||
|
if (isMaterializationInFlight()) {
|
||||||
|
return "Your bootstrap is saved. The worker is still creating the POSIX skeleton and rebuilding the app shell index.";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasMaterializationFailed()) {
|
||||||
|
return installation()?.materializationError || "Bootstrap saved, but background materialization did not finish cleanly.";
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
});
|
||||||
|
const personaDefinition = createMemo<BootstrapPersonaDefinition>(() => bootstrapPersonaDefinitions.find((persona) => persona.id === selectedPersona()) ?? bootstrapPersonaDefinitions[0]!);
|
||||||
|
const selectedPersonaIsAvailable = createMemo(() => personaDefinition().isAvailable);
|
||||||
|
const usesCondensedBootstrapFlow = createMemo(() => selectedPersona() === "personal" || selectedPersona() === "team");
|
||||||
|
const activeBootstrapSteps = createMemo<readonly BootstrapStepDefinition[]>(() => {
|
||||||
|
if (usesCondensedBootstrapFlow()) {
|
||||||
|
return [bootstrapStepDefinitions[0]!, bootstrapStepDefinitions[2]!, bootstrapStepDefinitions[3]!];
|
||||||
|
}
|
||||||
|
|
||||||
|
return bootstrapStepDefinitions;
|
||||||
|
});
|
||||||
|
const activeWizardSteps = createMemo(() => activeBootstrapSteps().filter((step) => step.id !== "persona"));
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
const defaults = personaDefinition().defaults;
|
||||||
|
|
||||||
|
setInstanceForm({
|
||||||
|
protocol: defaults.protocol,
|
||||||
|
access: defaults.access,
|
||||||
|
host: defaults.host,
|
||||||
|
});
|
||||||
|
setModeForm("mode", defaults.mode);
|
||||||
|
setStructureForm({
|
||||||
|
departmentName: defaults.departmentName,
|
||||||
|
teamName: defaults.teamName,
|
||||||
|
projectName: defaults.projectName,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
if (modeForm.mode === "personal") {
|
||||||
|
setStructureForm("departmentName", personalStructureDefaults.departmentName);
|
||||||
|
setStructureForm("teamName", personalStructureDefaults.teamName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (structureForm.departmentName === personalStructureDefaults.departmentName) {
|
||||||
|
setStructureForm("departmentName", organizationalStructureDefaults.departmentName);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (structureForm.teamName === personalStructureDefaults.teamName) {
|
||||||
|
setStructureForm("teamName", organizationalStructureDefaults.teamName);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const resetWizardState = (): void => {
|
||||||
|
setSelectedPersona("enthusiast");
|
||||||
|
setHasChosenPersona(false);
|
||||||
|
setInstanceForm({ ...defaultInstanceForm });
|
||||||
|
setModeForm({ ...defaultModeForm });
|
||||||
|
setAdminForm({ ...defaultAdminForm });
|
||||||
|
setStructureForm({ ...defaultStructureForm });
|
||||||
|
setStepState({
|
||||||
|
persona: initialSubmissionState(),
|
||||||
|
instance: initialSubmissionState(),
|
||||||
|
mode: initialSubmissionState(),
|
||||||
|
admin: initialSubmissionState(),
|
||||||
|
structure: initialSubmissionState(),
|
||||||
|
});
|
||||||
|
setCurrentStepIndex(0);
|
||||||
|
setIsFinishingBootstrapFlow(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
const shellStatus = appShellData.status();
|
||||||
|
|
||||||
|
if (shellStatus === "idle" || shellStatus === "loading") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (shellStatus !== "success") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isBootstrapPersisted()) {
|
||||||
|
setIsFinishingBootstrapFlow(false);
|
||||||
|
resetWizardState();
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsBootstrapComplete(isBootstrapPersisted() && !isMaterializationInFlight());
|
||||||
|
setIsWizardOpen(!isBootstrapPersisted() || showBootstrapFinishingState());
|
||||||
|
setIsBootstrapStateResolved(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
if (!isFinishingBootstrapFlow()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isMaterializationInFlight() || hasMaterializationFailed()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsFinishingBootstrapFlow(false);
|
||||||
|
setIsWizardOpen(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
if (!isBootstrapPersisted() || !isMaterializationInFlight()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let cancelled = false;
|
||||||
|
let timeoutId: number | undefined;
|
||||||
|
|
||||||
|
const scheduleReload = (): void => {
|
||||||
|
timeoutId = window.setTimeout(async () => {
|
||||||
|
if (cancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await appShellData.reload();
|
||||||
|
|
||||||
|
if (!cancelled && isBootstrapPersisted() && isMaterializationInFlight()) {
|
||||||
|
scheduleReload();
|
||||||
|
}
|
||||||
|
}, materializationPollIntervalMs);
|
||||||
|
};
|
||||||
|
|
||||||
|
scheduleReload();
|
||||||
|
|
||||||
|
onCleanup(() => {
|
||||||
|
cancelled = true;
|
||||||
|
|
||||||
|
if (timeoutId !== undefined) {
|
||||||
|
window.clearTimeout(timeoutId);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const bootstrapNamePlaceholder = (): string => personaDefinition().defaults.namePlaceholder;
|
||||||
|
const bootstrapStepCount = createMemo(() => activeWizardSteps().length);
|
||||||
|
const currentStep = createMemo<BootstrapStepDefinition>(() => activeBootstrapSteps()[currentStepIndex()] ?? activeBootstrapSteps()[0] ?? bootstrapStepDefinitions[0]!);
|
||||||
|
const currentWizardStepIndex = createMemo(() => {
|
||||||
|
const visibleIndex = activeWizardSteps().findIndex((step) => step.id === currentStep().id);
|
||||||
|
|
||||||
|
return visibleIndex >= 0 ? visibleIndex : 0;
|
||||||
|
});
|
||||||
|
const wizardProgressPercent = createMemo(() => {
|
||||||
|
const totalSteps = bootstrapStepCount();
|
||||||
|
const activeIndex = Math.max(currentWizardStepIndex(), 0);
|
||||||
|
|
||||||
|
if (totalSteps <= 1) {
|
||||||
|
return 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (activeIndex / (totalSteps - 1)) * 100;
|
||||||
|
});
|
||||||
|
const wizardProgressFillWidth = createMemo(() => {
|
||||||
|
if (currentStepIndex() <= 0) {
|
||||||
|
return `${wizardProgressPercent()}%`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return `calc(${wizardProgressPercent()}% + ((var(--control-size-md) - var(--space-2)) / 2))`;
|
||||||
|
});
|
||||||
|
const currentStepState = createMemo<BootstrapSubmissionState>(() => stepState[currentStep().id]);
|
||||||
|
const isFirstStep = (): boolean => currentStepIndex() === 0;
|
||||||
|
const isLastStep = (): boolean => currentStepIndex() === activeBootstrapSteps().length - 1;
|
||||||
|
const canDismissWizard = (): boolean => isBootstrapPersisted() && !isMaterializationInFlight();
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
setCurrentStepIndex((index) => Math.min(index, activeBootstrapSteps().length - 1));
|
||||||
|
});
|
||||||
|
|
||||||
|
const submitStep = async (step: BootstrapStepKey, payload: unknown): Promise<boolean> => {
|
||||||
|
setStepState(step, { status: "submitting", error: "" });
|
||||||
|
|
||||||
|
try {
|
||||||
|
await submitBootstrapStepRequest(step, payload);
|
||||||
|
|
||||||
|
setStepState(step, {
|
||||||
|
status: "success",
|
||||||
|
error: "",
|
||||||
|
});
|
||||||
|
|
||||||
|
return true;
|
||||||
|
} catch (error) {
|
||||||
|
setStepState(step, {
|
||||||
|
status: "error",
|
||||||
|
error: error instanceof Error ? error.message : `Bootstrap ${step} request failed.`,
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const payloadForStep = (step: BootstrapStepKey): unknown => {
|
||||||
|
switch (step) {
|
||||||
|
case "instance":
|
||||||
|
return instanceForm;
|
||||||
|
case "mode":
|
||||||
|
return modeForm;
|
||||||
|
case "admin":
|
||||||
|
return adminForm;
|
||||||
|
case "structure":
|
||||||
|
return structureForm;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const applyPersonaSelection = (persona: BootstrapPersona): void => {
|
||||||
|
const definition = bootstrapPersonaDefinitions.find((candidate) => candidate.id === persona);
|
||||||
|
|
||||||
|
if (!definition?.isAvailable) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setSelectedPersona(persona);
|
||||||
|
setHasChosenPersona(true);
|
||||||
|
setStepState("persona", {
|
||||||
|
status: "success",
|
||||||
|
error: "",
|
||||||
|
});
|
||||||
|
setCurrentStepIndex((index) => Math.min(index + 1, activeBootstrapSteps().length - 1));
|
||||||
|
};
|
||||||
|
|
||||||
|
const statusLabel = (state: BootstrapSubmissionState): string => {
|
||||||
|
switch (state.status) {
|
||||||
|
case "submitting":
|
||||||
|
return "Sending";
|
||||||
|
case "error":
|
||||||
|
return "Request failed";
|
||||||
|
default:
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const submitCurrentStep = async (): Promise<void> => {
|
||||||
|
const step = currentStep().id;
|
||||||
|
|
||||||
|
if (step === "persona") {
|
||||||
|
applyPersonaSelection(selectedPersona());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (step === "mode" && usesCondensedBootstrapFlow() && stepState.instance.status !== "success") {
|
||||||
|
const didPersistInstanceDefaults = await submitStep("instance", instanceForm);
|
||||||
|
|
||||||
|
if (!didPersistInstanceDefaults) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const didSucceed = await submitStep(step, payloadForStep(step));
|
||||||
|
|
||||||
|
if (!didSucceed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (step === "admin" && usesCondensedBootstrapFlow()) {
|
||||||
|
const didPersistStructureDefaults = await submitStep("structure", structureForm);
|
||||||
|
|
||||||
|
if (!didPersistStructureDefaults) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isLastStep()) {
|
||||||
|
await appShellData.reload();
|
||||||
|
|
||||||
|
const shouldShowFinishingState = isBootstrapPersisted() && (isMaterializationInFlight() || hasMaterializationFailed());
|
||||||
|
setIsFinishingBootstrapFlow(shouldShowFinishingState);
|
||||||
|
setIsBootstrapComplete(isBootstrapPersisted() && !isMaterializationInFlight());
|
||||||
|
setIsWizardOpen(!isBootstrapPersisted() || shouldShowFinishingState);
|
||||||
|
setIsBootstrapStateResolved(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setCurrentStepIndex((index) => Math.min(index + 1, activeBootstrapSteps().length - 1));
|
||||||
|
};
|
||||||
|
|
||||||
|
const showFieldTooltip = (target: HTMLElement, text: string): void => {
|
||||||
|
const rect = target.getBoundingClientRect();
|
||||||
|
const placement = rect.top > 96 ? "top" : "bottom";
|
||||||
|
const viewportPadding = 20;
|
||||||
|
const left = Math.min(Math.max(rect.left + rect.width / 2, viewportPadding), window.innerWidth - viewportPadding);
|
||||||
|
const top = placement === "top" ? rect.top - 10 : rect.bottom + 10;
|
||||||
|
|
||||||
|
setFieldTooltip({ text, left, top, placement });
|
||||||
|
};
|
||||||
|
|
||||||
|
const hideFieldTooltip = (): void => {
|
||||||
|
setFieldTooltip(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const stepStatusLabel = (step: BootstrapStepDefinition): string => {
|
||||||
|
const state = stepState[step.id];
|
||||||
|
|
||||||
|
if (state.status === "success") {
|
||||||
|
return "Done";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (state.status === "error") {
|
||||||
|
return "Needs retry";
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
instanceForm,
|
||||||
|
setInstanceForm,
|
||||||
|
modeForm,
|
||||||
|
setModeForm,
|
||||||
|
adminForm,
|
||||||
|
setAdminForm,
|
||||||
|
structureForm,
|
||||||
|
setStructureForm,
|
||||||
|
selectedPersona,
|
||||||
|
setSelectedPersona,
|
||||||
|
hasChosenPersona,
|
||||||
|
stepState,
|
||||||
|
isBootstrapStateResolved,
|
||||||
|
isBootstrapComplete,
|
||||||
|
isWizardOpen,
|
||||||
|
setIsWizardOpen,
|
||||||
|
isFinishingBootstrapFlow,
|
||||||
|
setIsFinishingBootstrapFlow,
|
||||||
|
fieldTooltip,
|
||||||
|
materializationState,
|
||||||
|
isMaterializationInFlight,
|
||||||
|
hasMaterializationFailed,
|
||||||
|
showBootstrapFinishingState,
|
||||||
|
materializationStatusLabel,
|
||||||
|
materializationMessage,
|
||||||
|
personaDefinition,
|
||||||
|
selectedPersonaIsAvailable,
|
||||||
|
usesCondensedBootstrapFlow,
|
||||||
|
activeWizardSteps,
|
||||||
|
bootstrapNamePlaceholder,
|
||||||
|
bootstrapStepCount,
|
||||||
|
currentStep,
|
||||||
|
currentWizardStepIndex,
|
||||||
|
wizardProgressFillWidth,
|
||||||
|
currentStepState,
|
||||||
|
isFirstStep,
|
||||||
|
canDismissWizard,
|
||||||
|
resetWizardState,
|
||||||
|
handleCurrentStepSubmit: (event: SubmitEvent & { currentTarget: HTMLFormElement; target: Element }): void => {
|
||||||
|
event.preventDefault();
|
||||||
|
void submitCurrentStep();
|
||||||
|
},
|
||||||
|
applyPersonaSelection,
|
||||||
|
statusLabel,
|
||||||
|
showFieldTooltip,
|
||||||
|
hideFieldTooltip,
|
||||||
|
stepStatusLabel,
|
||||||
|
navigateBack: (): void => {
|
||||||
|
setCurrentStepIndex((index) => Math.max(index - 1, 0));
|
||||||
|
},
|
||||||
|
navigateToVisibleStep: (index: number): void => {
|
||||||
|
setCurrentStepIndex(index + 1);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -0,0 +1,968 @@
|
|||||||
|
/* Path: Frontend/src/components/bootstrap/BootstrapWizard/BootstrapWizard.module.scss */
|
||||||
|
|
||||||
|
.viewport,
|
||||||
|
.wizardLayer {
|
||||||
|
--workspace-content-max-width: var(--content-width-wide);
|
||||||
|
--bootstrap-accent: var(--color-accent-primary, var(--color-primary-2, hsl(272 80% 70%)));
|
||||||
|
--bootstrap-accent-contrast: var(--color-accent-primary-contrast, white);
|
||||||
|
}
|
||||||
|
|
||||||
|
.viewport {
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 0;
|
||||||
|
display: grid;
|
||||||
|
align-content: start;
|
||||||
|
gap: var(--space-5);
|
||||||
|
padding: var(--space-5) var(--space-6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBar {
|
||||||
|
width: 100%;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
min-height: calc(var(--control-size-md) - var(--space-3));
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBarStart,
|
||||||
|
.workspaceTopBarEnd {
|
||||||
|
min-width: calc(var(--control-size-md) - 0.5rem);
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBarEnd {
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBarCenter {
|
||||||
|
min-width: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceBreadcrumb {
|
||||||
|
@include text-caption;
|
||||||
|
min-width: 0;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceCollapseButton {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: calc(var(--control-size-md) - 0.5rem);
|
||||||
|
height: calc(var(--control-size-md) - 0.5rem);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--color-border-strong) 44%, transparent);
|
||||||
|
border-radius: var(--radius-pill);
|
||||||
|
background: color-mix(in srgb, var(--color-surface) 94%, transparent);
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
box-shadow: var(--shadow-soft);
|
||||||
|
transition:
|
||||||
|
background 160ms var(--easing-standard),
|
||||||
|
color 160ms var(--easing-standard),
|
||||||
|
border-color 160ms var(--easing-standard),
|
||||||
|
transform 180ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceCollapseButton:hover,
|
||||||
|
.workspaceCollapseButton:focus-visible {
|
||||||
|
background: var(--color-surface-hover);
|
||||||
|
border-color: var(--color-border);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceCollapseButton:hover {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-3);
|
||||||
|
width: 100%;
|
||||||
|
max-width: var(--workspace-content-max-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.heroActions {
|
||||||
|
display: flex;
|
||||||
|
gap: var(--space-3);
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heroStatus {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
justify-items: start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heroStatusMessage {
|
||||||
|
max-width: 64ch;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.heroStatusMessage[data-status="failed"] {
|
||||||
|
color: var(--color-danger-text, var(--color-text));
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
@include text-display;
|
||||||
|
font-family: var(--font-family-display);
|
||||||
|
max-width: 12ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
max-width: 64ch;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.overviewCard,
|
||||||
|
.summaryCard,
|
||||||
|
.wizardSidebarSection,
|
||||||
|
.wizardStepPanel {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding: var(--space-4);
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
border-radius: var(--radius-xl);
|
||||||
|
background: var(--color-surface);
|
||||||
|
box-shadow: var(--shadow-soft);
|
||||||
|
}
|
||||||
|
|
||||||
|
.overviewCard {
|
||||||
|
width: 100%;
|
||||||
|
max-width: var(--workspace-content-max-width);
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.summaryGrid {
|
||||||
|
width: 100%;
|
||||||
|
max-width: var(--workspace-content-max-width);
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
gap: var(--space-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.summaryCard {
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summaryCardHeader {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.summaryStepNumber,
|
||||||
|
.wizardStepEyebrow {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.06em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sectionHeader {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sectionTitle,
|
||||||
|
.cardTitle,
|
||||||
|
.wizardTitle,
|
||||||
|
.sidebarTitle {
|
||||||
|
@include text-title;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sectionCopy,
|
||||||
|
.cardCopy,
|
||||||
|
.cardMeta {
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusBadge {
|
||||||
|
@include text-caption;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
min-height: calc(var(--control-size-sm) - 0.25rem);
|
||||||
|
padding: 0 var(--space-2);
|
||||||
|
border-radius: var(--radius-pill);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--color-border-strong) 44%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-surface-secondary) 92%, transparent);
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusBadge[data-status="submitting"] {
|
||||||
|
color: var(--bootstrap-accent);
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 38%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusBadge[data-status="success"] {
|
||||||
|
color: var(--color-success-text, var(--color-text));
|
||||||
|
border-color: color-mix(in srgb, var(--color-success-border, var(--color-border)) 64%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-success-surface, var(--color-surface-secondary)) 80%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusBadge[data-status="pending"],
|
||||||
|
.statusBadge[data-status="running"] {
|
||||||
|
color: var(--bootstrap-accent);
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 38%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--bootstrap-accent) 10%, var(--color-surface-secondary));
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusBadge[data-status="failed"] {
|
||||||
|
color: var(--color-danger-text, var(--color-text));
|
||||||
|
border-color: color-mix(in srgb, var(--color-danger-border, var(--color-border)) 68%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-danger-surface, var(--color-surface-secondary)) 80%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusBadge[data-status="error"] {
|
||||||
|
color: var(--color-danger-text, var(--color-text));
|
||||||
|
border-color: color-mix(in srgb, var(--color-danger-border, var(--color-border)) 68%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-danger-surface, var(--color-surface-secondary)) 80%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.endpointMeta {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.endpointMeta span {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.endpointMeta code,
|
||||||
|
.cardMeta {
|
||||||
|
@include text-caption;
|
||||||
|
}
|
||||||
|
|
||||||
|
.endpointMeta code {
|
||||||
|
padding: 0.125rem 0.5rem;
|
||||||
|
border-radius: var(--radius-pill);
|
||||||
|
background: color-mix(in srgb, var(--color-surface-secondary) 90%, transparent);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.form {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.field {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldLabel {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldLabelRow {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.35rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldInfoButton {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
cursor: help;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldInfoButton:hover,
|
||||||
|
.fieldInfoButton:focus-visible {
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltip {
|
||||||
|
position: fixed;
|
||||||
|
z-index: calc(var(--z-modal, 1000) + 4);
|
||||||
|
pointer-events: none;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
max-width: min(18rem, calc(100vw - 2rem));
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltip[data-placement="top"] {
|
||||||
|
transform: translate(-50%, -100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltip[data-placement="bottom"] {
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltipBubble {
|
||||||
|
position: relative;
|
||||||
|
padding: 0.45rem 0.6rem;
|
||||||
|
border: 1px solid color-mix(in srgb, var(--color-border-strong) 48%, transparent);
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--color-surface-elevated, var(--color-surface)) 96%, black 4%);
|
||||||
|
box-shadow: var(--shadow-soft);
|
||||||
|
color: var(--color-text);
|
||||||
|
white-space: normal;
|
||||||
|
text-align: left;
|
||||||
|
line-height: 1.35;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltipBubble::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
width: 0.55rem;
|
||||||
|
height: 0.55rem;
|
||||||
|
background: color-mix(in srgb, var(--color-surface-elevated, var(--color-surface)) 96%, black 4%);
|
||||||
|
transform: translateX(-50%) rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltip[data-placement="top"] .fieldTooltipBubble::after {
|
||||||
|
top: calc(100% - 0.3rem);
|
||||||
|
border-right: 1px solid color-mix(in srgb, var(--color-border-strong) 48%, transparent);
|
||||||
|
border-bottom: 1px solid color-mix(in srgb, var(--color-border-strong) 48%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldTooltip[data-placement="bottom"] .fieldTooltipBubble::after {
|
||||||
|
bottom: calc(100% - 0.3rem);
|
||||||
|
border-top: 1px solid color-mix(in srgb, var(--color-border-strong) 48%, transparent);
|
||||||
|
border-left: 1px solid color-mix(in srgb, var(--color-border-strong) 48%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fieldHelp {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaIntro {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaGrid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard {
|
||||||
|
appearance: none;
|
||||||
|
position: relative;
|
||||||
|
display: grid;
|
||||||
|
padding: var(--space-3);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--color-border) 88%, transparent);
|
||||||
|
border-radius: var(--radius-xl);
|
||||||
|
background: color-mix(in srgb, var(--color-surface-secondary) 84%, transparent);
|
||||||
|
text-align: left;
|
||||||
|
overflow: hidden;
|
||||||
|
transition:
|
||||||
|
transform 180ms var(--easing-standard),
|
||||||
|
border-color 160ms var(--easing-standard),
|
||||||
|
background 160ms var(--easing-standard),
|
||||||
|
box-shadow 160ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard:hover,
|
||||||
|
.personaCard:focus-visible,
|
||||||
|
.personaCard[data-selected="true"] {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 32%, var(--color-border));
|
||||||
|
background: color-mix(in srgb, var(--bootstrap-accent) 7%, var(--color-surface));
|
||||||
|
box-shadow: var(--shadow-soft);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard:focus-visible {
|
||||||
|
outline: none;
|
||||||
|
box-shadow:
|
||||||
|
var(--shadow-soft),
|
||||||
|
0 0 0 3px color-mix(in srgb, var(--bootstrap-accent) 16%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard[data-available="false"] {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard[data-available="false"]:hover,
|
||||||
|
.personaCard[data-available="false"]:focus-visible,
|
||||||
|
.personaCard[data-available="false"][data-selected="true"] {
|
||||||
|
transform: none;
|
||||||
|
border-color: color-mix(in srgb, var(--color-border) 88%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-surface-secondary) 84%, transparent);
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCardMedia {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
justify-self: center;
|
||||||
|
align-self: center;
|
||||||
|
width: min(100%, 16rem);
|
||||||
|
aspect-ratio: 1 / 1;
|
||||||
|
border: 1px dashed color-mix(in srgb, var(--color-border-strong) 40%, transparent);
|
||||||
|
border-radius: calc(var(--radius-xl) - var(--space-1));
|
||||||
|
background: linear-gradient(
|
||||||
|
135deg,
|
||||||
|
color-mix(in srgb, var(--color-surface-elevated) 92%, transparent),
|
||||||
|
color-mix(in srgb, var(--color-surface-secondary) 88%, transparent)
|
||||||
|
);
|
||||||
|
transition:
|
||||||
|
filter 180ms var(--easing-standard),
|
||||||
|
opacity 180ms var(--easing-standard),
|
||||||
|
transform 180ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCardBody {
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
display: grid;
|
||||||
|
align-content: space-between;
|
||||||
|
gap: var(--space-3);
|
||||||
|
padding: var(--space-3);
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCardTitle {
|
||||||
|
@include text-title;
|
||||||
|
margin: 0;
|
||||||
|
max-width: min(100%, 14rem);
|
||||||
|
padding: 0.35rem 0.65rem;
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--color-surface) 84%, transparent);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCardDetails {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
max-height: 0;
|
||||||
|
opacity: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
align-self: end;
|
||||||
|
padding: var(--space-3);
|
||||||
|
border-radius: var(--radius-lg);
|
||||||
|
background: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
color-mix(in srgb, var(--color-surface) 18%, transparent),
|
||||||
|
color-mix(in srgb, var(--color-surface) 92%, transparent)
|
||||||
|
);
|
||||||
|
backdrop-filter: blur(12px);
|
||||||
|
transition:
|
||||||
|
max-height 180ms var(--easing-standard),
|
||||||
|
opacity 160ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard:hover .personaCardMedia,
|
||||||
|
.personaCard:focus-visible .personaCardMedia,
|
||||||
|
.personaCard[data-selected="true"] .personaCardMedia {
|
||||||
|
filter: brightness(0.72);
|
||||||
|
opacity: 0.92;
|
||||||
|
transform: scale(0.985);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard:hover .personaCardDetails,
|
||||||
|
.personaCard:focus-visible .personaCardDetails,
|
||||||
|
.personaCard[data-selected="true"] .personaCardDetails {
|
||||||
|
max-height: 12rem;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaCard[data-available="false"]:hover .personaCardMedia,
|
||||||
|
.personaCard[data-available="false"]:focus-visible .personaCardMedia,
|
||||||
|
.personaCard[data-available="false"][data-selected="true"] .personaCardMedia {
|
||||||
|
filter: brightness(0.82);
|
||||||
|
opacity: 0.96;
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaBestFor,
|
||||||
|
.personaBulletList {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaBulletList {
|
||||||
|
padding-left: 1rem;
|
||||||
|
display: grid;
|
||||||
|
gap: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.personaAvailability {
|
||||||
|
@include text-caption;
|
||||||
|
margin: 0;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.06em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.field input,
|
||||||
|
.field select {
|
||||||
|
min-height: var(--control-size-md);
|
||||||
|
width: 100%;
|
||||||
|
font: inherit;
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
border-radius: var(--radius-lg);
|
||||||
|
background: var(--color-surface-elevated);
|
||||||
|
color: var(--color-text);
|
||||||
|
padding: 0 var(--space-3);
|
||||||
|
transition:
|
||||||
|
border-color 160ms var(--easing-standard),
|
||||||
|
box-shadow 160ms var(--easing-standard),
|
||||||
|
background 160ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.field input:disabled,
|
||||||
|
.field select:disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
background: color-mix(in srgb, var(--color-surface-secondary) 92%, transparent);
|
||||||
|
border-color: color-mix(in srgb, var(--color-border) 72%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.field input:focus-visible,
|
||||||
|
.field select:focus-visible {
|
||||||
|
outline: none;
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 60%, var(--color-border));
|
||||||
|
box-shadow: 0 0 0 3px color-mix(in srgb, var(--bootstrap-accent) 16%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFormActions,
|
||||||
|
.heroActions,
|
||||||
|
.primaryButton,
|
||||||
|
.secondaryButton {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFormActions {
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: var(--space-3);
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFormActions .primaryButton {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.primaryButton,
|
||||||
|
.secondaryButton,
|
||||||
|
.wizardStepButton,
|
||||||
|
.wizardCloseButton {
|
||||||
|
appearance: none;
|
||||||
|
justify-content: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
min-height: var(--control-size-md);
|
||||||
|
border-radius: var(--radius-pill);
|
||||||
|
font-weight: 600;
|
||||||
|
cursor: pointer;
|
||||||
|
transition:
|
||||||
|
transform 180ms var(--easing-standard),
|
||||||
|
background 160ms var(--easing-standard),
|
||||||
|
border-color 160ms var(--easing-standard),
|
||||||
|
color 160ms var(--easing-standard),
|
||||||
|
box-shadow 160ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.primaryButton,
|
||||||
|
.secondaryButton,
|
||||||
|
.wizardCloseButton {
|
||||||
|
padding: 0 var(--space-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.primaryButton {
|
||||||
|
border: 1px solid color-mix(in srgb, var(--bootstrap-accent) 72%, black 8%);
|
||||||
|
background: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
color-mix(in srgb, var(--bootstrap-accent) 88%, white 12%),
|
||||||
|
color-mix(in srgb, var(--bootstrap-accent) 92%, black 8%)
|
||||||
|
);
|
||||||
|
color: var(--bootstrap-accent-contrast);
|
||||||
|
box-shadow:
|
||||||
|
inset 0 1px 0 color-mix(in srgb, white 28%, transparent),
|
||||||
|
0 10px 24px color-mix(in srgb, var(--bootstrap-accent) 26%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.secondaryButton,
|
||||||
|
.wizardCloseButton {
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
background: var(--color-surface-secondary);
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.primaryButton:hover,
|
||||||
|
.secondaryButton:hover,
|
||||||
|
.wizardCloseButton:hover,
|
||||||
|
.wizardProgressStep:hover {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.primaryButton:hover,
|
||||||
|
.primaryButton:focus-visible {
|
||||||
|
background: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
color-mix(in srgb, var(--bootstrap-accent) 84%, white 16%),
|
||||||
|
color-mix(in srgb, var(--bootstrap-accent) 90%, black 10%)
|
||||||
|
);
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 78%, black 10%);
|
||||||
|
box-shadow:
|
||||||
|
inset 0 1px 0 color-mix(in srgb, white 32%, transparent),
|
||||||
|
0 14px 32px color-mix(in srgb, var(--bootstrap-accent) 30%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.primaryButton:disabled,
|
||||||
|
.secondaryButton:disabled {
|
||||||
|
opacity: 0.72;
|
||||||
|
cursor: not-allowed;
|
||||||
|
transform: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorText {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-danger-text, var(--color-text));
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardLayer {
|
||||||
|
position: fixed;
|
||||||
|
inset: 0;
|
||||||
|
z-index: var(--z-modal);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardBackdrop {
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border: 0;
|
||||||
|
background: color-mix(in srgb, black 56%, transparent);
|
||||||
|
backdrop-filter: blur(var(--blur-overlay));
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardPanel {
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
width: min(calc(100vw - (var(--space-6) * 2)), 72rem);
|
||||||
|
max-height: calc(100dvh - (var(--space-6) * 2));
|
||||||
|
margin: var(--space-6) auto;
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-4);
|
||||||
|
padding: var(--space-4);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--color-border) 88%, transparent);
|
||||||
|
border-radius: var(--radius-xl);
|
||||||
|
background: color-mix(in srgb, var(--color-surface) 94%, var(--color-surface-elevated, var(--color-surface)) 6%);
|
||||||
|
box-shadow: var(--shadow-strong);
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardHeader {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: var(--space-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardHeaderCopy {
|
||||||
|
min-width: 0;
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardBody {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-4);
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgress {
|
||||||
|
position: relative;
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressTrack {
|
||||||
|
position: absolute;
|
||||||
|
left: calc((var(--control-size-md) - var(--space-2)) / 2);
|
||||||
|
right: calc((var(--control-size-md) - var(--space-2)) / 2);
|
||||||
|
top: calc((var(--control-size-md) - var(--space-2)) / 2);
|
||||||
|
height: 2px;
|
||||||
|
background: color-mix(in srgb, var(--color-border) 72%, transparent);
|
||||||
|
transform: translateY(-50%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressFill {
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 999px;
|
||||||
|
background: color-mix(in srgb, var(--bootstrap-accent) 72%, white 8%);
|
||||||
|
transition: width 220ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressSteps {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressStep {
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
justify-items: center;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressStep:disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressIndex {
|
||||||
|
width: calc(var(--control-size-md) - var(--space-2));
|
||||||
|
height: calc(var(--control-size-md) - var(--space-2));
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 999px;
|
||||||
|
border: 1px solid color-mix(in srgb, var(--color-border) 88%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-surface) 92%, transparent);
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
transition:
|
||||||
|
border-color 160ms var(--easing-standard),
|
||||||
|
background 160ms var(--easing-standard),
|
||||||
|
color 160ms var(--easing-standard),
|
||||||
|
box-shadow 160ms var(--easing-standard),
|
||||||
|
transform 180ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressStep[data-active="true"] .wizardProgressIndex,
|
||||||
|
.wizardProgressStep[data-complete="true"] .wizardProgressIndex {
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 42%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--bootstrap-accent) 12%, var(--color-surface));
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressStep[data-active="true"] .wizardProgressIndex {
|
||||||
|
box-shadow: 0 0 0 3px color-mix(in srgb, var(--bootstrap-accent) 14%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressStep:not(:disabled):hover .wizardProgressIndex,
|
||||||
|
.wizardProgressStep:not(:disabled):focus-visible .wizardProgressIndex {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
border-color: color-mix(in srgb, var(--bootstrap-accent) 36%, var(--color-border));
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardStepPanel {
|
||||||
|
align-content: start;
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishPanel {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-4);
|
||||||
|
justify-items: stretch;
|
||||||
|
padding: var(--space-2) 0 0;
|
||||||
|
min-height: min(14rem, 32dvh);
|
||||||
|
align-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishShell {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-4);
|
||||||
|
width: min(100%, 40rem);
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
background: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishStatusRow {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto minmax(0, 1fr);
|
||||||
|
gap: var(--space-3);
|
||||||
|
align-items: start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishIndicator {
|
||||||
|
width: 2.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 999px;
|
||||||
|
border: 1px solid color-mix(in srgb, var(--bootstrap-accent) 18%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--bootstrap-accent) 8%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishIndicator[data-status="failed"] {
|
||||||
|
border-color: color-mix(in srgb, var(--color-danger-border, var(--color-border)) 44%, transparent);
|
||||||
|
background: color-mix(in srgb, var(--color-danger-surface, var(--color-surface-secondary)) 36%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishSpinner {
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
border-radius: 999px;
|
||||||
|
border: 2px solid color-mix(in srgb, var(--bootstrap-accent) 18%, transparent);
|
||||||
|
border-top-color: var(--bootstrap-accent);
|
||||||
|
animation: wizardFinishSpin 900ms linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishIndicator[data-status="failed"] .wizardFinishSpinner {
|
||||||
|
border: 2px solid color-mix(in srgb, var(--color-danger-border, var(--color-border)) 22%, transparent);
|
||||||
|
border-top-color: var(--color-danger-text, var(--color-text));
|
||||||
|
animation: none;
|
||||||
|
transform: rotate(45deg);
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishCopy {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-1);
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishTitle {
|
||||||
|
@include text-title;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishDescription,
|
||||||
|
.wizardFinishMessage,
|
||||||
|
.wizardFinishHint {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishMessage[data-status="failed"] {
|
||||||
|
color: var(--color-danger-text, var(--color-text));
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishHint {
|
||||||
|
@include text-caption;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFinishActions {
|
||||||
|
display: flex;
|
||||||
|
gap: var(--space-3);
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding-top: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes wizardFinishSpin {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-down(tablet) {
|
||||||
|
.personaGrid {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summaryGrid,
|
||||||
|
.wizardBody {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sectionHeader,
|
||||||
|
.wizardHeader {
|
||||||
|
display: grid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-down(mobile) {
|
||||||
|
.viewport {
|
||||||
|
gap: var(--space-4);
|
||||||
|
padding: var(--space-4) var(--space-4) calc(var(--space-8) + env(safe-area-inset-bottom, 0px));
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBar {
|
||||||
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBarStart,
|
||||||
|
.workspaceTopBarEnd,
|
||||||
|
.workspaceCollapseButton {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaceTopBarCenter {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.summaryGrid {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardPanel {
|
||||||
|
width: 100vw;
|
||||||
|
max-height: 100dvh;
|
||||||
|
margin: 0;
|
||||||
|
padding: var(--space-3);
|
||||||
|
padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardHeader,
|
||||||
|
.wizardBody {
|
||||||
|
gap: var(--space-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressSteps {
|
||||||
|
justify-content: flex-start;
|
||||||
|
gap: var(--space-8);
|
||||||
|
overflow-x: auto;
|
||||||
|
padding-bottom: var(--space-1);
|
||||||
|
scrollbar-width: thin;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardProgressStep {
|
||||||
|
min-width: calc(var(--control-size-md) - var(--space-2));
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFormActions {
|
||||||
|
gap: var(--space-2);
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
align-items: stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFormActions .primaryButton {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wizardFormActions .primaryButton,
|
||||||
|
.wizardFormActions .secondaryButton,
|
||||||
|
.wizardCloseButton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,287 @@
|
|||||||
|
// Path: Frontend/src/components/bootstrap/BootstrapWizard/BootstrapWizard.parts.tsx
|
||||||
|
|
||||||
|
import { For, Show, type JSX } from "solid-js";
|
||||||
|
import { CircleHelp } from "../../../lib/icons";
|
||||||
|
import {
|
||||||
|
organizationalStructureDefaults,
|
||||||
|
workspaceHomeFieldTooltips,
|
||||||
|
type AdminForm,
|
||||||
|
type BootstrapPersona,
|
||||||
|
type BootstrapPersonaDefinition,
|
||||||
|
type BootstrapStepDefinition,
|
||||||
|
type BootstrapStepKey,
|
||||||
|
type InstanceForm,
|
||||||
|
type ModeForm,
|
||||||
|
type StructureForm,
|
||||||
|
} from "./BootstrapWizard.data";
|
||||||
|
import styles from "./BootstrapWizard.module.scss";
|
||||||
|
|
||||||
|
type BootstrapSubmissionState = {
|
||||||
|
status: "idle" | "submitting" | "success" | "error";
|
||||||
|
error: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
type MaterializationState = "not_started" | "pending" | "running" | "succeeded" | "failed";
|
||||||
|
|
||||||
|
type TooltipHandlers = {
|
||||||
|
onShowTooltip: (target: HTMLElement, text: string) => void;
|
||||||
|
onHideTooltip: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
type FieldLabelWithTooltipProps = TooltipHandlers & {
|
||||||
|
label: string;
|
||||||
|
tooltip?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const FieldLabelWithTooltip = (props: FieldLabelWithTooltipProps): JSX.Element => (
|
||||||
|
<span class={styles.fieldLabelRow}>
|
||||||
|
<span class={styles.fieldLabel}>{props.label}</span>
|
||||||
|
<Show when={props.tooltip}>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class={styles.fieldInfoButton}
|
||||||
|
aria-label={`${props.label} help: ${props.tooltip}`}
|
||||||
|
onMouseEnter={(event): void => props.onShowTooltip(event.currentTarget, props.tooltip!)}
|
||||||
|
onMouseLeave={props.onHideTooltip}
|
||||||
|
onFocus={(event): void => props.onShowTooltip(event.currentTarget, props.tooltip!)}
|
||||||
|
onBlur={props.onHideTooltip}
|
||||||
|
>
|
||||||
|
<CircleHelp size={14} strokeWidth={2} />
|
||||||
|
</button>
|
||||||
|
</Show>
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapFinishingStateProps = {
|
||||||
|
materializationState: MaterializationState;
|
||||||
|
statusLabel: string;
|
||||||
|
message: string;
|
||||||
|
isInFlight: boolean;
|
||||||
|
hasFailed: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapFinishingState = (props: BootstrapFinishingStateProps): JSX.Element => (
|
||||||
|
<div class={styles.wizardFinishPanel} data-slot="bootstrap-wizard-finishing-state">
|
||||||
|
<div class={styles.wizardFinishShell}>
|
||||||
|
<div class={styles.wizardFinishStatusRow}>
|
||||||
|
<div class={styles.wizardFinishIndicator} data-status={props.materializationState} aria-hidden="true">
|
||||||
|
<div class={styles.wizardFinishSpinner} />
|
||||||
|
</div>
|
||||||
|
<div class={styles.wizardFinishCopy}>
|
||||||
|
<span class={styles.wizardStepEyebrow}>Bootstrap status</span>
|
||||||
|
<h3 class={styles.wizardFinishTitle}>Finishing setup</h3>
|
||||||
|
<p class={styles.wizardFinishDescription}>
|
||||||
|
We saved your initial bootstrap. The server is finishing the last background setup steps now.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class={styles.statusBadge} data-status={props.materializationState}>{props.statusLabel}</div>
|
||||||
|
<Show when={props.message}>
|
||||||
|
<p class={styles.wizardFinishMessage} data-status={props.materializationState}>{props.message}</p>
|
||||||
|
</Show>
|
||||||
|
<Show when={props.isInFlight}>
|
||||||
|
<p class={styles.wizardFinishHint}>This window will close automatically when setup is complete.</p>
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
<Show when={props.hasFailed}>
|
||||||
|
<div class={styles.wizardFinishActions}>
|
||||||
|
<button type="button" class={styles.secondaryButton} onClick={props.onClose}>Close</button>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapWizardProgressProps = {
|
||||||
|
steps: readonly BootstrapStepDefinition[];
|
||||||
|
currentStepId: BootstrapStepKey;
|
||||||
|
currentWizardStepIndex: number;
|
||||||
|
stepState: Record<BootstrapStepKey, BootstrapSubmissionState>;
|
||||||
|
bootstrapStepCount: number;
|
||||||
|
wizardProgressFillWidth: string;
|
||||||
|
stepStatusLabel: (step: BootstrapStepDefinition) => string;
|
||||||
|
onSelectStep: (index: number) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapWizardProgress = (props: BootstrapWizardProgressProps): JSX.Element => (
|
||||||
|
<div class={styles.wizardProgress} data-slot="bootstrap-wizard-progress">
|
||||||
|
<div class={styles.wizardProgressTrack} aria-hidden="true">
|
||||||
|
<div class={styles.wizardProgressFill} style={{ width: props.wizardProgressFillWidth }} />
|
||||||
|
</div>
|
||||||
|
<nav class={styles.wizardProgressSteps} aria-label="Bootstrap steps" style={{ "--wizard-progress-step-count": props.bootstrapStepCount }}>
|
||||||
|
<For each={props.steps}>
|
||||||
|
{(step, index): JSX.Element => (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class={styles.wizardProgressStep}
|
||||||
|
data-active={step.id === props.currentStepId ? "true" : "false"}
|
||||||
|
data-complete={props.stepState[step.id].status === "success" ? "true" : "false"}
|
||||||
|
disabled={index() > props.currentWizardStepIndex}
|
||||||
|
onClick={(): void => {
|
||||||
|
if (index() <= props.currentWizardStepIndex) {
|
||||||
|
props.onSelectStep(index());
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
aria-label={`Step ${index() + 1}${props.stepStatusLabel(step) ? `, ${props.stepStatusLabel(step)}` : ""}`}
|
||||||
|
>
|
||||||
|
<span class={styles.wizardProgressIndex}>{index() + 1}</span>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</For>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapPersonaStepProps = {
|
||||||
|
personas: readonly BootstrapPersonaDefinition[];
|
||||||
|
hasChosenPersona: boolean;
|
||||||
|
selectedPersona: BootstrapPersona;
|
||||||
|
selectedPersonaIsAvailable: boolean;
|
||||||
|
onSelectPersona: (persona: BootstrapPersona) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapPersonaStep = (props: BootstrapPersonaStepProps): JSX.Element => (
|
||||||
|
<>
|
||||||
|
<div class={styles.personaGrid}>
|
||||||
|
<For each={props.personas}>
|
||||||
|
{(persona): JSX.Element => (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class={styles.personaCard}
|
||||||
|
data-selected={props.hasChosenPersona && persona.id === props.selectedPersona ? "true" : "false"}
|
||||||
|
data-available={persona.isAvailable ? "true" : "false"}
|
||||||
|
aria-pressed={props.hasChosenPersona && persona.id === props.selectedPersona}
|
||||||
|
onClick={(): void => props.onSelectPersona(persona.id)}
|
||||||
|
>
|
||||||
|
<div class={styles.personaCardMedia} aria-hidden="true" />
|
||||||
|
<div class={styles.personaCardBody}>
|
||||||
|
<h4 class={styles.personaCardTitle}>{persona.title}</h4>
|
||||||
|
<div class={styles.personaCardDetails}>
|
||||||
|
<p class={styles.personaBestFor}>{persona.bestFor}</p>
|
||||||
|
<ul class={styles.personaBulletList}>
|
||||||
|
<For each={persona.bullets}>{(bullet): JSX.Element => <li>{bullet}</li>}</For>
|
||||||
|
</ul>
|
||||||
|
<Show when={!persona.isAvailable}><p class={styles.personaAvailability}>Coming later</p></Show>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</For>
|
||||||
|
</div>
|
||||||
|
<Show when={!props.selectedPersonaIsAvailable}>
|
||||||
|
<p class={styles.fieldHelp}>Only <strong>Self Hosted Enthusiast</strong> is wired up right now. The other setup paths will come next.</p>
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapInstanceStepProps = TooltipHandlers & {
|
||||||
|
instanceForm: InstanceForm;
|
||||||
|
onProtocolChange: (value: InstanceForm["protocol"]) => void;
|
||||||
|
onAccessChange: (value: InstanceForm["access"]) => void;
|
||||||
|
onHostChange: (value: string) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapInstanceStep = (props: BootstrapInstanceStepProps): JSX.Element => (
|
||||||
|
<>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Protocol" tooltip={workspaceHomeFieldTooltips.protocol} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<select value={props.instanceForm.protocol} onInput={(event): void => props.onProtocolChange(event.currentTarget.value as InstanceForm["protocol"])}>
|
||||||
|
<option value="http">http</option>
|
||||||
|
<option value="https">https</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Access" tooltip={workspaceHomeFieldTooltips.access} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<select value={props.instanceForm.access} onInput={(event): void => props.onAccessChange(event.currentTarget.value as InstanceForm["access"])}>
|
||||||
|
<option value="local">local</option>
|
||||||
|
<option value="remote">remote</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Host" tooltip={workspaceHomeFieldTooltips.host} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.instanceForm.host} onInput={(event): void => props.onHostChange(event.currentTarget.value)} placeholder="localhost or app.example.com" />
|
||||||
|
</label>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapModeStepProps = TooltipHandlers & {
|
||||||
|
modeForm: ModeForm;
|
||||||
|
structureForm: StructureForm;
|
||||||
|
usesCondensedBootstrapFlow: boolean;
|
||||||
|
selectedPersona: BootstrapPersona;
|
||||||
|
namePlaceholder: string;
|
||||||
|
onNameChange: (value: string) => void;
|
||||||
|
onProjectNameChange: (value: string) => void;
|
||||||
|
onTeamNameChange: (value: string) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapModeStep = (props: BootstrapModeStepProps): JSX.Element => (
|
||||||
|
<>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Server name" tooltip={workspaceHomeFieldTooltips.serverName} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.modeForm.name} required onInput={(event): void => props.onNameChange(event.currentTarget.value)} placeholder={props.namePlaceholder} />
|
||||||
|
</label>
|
||||||
|
<Show when={props.usesCondensedBootstrapFlow}>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Default Project" tooltip={workspaceHomeFieldTooltips.project} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.structureForm.projectName} onInput={(event): void => props.onProjectNameChange(event.currentTarget.value)} placeholder="Project" />
|
||||||
|
</label>
|
||||||
|
</Show>
|
||||||
|
<Show when={props.selectedPersona === "team"}>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Team name" tooltip={workspaceHomeFieldTooltips.team} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.structureForm.teamName} onInput={(event): void => props.onTeamNameChange(event.currentTarget.value)} placeholder="Core Team" />
|
||||||
|
</label>
|
||||||
|
</Show>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapAdminStepProps = {
|
||||||
|
adminForm: AdminForm;
|
||||||
|
onDisplayNameChange: (value: string) => void;
|
||||||
|
onEmailChange: (value: string) => void;
|
||||||
|
onPasswordChange: (value: string) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapAdminStep = (props: BootstrapAdminStepProps): JSX.Element => (
|
||||||
|
<>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<span class={styles.fieldLabel}>Display name</span>
|
||||||
|
<input type="text" value={props.adminForm.displayName} onInput={(event): void => props.onDisplayNameChange(event.currentTarget.value)} placeholder="Admin" />
|
||||||
|
</label>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<span class={styles.fieldLabel}>Email</span>
|
||||||
|
<input type="email" value={props.adminForm.email} onInput={(event): void => props.onEmailChange(event.currentTarget.value)} placeholder="admin@example.com" />
|
||||||
|
</label>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<span class={styles.fieldLabel}>Password</span>
|
||||||
|
<input type="password" value={props.adminForm.password} onInput={(event): void => props.onPasswordChange(event.currentTarget.value)} placeholder="Create a strong password" />
|
||||||
|
<small class={styles.fieldHelp}>Use at least 12 characters with uppercase, lowercase, numbers, and symbols.</small>
|
||||||
|
</label>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
type BootstrapStructureStepProps = TooltipHandlers & {
|
||||||
|
mode: ModeForm["mode"];
|
||||||
|
structureForm: StructureForm;
|
||||||
|
onDepartmentNameChange: (value: string) => void;
|
||||||
|
onTeamNameChange: (value: string) => void;
|
||||||
|
onProjectNameChange: (value: string) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapStructureStep = (props: BootstrapStructureStepProps): JSX.Element => (
|
||||||
|
<>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Department" tooltip={workspaceHomeFieldTooltips.department} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.structureForm.departmentName} disabled={props.mode === "personal"} onInput={(event): void => props.onDepartmentNameChange(event.currentTarget.value)} placeholder={organizationalStructureDefaults.departmentName} />
|
||||||
|
</label>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Team" tooltip={workspaceHomeFieldTooltips.team} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.structureForm.teamName} disabled={props.mode === "personal"} onInput={(event): void => props.onTeamNameChange(event.currentTarget.value)} placeholder={organizationalStructureDefaults.teamName} />
|
||||||
|
</label>
|
||||||
|
<label class={styles.field}>
|
||||||
|
<FieldLabelWithTooltip label="Project" tooltip={workspaceHomeFieldTooltips.project} onShowTooltip={props.onShowTooltip} onHideTooltip={props.onHideTooltip} />
|
||||||
|
<input type="text" value={props.structureForm.projectName} onInput={(event): void => props.onProjectNameChange(event.currentTarget.value)} placeholder="Moku" />
|
||||||
|
</label>
|
||||||
|
</>
|
||||||
|
);
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
import { type JSX } from "solid-js";
|
||||||
|
import { useAppShellData } from "../../app-shell/data/app-shell.context";
|
||||||
|
import { useBootstrapWizard } from "./BootstrapWizard.hook";
|
||||||
|
import { BootstrapWizardDialog } from "./BootstrapWizardDialog";
|
||||||
|
|
||||||
|
export const BootstrapWizard = (): JSX.Element => {
|
||||||
|
const appShellData = useAppShellData();
|
||||||
|
const {
|
||||||
|
instanceForm,
|
||||||
|
setInstanceForm,
|
||||||
|
modeForm,
|
||||||
|
setModeForm,
|
||||||
|
adminForm,
|
||||||
|
setAdminForm,
|
||||||
|
structureForm,
|
||||||
|
setStructureForm,
|
||||||
|
selectedPersona,
|
||||||
|
hasChosenPersona,
|
||||||
|
stepState,
|
||||||
|
isBootstrapStateResolved,
|
||||||
|
isWizardOpen,
|
||||||
|
setIsWizardOpen,
|
||||||
|
setIsFinishingBootstrapFlow,
|
||||||
|
fieldTooltip,
|
||||||
|
materializationState,
|
||||||
|
isMaterializationInFlight,
|
||||||
|
hasMaterializationFailed,
|
||||||
|
showBootstrapFinishingState,
|
||||||
|
materializationStatusLabel,
|
||||||
|
materializationMessage,
|
||||||
|
selectedPersonaIsAvailable,
|
||||||
|
usesCondensedBootstrapFlow,
|
||||||
|
activeWizardSteps,
|
||||||
|
bootstrapNamePlaceholder,
|
||||||
|
bootstrapStepCount,
|
||||||
|
currentStep,
|
||||||
|
currentWizardStepIndex,
|
||||||
|
wizardProgressFillWidth,
|
||||||
|
currentStepState,
|
||||||
|
isFirstStep,
|
||||||
|
canDismissWizard,
|
||||||
|
handleCurrentStepSubmit,
|
||||||
|
applyPersonaSelection,
|
||||||
|
statusLabel,
|
||||||
|
showFieldTooltip,
|
||||||
|
hideFieldTooltip,
|
||||||
|
stepStatusLabel,
|
||||||
|
navigateBack,
|
||||||
|
navigateToVisibleStep,
|
||||||
|
} = useBootstrapWizard(appShellData);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BootstrapWizardDialog
|
||||||
|
isOpen={isBootstrapStateResolved() && isWizardOpen()}
|
||||||
|
currentStep={currentStep()}
|
||||||
|
currentStepState={currentStepState()}
|
||||||
|
activeWizardSteps={activeWizardSteps()}
|
||||||
|
currentWizardStepIndex={currentWizardStepIndex()}
|
||||||
|
stepState={stepState}
|
||||||
|
bootstrapStepCount={bootstrapStepCount()}
|
||||||
|
wizardProgressFillWidth={wizardProgressFillWidth()}
|
||||||
|
showBootstrapFinishingState={showBootstrapFinishingState()}
|
||||||
|
materializationState={materializationState()}
|
||||||
|
materializationStatusLabel={materializationStatusLabel()}
|
||||||
|
materializationMessage={materializationMessage()}
|
||||||
|
isMaterializationInFlight={isMaterializationInFlight()}
|
||||||
|
hasMaterializationFailed={hasMaterializationFailed()}
|
||||||
|
instanceForm={instanceForm}
|
||||||
|
modeForm={modeForm}
|
||||||
|
adminForm={adminForm}
|
||||||
|
structureForm={structureForm}
|
||||||
|
selectedPersona={selectedPersona()}
|
||||||
|
hasChosenPersona={hasChosenPersona()}
|
||||||
|
selectedPersonaIsAvailable={selectedPersonaIsAvailable()}
|
||||||
|
usesCondensedBootstrapFlow={usesCondensedBootstrapFlow()}
|
||||||
|
bootstrapNamePlaceholder={bootstrapNamePlaceholder()}
|
||||||
|
isFirstStep={isFirstStep()}
|
||||||
|
canDismissWizard={canDismissWizard()}
|
||||||
|
fieldTooltip={fieldTooltip()}
|
||||||
|
onClose={(): void => {
|
||||||
|
setIsWizardOpen(false);
|
||||||
|
}}
|
||||||
|
onCloseFinishingState={(): void => {
|
||||||
|
setIsFinishingBootstrapFlow(false);
|
||||||
|
setIsWizardOpen(false);
|
||||||
|
}}
|
||||||
|
onSubmit={handleCurrentStepSubmit}
|
||||||
|
onSelectPersona={applyPersonaSelection}
|
||||||
|
onProtocolChange={(value): void => setInstanceForm("protocol", value)}
|
||||||
|
onAccessChange={(value): void => setInstanceForm("access", value)}
|
||||||
|
onHostChange={(value): void => setInstanceForm("host", value)}
|
||||||
|
onModeNameChange={(value): void => setModeForm("name", value)}
|
||||||
|
onProjectNameChange={(value): void => setStructureForm("projectName", value)}
|
||||||
|
onTeamNameChange={(value): void => setStructureForm("teamName", value)}
|
||||||
|
onAdminDisplayNameChange={(value): void => setAdminForm("displayName", value)}
|
||||||
|
onAdminEmailChange={(value): void => setAdminForm("email", value)}
|
||||||
|
onAdminPasswordChange={(value): void => setAdminForm("password", value)}
|
||||||
|
onDepartmentNameChange={(value): void => setStructureForm("departmentName", value)}
|
||||||
|
onShowTooltip={showFieldTooltip}
|
||||||
|
onHideTooltip={hideFieldTooltip}
|
||||||
|
statusLabel={statusLabel}
|
||||||
|
stepStatusLabel={stepStatusLabel}
|
||||||
|
onNavigateBack={navigateBack}
|
||||||
|
onSelectStep={navigateToVisibleStep}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,234 @@
|
|||||||
|
// Path: Frontend/src/components/bootstrap/BootstrapWizard/BootstrapWizardDialog.tsx
|
||||||
|
|
||||||
|
import { Show, type JSX } from "solid-js";
|
||||||
|
import { Portal } from "solid-js/web";
|
||||||
|
import {
|
||||||
|
type AdminForm,
|
||||||
|
type BootstrapPersona,
|
||||||
|
bootstrapPersonaDefinitions,
|
||||||
|
type BootstrapStepDefinition,
|
||||||
|
type BootstrapStepKey,
|
||||||
|
type InstanceForm,
|
||||||
|
type ModeForm,
|
||||||
|
type StructureForm,
|
||||||
|
} from "./BootstrapWizard.data";
|
||||||
|
import { type BootstrapSubmissionState, type FieldTooltipState, type MaterializationState } from "./BootstrapWizard.hook";
|
||||||
|
import {
|
||||||
|
BootstrapAdminStep,
|
||||||
|
BootstrapFinishingState,
|
||||||
|
BootstrapInstanceStep,
|
||||||
|
BootstrapModeStep,
|
||||||
|
BootstrapPersonaStep,
|
||||||
|
BootstrapStructureStep,
|
||||||
|
BootstrapWizardProgress,
|
||||||
|
} from "./BootstrapWizard.parts";
|
||||||
|
import styles from "./BootstrapWizard.module.scss";
|
||||||
|
|
||||||
|
export type BootstrapWizardDialogProps = {
|
||||||
|
isOpen: boolean;
|
||||||
|
currentStep: BootstrapStepDefinition;
|
||||||
|
currentStepState: BootstrapSubmissionState;
|
||||||
|
activeWizardSteps: readonly BootstrapStepDefinition[];
|
||||||
|
currentWizardStepIndex: number;
|
||||||
|
stepState: Record<BootstrapStepKey, BootstrapSubmissionState>;
|
||||||
|
bootstrapStepCount: number;
|
||||||
|
wizardProgressFillWidth: string;
|
||||||
|
showBootstrapFinishingState: boolean;
|
||||||
|
materializationState: MaterializationState;
|
||||||
|
materializationStatusLabel: string;
|
||||||
|
materializationMessage: string;
|
||||||
|
isMaterializationInFlight: boolean;
|
||||||
|
hasMaterializationFailed: boolean;
|
||||||
|
instanceForm: InstanceForm;
|
||||||
|
modeForm: ModeForm;
|
||||||
|
adminForm: AdminForm;
|
||||||
|
structureForm: StructureForm;
|
||||||
|
selectedPersona: BootstrapPersona;
|
||||||
|
hasChosenPersona: boolean;
|
||||||
|
selectedPersonaIsAvailable: boolean;
|
||||||
|
usesCondensedBootstrapFlow: boolean;
|
||||||
|
bootstrapNamePlaceholder: string;
|
||||||
|
isFirstStep: boolean;
|
||||||
|
canDismissWizard: boolean;
|
||||||
|
fieldTooltip: FieldTooltipState | null;
|
||||||
|
onClose: () => void;
|
||||||
|
onCloseFinishingState: () => void;
|
||||||
|
onSubmit: JSX.EventHandlerUnion<HTMLFormElement, SubmitEvent>;
|
||||||
|
onSelectPersona: (persona: BootstrapPersona) => void;
|
||||||
|
onProtocolChange: (value: InstanceForm["protocol"]) => void;
|
||||||
|
onAccessChange: (value: InstanceForm["access"]) => void;
|
||||||
|
onHostChange: (value: string) => void;
|
||||||
|
onModeNameChange: (value: string) => void;
|
||||||
|
onProjectNameChange: (value: string) => void;
|
||||||
|
onTeamNameChange: (value: string) => void;
|
||||||
|
onAdminDisplayNameChange: (value: string) => void;
|
||||||
|
onAdminEmailChange: (value: string) => void;
|
||||||
|
onAdminPasswordChange: (value: string) => void;
|
||||||
|
onDepartmentNameChange: (value: string) => void;
|
||||||
|
onShowTooltip: (target: HTMLElement, text: string) => void;
|
||||||
|
onHideTooltip: () => void;
|
||||||
|
statusLabel: (state: BootstrapSubmissionState) => string;
|
||||||
|
stepStatusLabel: (step: BootstrapStepDefinition) => string;
|
||||||
|
onNavigateBack: () => void;
|
||||||
|
onSelectStep: (index: number) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const BootstrapWizardDialog = (props: BootstrapWizardDialogProps): JSX.Element => (
|
||||||
|
<Show when={props.isOpen}>
|
||||||
|
<Portal>
|
||||||
|
<div class={styles.wizardLayer} data-ui="bootstrap-wizard" data-step={props.currentStep.id}>
|
||||||
|
<div class={styles.wizardBackdrop} aria-hidden="true" />
|
||||||
|
|
||||||
|
<section class={styles.wizardPanel} role="dialog" aria-modal="true" aria-labelledby="bootstrap-wizard-title" data-slot="bootstrap-wizard-panel">
|
||||||
|
<header class={styles.wizardHeader} data-slot="bootstrap-wizard-header">
|
||||||
|
<div class={styles.wizardHeaderCopy}>
|
||||||
|
<h2 id="bootstrap-wizard-title" class={styles.wizardTitle}>
|
||||||
|
Bootstrap Server
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
<Show when={props.canDismissWizard}>
|
||||||
|
<button type="button" class={styles.wizardCloseButton} onClick={props.onClose}>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
</Show>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<Show
|
||||||
|
when={!props.showBootstrapFinishingState}
|
||||||
|
fallback={
|
||||||
|
<BootstrapFinishingState
|
||||||
|
materializationState={props.materializationState}
|
||||||
|
statusLabel={props.materializationStatusLabel}
|
||||||
|
message={props.materializationMessage}
|
||||||
|
isInFlight={props.isMaterializationInFlight}
|
||||||
|
hasFailed={props.hasMaterializationFailed}
|
||||||
|
onClose={props.onCloseFinishingState}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<div class={styles.wizardBody}>
|
||||||
|
<Show when={props.currentStep.id !== "persona"}>
|
||||||
|
<BootstrapWizardProgress
|
||||||
|
steps={props.activeWizardSteps}
|
||||||
|
currentStepId={props.currentStep.id}
|
||||||
|
currentWizardStepIndex={props.currentWizardStepIndex}
|
||||||
|
stepState={props.stepState}
|
||||||
|
bootstrapStepCount={props.bootstrapStepCount}
|
||||||
|
wizardProgressFillWidth={props.wizardProgressFillWidth}
|
||||||
|
stepStatusLabel={props.stepStatusLabel}
|
||||||
|
onSelectStep={props.onSelectStep}
|
||||||
|
/>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<div class={styles.wizardStepPanel} data-slot="bootstrap-wizard-step-panel">
|
||||||
|
<Show when={props.currentStep.id !== "persona" || props.statusLabel(props.currentStepState)}>
|
||||||
|
<div class={styles.sectionHeader}>
|
||||||
|
<Show when={props.currentStep.id !== "persona"}>
|
||||||
|
<div>
|
||||||
|
<span class={styles.wizardStepEyebrow}>{`Step ${props.currentWizardStepIndex + 1} of ${props.bootstrapStepCount}`}</span>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
<Show when={props.statusLabel(props.currentStepState)}>
|
||||||
|
<div class={styles.statusBadge} data-status={props.currentStepState.status}>
|
||||||
|
{props.statusLabel(props.currentStepState)}
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<form class={styles.form} onSubmit={props.onSubmit}>
|
||||||
|
<Show when={props.currentStep.id === "persona"}>
|
||||||
|
<BootstrapPersonaStep
|
||||||
|
personas={bootstrapPersonaDefinitions}
|
||||||
|
hasChosenPersona={props.hasChosenPersona}
|
||||||
|
selectedPersona={props.selectedPersona}
|
||||||
|
selectedPersonaIsAvailable={props.selectedPersonaIsAvailable}
|
||||||
|
onSelectPersona={props.onSelectPersona}
|
||||||
|
/>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={props.currentStep.id === "instance"}>
|
||||||
|
<BootstrapInstanceStep
|
||||||
|
instanceForm={props.instanceForm}
|
||||||
|
onProtocolChange={props.onProtocolChange}
|
||||||
|
onAccessChange={props.onAccessChange}
|
||||||
|
onHostChange={props.onHostChange}
|
||||||
|
onShowTooltip={props.onShowTooltip}
|
||||||
|
onHideTooltip={props.onHideTooltip}
|
||||||
|
/>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={props.currentStep.id === "mode"}>
|
||||||
|
<BootstrapModeStep
|
||||||
|
modeForm={props.modeForm}
|
||||||
|
structureForm={props.structureForm}
|
||||||
|
usesCondensedBootstrapFlow={props.usesCondensedBootstrapFlow}
|
||||||
|
selectedPersona={props.selectedPersona}
|
||||||
|
namePlaceholder={props.bootstrapNamePlaceholder}
|
||||||
|
onNameChange={props.onModeNameChange}
|
||||||
|
onProjectNameChange={props.onProjectNameChange}
|
||||||
|
onTeamNameChange={props.onTeamNameChange}
|
||||||
|
onShowTooltip={props.onShowTooltip}
|
||||||
|
onHideTooltip={props.onHideTooltip}
|
||||||
|
/>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={props.currentStep.id === "admin"}>
|
||||||
|
<BootstrapAdminStep
|
||||||
|
adminForm={props.adminForm}
|
||||||
|
onDisplayNameChange={props.onAdminDisplayNameChange}
|
||||||
|
onEmailChange={props.onAdminEmailChange}
|
||||||
|
onPasswordChange={props.onAdminPasswordChange}
|
||||||
|
/>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={props.currentStep.id === "structure"}>
|
||||||
|
<BootstrapStructureStep
|
||||||
|
mode={props.modeForm.mode}
|
||||||
|
structureForm={props.structureForm}
|
||||||
|
onDepartmentNameChange={props.onDepartmentNameChange}
|
||||||
|
onTeamNameChange={props.onTeamNameChange}
|
||||||
|
onProjectNameChange={props.onProjectNameChange}
|
||||||
|
onShowTooltip={props.onShowTooltip}
|
||||||
|
onHideTooltip={props.onHideTooltip}
|
||||||
|
/>
|
||||||
|
</Show>
|
||||||
|
|
||||||
|
<Show when={props.currentStep.id !== "persona"}>
|
||||||
|
<div class={styles.wizardFormActions}>
|
||||||
|
<button type="button" class={styles.secondaryButton} disabled={props.isFirstStep} onClick={props.onNavigateBack}>
|
||||||
|
Back
|
||||||
|
</button>
|
||||||
|
<button type="submit" class={styles.primaryButton} disabled={props.currentStepState.status === "submitting"}>
|
||||||
|
{props.currentStep.buttonLabel}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<Show when={props.currentStepState.error}>
|
||||||
|
<p class={styles.errorText}>{props.currentStepState.error}</p>
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Show>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<Show when={props.fieldTooltip}>
|
||||||
|
{(tooltip): JSX.Element => (
|
||||||
|
<div
|
||||||
|
class={styles.fieldTooltip}
|
||||||
|
data-placement={tooltip().placement}
|
||||||
|
style={{
|
||||||
|
left: `${tooltip().left}px`,
|
||||||
|
top: `${tooltip().top}px`,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div class={styles.fieldTooltipBubble}>{tooltip().text}</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Show>
|
||||||
|
</div>
|
||||||
|
</Portal>
|
||||||
|
</Show>
|
||||||
|
);
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
import { resolveAPIBase } from "../../../lib/api";
|
||||||
|
import type { BootstrapStepKey } from "./BootstrapWizard.data";
|
||||||
|
|
||||||
|
const readBootstrapResponseBody = async (response: Response): Promise<unknown> => {
|
||||||
|
const raw = await response.text();
|
||||||
|
|
||||||
|
if (!raw.trim()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return JSON.parse(raw);
|
||||||
|
} catch {
|
||||||
|
return raw;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const readBootstrapResponseError = (step: BootstrapStepKey, data: unknown): string => {
|
||||||
|
const fallback = `Bootstrap ${step} request failed.`;
|
||||||
|
|
||||||
|
if (typeof data === "string") {
|
||||||
|
const message = data.trim();
|
||||||
|
return message || fallback;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!data || typeof data !== "object") {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
|
||||||
|
const record = data as {
|
||||||
|
error?: string;
|
||||||
|
message?: string;
|
||||||
|
requestId?: string;
|
||||||
|
};
|
||||||
|
const message = typeof record.message === "string" ? record.message.trim() : "";
|
||||||
|
const errorCode = typeof record.error === "string" ? record.error.trim() : "";
|
||||||
|
const requestId = typeof record.requestId === "string" ? record.requestId.trim() : "";
|
||||||
|
|
||||||
|
if (!message && !errorCode && !requestId) {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
|
||||||
|
const details: string[] = [];
|
||||||
|
|
||||||
|
if (errorCode) {
|
||||||
|
details.push(`code: ${errorCode}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (requestId) {
|
||||||
|
details.push(`request: ${requestId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (message && details.length > 0) {
|
||||||
|
return `${message} (${details.join(", ")})`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (message) {
|
||||||
|
return message;
|
||||||
|
}
|
||||||
|
|
||||||
|
return `${fallback} (${details.join(", ")})`;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const submitBootstrapStepRequest = async (
|
||||||
|
step: BootstrapStepKey,
|
||||||
|
payload: unknown,
|
||||||
|
): Promise<void> => {
|
||||||
|
const response = await fetch(`${resolveAPIBase()}/bootstrap/steps/${step}`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
Accept: "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(payload),
|
||||||
|
});
|
||||||
|
const data = await readBootstrapResponseBody(response);
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(readBootstrapResponseError(step, data));
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,221 @@
|
|||||||
|
.root {
|
||||||
|
position: relative;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.selector {
|
||||||
|
min-width: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: flex-end;
|
||||||
|
justify-content: flex-start;
|
||||||
|
gap: var(--space-2);
|
||||||
|
border: 0;
|
||||||
|
background: transparent;
|
||||||
|
color: var(--color-text);
|
||||||
|
text-align: left;
|
||||||
|
transition:
|
||||||
|
background-color 180ms var(--easing-standard),
|
||||||
|
color 180ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.selectorOpen {
|
||||||
|
.meta,
|
||||||
|
.icon {
|
||||||
|
color: var(--color-text-subtle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.selector:hover {
|
||||||
|
.value {
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta,
|
||||||
|
.icon {
|
||||||
|
color: var(--color-text-subtle);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.selector:focus-visible {
|
||||||
|
outline: none;
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
|
box-shadow: 0 0 0 0.12rem color-mix(in srgb, var(--color-accent-soft) 14%, transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy {
|
||||||
|
min-width: 0;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: baseline;
|
||||||
|
gap: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
@include text-title;
|
||||||
|
color: var(--color-text);
|
||||||
|
font-weight: var(--font-weight-title);
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
line-height: 1;
|
||||||
|
padding-left: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
transition: transform 180ms var(--easing-standard), color 180ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconOpen {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
position: absolute;
|
||||||
|
top: calc(100% + var(--space-2));
|
||||||
|
left: 0;
|
||||||
|
min-width: min(18rem, calc(100vw - (var(--space-4) * 2)));
|
||||||
|
display: grid;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding: var(--space-2);
|
||||||
|
border: 1px solid var(--color-border-strong);
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: var(--color-surface-muted);
|
||||||
|
box-shadow: 0 16px 32px color-mix(in srgb, black 18%, transparent);
|
||||||
|
z-index: 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuSection {
|
||||||
|
display: grid;
|
||||||
|
gap: calc(var(--space-1) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuSectionLabel {
|
||||||
|
@include text-caption;
|
||||||
|
display: block;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding-inline: var(--space-1);
|
||||||
|
margin-bottom: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuDivider {
|
||||||
|
height: 1px;
|
||||||
|
background: var(--color-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuItem {
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 2.75rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
padding: var(--space-2) var(--space-2);
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
|
background: var(--color-surface-muted);
|
||||||
|
color: var(--color-text);
|
||||||
|
text-align: left;
|
||||||
|
transition:
|
||||||
|
background-color 160ms var(--easing-standard),
|
||||||
|
border-color 160ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuItem:hover {
|
||||||
|
border-color: var(--color-border);
|
||||||
|
background: var(--color-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuItemActive {
|
||||||
|
border-color: var(--color-accent-soft);
|
||||||
|
background: var(--color-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuItemCopy {
|
||||||
|
min-width: 0;
|
||||||
|
display: grid;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuItemValue {
|
||||||
|
@include text-label;
|
||||||
|
color: var(--color-text);
|
||||||
|
font-weight: var(--font-weight-semibold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menuItemMeta {
|
||||||
|
@include text-caption;
|
||||||
|
color: var(--color-text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenuItem {
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 2.5rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding: var(--space-2) var(--space-2) var(--space-2) var(--space-3);
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
|
background: var(--color-surface-muted);
|
||||||
|
color: var(--color-text);
|
||||||
|
text-align: left;
|
||||||
|
transition:
|
||||||
|
background-color 160ms var(--easing-standard),
|
||||||
|
border-color 160ms var(--easing-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenuItem:hover {
|
||||||
|
border-color: var(--color-border);
|
||||||
|
background: var(--color-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenuItemActive {
|
||||||
|
border-color: var(--color-accent-soft);
|
||||||
|
background: var(--color-surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenuIndicator {
|
||||||
|
width: calc(var(--space-1) + (var(--space-1) / 2));
|
||||||
|
height: calc(var(--space-1) + (var(--space-1) / 2));
|
||||||
|
flex: 0 0 auto;
|
||||||
|
border-radius: 999px;
|
||||||
|
background: var(--color-accent-soft);
|
||||||
|
}
|
||||||
|
|
||||||
|
@include respond-down(mobile) {
|
||||||
|
.selector {
|
||||||
|
align-items: flex-end;
|
||||||
|
gap: var(--space-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy {
|
||||||
|
gap: var(--space-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.value {
|
||||||
|
line-height: 0.95;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meta {
|
||||||
|
font-size: 0.68rem;
|
||||||
|
line-height: 1;
|
||||||
|
letter-spacing: 0.01em;
|
||||||
|
padding-bottom: calc(var(--space-1) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
align-self: flex-end;
|
||||||
|
margin-bottom: calc(var(--space-1) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
min-width: min(16rem, calc(100vw - (var(--space-4) * 2)));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,120 @@
|
|||||||
|
import { For, createEffect, createSignal, onCleanup, onMount, type JSX } from "solid-js";
|
||||||
|
import { ChevronDown } from "../../../lib/icons";
|
||||||
|
import { useAppShellData } from "../../app-shell/data/app-shell.context";
|
||||||
|
import { type DepartmentItem } from "../../app-shell/data/shell.data";
|
||||||
|
import styles from "./DepartmentSelector.module.scss";
|
||||||
|
|
||||||
|
export const DepartmentSelector = (): JSX.Element => {
|
||||||
|
const appShellData = useAppShellData();
|
||||||
|
const [isOpen, setIsOpen] = createSignal(false);
|
||||||
|
const [selectedDepartment, setSelectedDepartment] = createSignal<DepartmentItem>(appShellData.departmentItems()[0] ?? appShellData.activeDepartment());
|
||||||
|
const [selectedTeamName, setSelectedTeamName] = createSignal(appShellData.activeDepartment().teamName);
|
||||||
|
|
||||||
|
let rootRef: HTMLDivElement | undefined;
|
||||||
|
|
||||||
|
createEffect(() => {
|
||||||
|
const activeDepartment = appShellData.activeDepartment();
|
||||||
|
const matchingDepartment = appShellData.departmentItems().find((item) => item.id === activeDepartment.id) ?? appShellData.departmentItems()[0];
|
||||||
|
|
||||||
|
if (!matchingDepartment) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setSelectedDepartment(matchingDepartment);
|
||||||
|
setSelectedTeamName(activeDepartment.teamName || matchingDepartment.teams[0] || "");
|
||||||
|
});
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
const handlePointerDown = (event: PointerEvent): void => {
|
||||||
|
if (!isOpen()) return;
|
||||||
|
if (!rootRef) return;
|
||||||
|
|
||||||
|
const target = event.target;
|
||||||
|
if (target instanceof Node && !rootRef.contains(target)) {
|
||||||
|
setIsOpen(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
document.addEventListener("pointerdown", handlePointerDown);
|
||||||
|
onCleanup(() => document.removeEventListener("pointerdown", handlePointerDown));
|
||||||
|
});
|
||||||
|
|
||||||
|
const selectDepartment = (item: DepartmentItem): void => {
|
||||||
|
setSelectedDepartment(item);
|
||||||
|
setSelectedTeamName(item.teams[0] ?? "");
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectTeam = (teamName: string): void => {
|
||||||
|
setSelectedTeamName(teamName);
|
||||||
|
setIsOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div class={styles.root} ref={rootRef}>
|
||||||
|
<button
|
||||||
|
classList={{ [styles.selector]: true, [styles.selectorOpen]: isOpen() }}
|
||||||
|
type="button"
|
||||||
|
aria-label="Select department"
|
||||||
|
title="Select department"
|
||||||
|
aria-haspopup="menu"
|
||||||
|
aria-expanded={isOpen()}
|
||||||
|
onClick={() => setIsOpen((open) => !open)}
|
||||||
|
>
|
||||||
|
<span class={styles.copy}>
|
||||||
|
<strong class={styles.value}>{selectedDepartment().name}</strong>
|
||||||
|
<span class={styles.meta}>{selectedTeamName()}</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<ChevronDown classList={{ [styles.icon]: true, [styles.iconOpen]: isOpen() }} size={16} strokeWidth={2} />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{isOpen() ? (
|
||||||
|
<div class={styles.menu} role="menu" aria-label="Department selector menu">
|
||||||
|
<div class={styles.menuSection}>
|
||||||
|
<span class={styles.menuSectionLabel}>Departments</span>
|
||||||
|
|
||||||
|
<For each={appShellData.departmentItems()}>
|
||||||
|
{(item): JSX.Element => (
|
||||||
|
<button
|
||||||
|
classList={{ [styles.menuItem]: true, [styles.menuItemActive]: item.id === selectedDepartment().id }}
|
||||||
|
type="button"
|
||||||
|
role="menuitemradio"
|
||||||
|
aria-checked={item.id === selectedDepartment().id}
|
||||||
|
onClick={() => selectDepartment(item)}
|
||||||
|
>
|
||||||
|
<div class={styles.menuItemCopy}>
|
||||||
|
<strong class={styles.menuItemValue}>{item.name}</strong>
|
||||||
|
<span class={styles.menuItemMeta}>{item.teams.length} teams</span>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</For>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class={styles.menuDivider} aria-hidden="true" />
|
||||||
|
|
||||||
|
<div class={styles.menuSection}>
|
||||||
|
<span class={styles.menuSectionLabel}>Teams in {selectedDepartment().name}</span>
|
||||||
|
|
||||||
|
<For each={selectedDepartment().teams}>
|
||||||
|
{(teamName): JSX.Element => (
|
||||||
|
<button
|
||||||
|
classList={{ [styles.submenuItem]: true, [styles.submenuItemActive]: teamName === selectedTeamName() }}
|
||||||
|
type="button"
|
||||||
|
role="menuitemradio"
|
||||||
|
aria-checked={teamName === selectedTeamName()}
|
||||||
|
onClick={() => selectTeam(teamName)}
|
||||||
|
>
|
||||||
|
<span class={styles.submenuIndicator} aria-hidden="true" />
|
||||||
|
<div class={styles.menuItemCopy}>
|
||||||
|
<strong class={styles.menuItemValue}>{teamName}</strong>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</For>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user