Add side panels, task selection, graph animation, and project docs

- Foldable left panel (user profile) and right panel (task details)
- Clicking a task in the list or graph node selects it and shows details
- Both views (task list + graph) always mounted via absolute inset-0 for
  correct canvas dimensions; tabs toggle visibility with opacity
- Graph node selection animation: other nodes repel outward (charge -600),
  then selected node smoothly slides to center (500ms cubic ease-out),
  then charge restores to -120 and graph stabilizes
- Graph re-fits on tab switch and panel resize via ResizeObserver
- Fix UUID string IDs throughout (backend returns UUIDs, not integers)
- Add TaskDetailPanel, UserPanel components
- Add CLAUDE.md project documentation

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Alvis
2026-04-08 11:23:06 +00:00
parent 5c7edd4bbc
commit f1d51b8cc8
23998 changed files with 3242708 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import type { ResponseCookies } from '../../../web/spec-extension/cookies';
export declare function handleRedirectResponse(url: string, mutableCookies: ResponseCookies, status: number): Response;
export declare function handleBadRequestResponse(): Response;
export declare function handleNotFoundResponse(): Response;
export declare function handleMethodNotAllowedResponse(): Response;
export declare function handleInternalServerErrorResponse(): Response;

View File

@@ -0,0 +1,67 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
handleBadRequestResponse: null,
handleInternalServerErrorResponse: null,
handleMethodNotAllowedResponse: null,
handleNotFoundResponse: null,
handleRedirectResponse: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
handleBadRequestResponse: function() {
return handleBadRequestResponse;
},
handleInternalServerErrorResponse: function() {
return handleInternalServerErrorResponse;
},
handleMethodNotAllowedResponse: function() {
return handleMethodNotAllowedResponse;
},
handleNotFoundResponse: function() {
return handleNotFoundResponse;
},
handleRedirectResponse: function() {
return handleRedirectResponse;
}
});
const _requestcookies = require("../../../web/spec-extension/adapters/request-cookies");
function handleRedirectResponse(url, mutableCookies, status) {
const headers = new Headers({
location: url
});
(0, _requestcookies.appendMutableCookies)(headers, mutableCookies);
return new Response(null, {
status,
headers
});
}
function handleBadRequestResponse() {
return new Response(null, {
status: 400
});
}
function handleNotFoundResponse() {
return new Response(null, {
status: 404
});
}
function handleMethodNotAllowedResponse() {
return new Response(null, {
status: 405
});
}
function handleInternalServerErrorResponse() {
return new Response(null, {
status: 500
});
}
//# sourceMappingURL=response-handlers.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../../../src/server/future/route-modules/helpers/response-handlers.ts"],"names":["handleBadRequestResponse","handleInternalServerErrorResponse","handleMethodNotAllowedResponse","handleNotFoundResponse","handleRedirectResponse","url","mutableCookies","status","headers","Headers","location","appendMutableCookies","Response"],"mappings":";;;;;;;;;;;;;;;;;;IAegBA,wBAAwB;eAAxBA;;IAYAC,iCAAiC;eAAjCA;;IAJAC,8BAA8B;eAA9BA;;IAJAC,sBAAsB;eAAtBA;;IAhBAC,sBAAsB;eAAtBA;;;gCAHqB;AAG9B,SAASA,uBACdC,GAAW,EACXC,cAA+B,EAC/BC,MAAc;IAEd,MAAMC,UAAU,IAAIC,QAAQ;QAAEC,UAAUL;IAAI;IAE5CM,IAAAA,oCAAoB,EAACH,SAASF;IAE9B,OAAO,IAAIM,SAAS,MAAM;QAAEL;QAAQC;IAAQ;AAC9C;AAEO,SAASR;IACd,OAAO,IAAIY,SAAS,MAAM;QAAEL,QAAQ;IAAI;AAC1C;AAEO,SAASJ;IACd,OAAO,IAAIS,SAAS,MAAM;QAAEL,QAAQ;IAAI;AAC1C;AAEO,SAASL;IACd,OAAO,IAAIU,SAAS,MAAM;QAAEL,QAAQ;IAAI;AAC1C;AAEO,SAASN;IACd,OAAO,IAAIW,SAAS,MAAM;QAAEL,QAAQ;IAAI;AAC1C"}