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,11 @@
'use strict';
var matchers = require('./matchers-98b869c1.js');
require('redent');
require('@adobe/css-tools');
require('dom-accessibility-api');
require('aria-query');
require('picocolors');
require('css.escape');
expect.extend(matchers.extensions);

View File

@@ -0,0 +1,9 @@
import { e as extensions } from './matchers-35e4d3bd.mjs';
import 'redent';
import '@adobe/css-tools';
import 'dom-accessibility-api';
import 'aria-query';
import 'picocolors';
import 'css.escape';
expect.extend(extensions);

View File

@@ -0,0 +1,15 @@
'use strict';
var globals = require('@jest/globals');
var matchers = require('./matchers-98b869c1.js');
require('redent');
require('@adobe/css-tools');
require('dom-accessibility-api');
require('aria-query');
require('picocolors');
require('css.escape');
/* istanbul ignore file */
globals.expect.extend(matchers.extensions);

View File

@@ -0,0 +1,13 @@
import { expect } from '@jest/globals';
import { e as extensions } from './matchers-35e4d3bd.mjs';
import 'redent';
import '@adobe/css-tools';
import 'dom-accessibility-api';
import 'aria-query';
import 'picocolors';
import 'css.escape';
/* istanbul ignore file */
expect.extend(extensions);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,45 @@
'use strict';
var matchers = require('./matchers-98b869c1.js');
require('redent');
require('@adobe/css-tools');
require('dom-accessibility-api');
require('aria-query');
require('picocolors');
require('css.escape');
exports.toAppearAfter = matchers.toAppearAfter;
exports.toAppearBefore = matchers.toAppearBefore;
exports.toBeChecked = matchers.toBeChecked;
exports.toBeDisabled = matchers.toBeDisabled;
exports.toBeEmpty = matchers.toBeEmpty;
exports.toBeEmptyDOMElement = matchers.toBeEmptyDOMElement;
exports.toBeEnabled = matchers.toBeEnabled;
exports.toBeInTheDOM = matchers.toBeInTheDOM;
exports.toBeInTheDocument = matchers.toBeInTheDocument;
exports.toBeInvalid = matchers.toBeInvalid;
exports.toBePartiallyChecked = matchers.toBePartiallyChecked;
exports.toBePartiallyPressed = matchers.toBePartiallyPressed;
exports.toBePressed = matchers.toBePressed;
exports.toBeRequired = matchers.toBeRequired;
exports.toBeValid = matchers.toBeValid;
exports.toBeVisible = matchers.toBeVisible;
exports.toContainElement = matchers.toContainElement;
exports.toContainHTML = matchers.toContainHTML;
exports.toHaveAccessibleDescription = matchers.toHaveAccessibleDescription;
exports.toHaveAccessibleErrorMessage = matchers.toHaveAccessibleErrorMessage;
exports.toHaveAccessibleName = matchers.toHaveAccessibleName;
exports.toHaveAttribute = matchers.toHaveAttribute;
exports.toHaveClass = matchers.toHaveClass;
exports.toHaveDescription = matchers.toHaveDescription;
exports.toHaveDisplayValue = matchers.toHaveDisplayValue;
exports.toHaveErrorMessage = matchers.toHaveErrorMessage;
exports.toHaveFocus = matchers.toHaveFocus;
exports.toHaveFormValues = matchers.toHaveFormValues;
exports.toHaveRole = matchers.toHaveRole;
exports.toHaveSelection = matchers.toHaveSelection;
exports.toHaveStyle = matchers.toHaveStyle;
exports.toHaveTextContent = matchers.toHaveTextContent;
exports.toHaveValue = matchers.toHaveValue;

View File

@@ -0,0 +1,7 @@
export { H as toAppearAfter, G as toAppearBefore, z as toBeChecked, r as toBeDisabled, b as toBeEmpty, c as toBeEmptyDOMElement, s as toBeEnabled, t as toBeInTheDOM, a as toBeInTheDocument, v as toBeInvalid, A as toBePartiallyChecked, F as toBePartiallyPressed, E as toBePressed, u as toBeRequired, w as toBeValid, q as toBeVisible, d as toContainElement, f as toContainHTML, h as toHaveAccessibleDescription, i as toHaveAccessibleErrorMessage, k as toHaveAccessibleName, l as toHaveAttribute, m as toHaveClass, B as toHaveDescription, y as toHaveDisplayValue, C as toHaveErrorMessage, o as toHaveFocus, p as toHaveFormValues, j as toHaveRole, D as toHaveSelection, n as toHaveStyle, g as toHaveTextContent, x as toHaveValue } from './matchers-35e4d3bd.mjs';
import 'redent';
import '@adobe/css-tools';
import 'dom-accessibility-api';
import 'aria-query';
import 'picocolors';
import 'css.escape';

View File

@@ -0,0 +1,15 @@
'use strict';
var vitest = require('vitest');
var matchers = require('./matchers-98b869c1.js');
require('redent');
require('@adobe/css-tools');
require('dom-accessibility-api');
require('aria-query');
require('picocolors');
require('css.escape');
/* istanbul ignore file */
vitest.expect.extend(matchers.extensions);

View File

@@ -0,0 +1,13 @@
import { expect } from 'vitest';
import { e as extensions } from './matchers-35e4d3bd.mjs';
import 'redent';
import '@adobe/css-tools';
import 'dom-accessibility-api';
import 'aria-query';
import 'picocolors';
import 'css.escape';
/* istanbul ignore file */
expect.extend(extensions);