feat: Linear-style Task Board mit Drag&Drop
CI - Build & Test / Backend (.NET) (push) Successful in 32s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 19s
CI - Build & Test / Security Check (push) Successful in 3s

This commit is contained in:
2026-06-18 21:34:07 +02:00
parent c496608c86
commit 5e7d074593
9 changed files with 1177 additions and 16 deletions
+146 -3
View File
@@ -1,5 +1,7 @@
using System.Text.RegularExpressions;
using Nexus.Api.Data;
using Nexus.Api.DTOs;
using Nexus.Api.Models;
using Nexus.Api.Repositories;
namespace Nexus.Api.Services;
@@ -121,7 +123,7 @@ public sealed class TaskService(
Detail = detail?.Trim(),
Source = string.IsNullOrWhiteSpace(source) ? "bao" : source.Trim(),
Priority = string.IsNullOrWhiteSpace(priority) ? "Normal" : priority.Trim(),
AssignedTo = assignedTo?.Trim()
AssignedTo = ValidateAssignedTo(assignedTo)
};
await taskRepo.AddAsync(task, ct);
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" created ({task.Source})" }, ct);
@@ -138,7 +140,7 @@ public sealed class TaskService(
if (detail is not null) task.Detail = string.IsNullOrWhiteSpace(detail) ? null : detail.Trim();
if (!string.IsNullOrWhiteSpace(source)) task.Source = source.Trim();
if (!string.IsNullOrWhiteSpace(priority)) task.Priority = priority.Trim();
if (assignedTo is not null) task.AssignedTo = string.IsNullOrWhiteSpace(assignedTo) ? null : assignedTo.Trim();
if (assignedTo is not null) task.AssignedTo = ValidateAssignedTo(assignedTo);
await taskRepo.UpdateAsync(task, ct);
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" updated" }, ct);
@@ -188,4 +190,145 @@ public sealed class TaskService(
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" priority → {task.Priority}" }, ct);
return new TaskOperationResult(TaskOperationOutcome.Success, task);
}
}
// ── Board operations ──
public async Task<TaskBoardResponse> GetBoardAsync(CancellationToken ct = default)
{
var all = await taskRepo.GetAllAsync(ct);
var offen = new List<DashboardTaskDto>();
var inProgress = new List<DashboardTaskDto>();
var review = new List<DashboardTaskDto>();
var blocked = new List<DashboardTaskDto>();
var done = new List<DashboardTaskDto>();
foreach (var task in all)
{
var dto = MapToDto(task);
switch (task.State.ToLowerInvariant())
{
case "backlog":
offen.Add(dto); break;
case "in progress":
inProgress.Add(dto); break;
case "review":
review.Add(dto); break;
case "blocked":
blocked.Add(dto); break;
case "done":
done.Add(dto); break;
default:
offen.Add(dto); break;
}
}
return new TaskBoardResponse(offen, inProgress, review, blocked, done);
}
public async Task<TaskOperationResult> MoveTaskAsync(Guid id, string newState, CancellationToken ct = default)
{
// Resolve canonical state: accept board group keys or canonical strings
var canonical = TaskStateHelper.AllStates
.FirstOrDefault(s => s.Equals(newState, StringComparison.OrdinalIgnoreCase));
if (canonical is null)
{
// Try mapping from board group key
canonical = TaskStateHelper.BoardGroupToState(newState);
}
if (canonical is null)
return new TaskOperationResult(TaskOperationOutcome.InvalidState);
var task = await taskRepo.GetByIdAsync(id, ct);
if (task is null) return new TaskOperationResult(TaskOperationOutcome.NotFound);
task.State = canonical;
await taskRepo.UpdateAsync(task, ct);
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Task \"{task.Title}\" moved to {canonical}" }, ct);
return new TaskOperationResult(TaskOperationOutcome.Success, task);
}
public async Task<int> ImportFromIrisTodoAsync(bool deleteAfterImport = false, CancellationToken ct = default)
{
var todoPath = "/mnt/workspace-iris/TODO.md";
if (!File.Exists(todoPath)) return 0;
var content = await File.ReadAllTextAsync(todoPath, ct);
var lines = content.Split('\n');
var imported = 0;
string? currentPriority = null;
// Parse sections and extract tasks with assignee info
// Pattern: ### N. Title 👤 Person
var taskPattern = new Regex(@"^###\s+\d+\.\s+(.+?)(?:\s+👤\s+(.+?))?$", RegexOptions.Compiled);
foreach (var line in lines)
{
var trimmed = line.Trim();
// Detect priority section
if (trimmed.StartsWith("## "))
{
var sectionLower = trimmed.ToLowerInvariant();
if (sectionLower.Contains("high")) currentPriority = "High";
else if (sectionLower.Contains("medium")) currentPriority = "Medium";
else if (sectionLower.Contains("low")) currentPriority = "Low";
else currentPriority = "Medium";
continue;
}
var match = taskPattern.Match(trimmed);
if (!match.Success) continue;
var title = match.Groups[1].Value.Trim();
var assigneeRaw = match.Groups[2].Success ? match.Groups[2].Value.Trim() : null;
// Resolve assignee: "Iris" → "iris", "Bao" → "bao", "Iris+Bao" → "iris"
string? assignedTo = null;
if (!string.IsNullOrWhiteSpace(assigneeRaw))
{
var lower = assigneeRaw.ToLowerInvariant();
if (lower.Contains("iris")) assignedTo = "iris";
else if (lower.Contains("bao")) assignedTo = "bao";
}
var task = new WorkTask
{
Title = title,
Source = "iris",
Priority = currentPriority ?? "Medium",
AssignedTo = assignedTo
};
await taskRepo.AddAsync(task, ct);
imported++;
}
if (deleteAfterImport)
{
File.Delete(todoPath);
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Imported {imported} tasks from TODO.md and deleted the file" }, ct);
}
else
{
await activityRepo.AddAsync(new ActivityEvent { Type = "task", Message = $"Imported {imported} tasks from TODO.md" }, ct);
}
return imported;
}
private static DashboardTaskDto MapToDto(WorkTask t) => new(
t.Id, t.Title, t.Detail, t.Source, t.State, t.Priority, t.AssignedTo, t.CreatedAt, t.UpdatedAt);
/// <summary>
/// Validates AssignedTo — only "bao", "iris", or null are accepted.
/// Returns null for invalid values.
/// </summary>
private static string? ValidateAssignedTo(string? assignedTo)
{
if (string.IsNullOrWhiteSpace(assignedTo)) return null;
var lower = assignedTo.Trim().ToLowerInvariant();
if (lower is "bao" or "iris") return lower;
return null;
}
}