- 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>
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = class SymbolTreeNode {
|
|
constructor() {
|
|
this.parent = null;
|
|
this.previousSibling = null;
|
|
this.nextSibling = null;
|
|
|
|
this.firstChild = null;
|
|
this.lastChild = null;
|
|
|
|
/** This value is incremented anytime a children is added or removed */
|
|
this.childrenVersion = 0;
|
|
/** The last child object which has a cached index */
|
|
this.childIndexCachedUpTo = null;
|
|
|
|
/** This value represents the cached node index, as long as
|
|
* cachedIndexVersion matches with the childrenVersion of the parent */
|
|
this.cachedIndex = -1;
|
|
this.cachedIndexVersion = NaN; // NaN is never equal to anything
|
|
}
|
|
|
|
get isAttached() {
|
|
return Boolean(this.parent || this.previousSibling || this.nextSibling);
|
|
}
|
|
|
|
get hasChildren() {
|
|
return Boolean(this.firstChild);
|
|
}
|
|
|
|
childrenChanged() {
|
|
/* jshint -W016 */
|
|
// integer wrap around
|
|
this.childrenVersion = (this.childrenVersion + 1) & 0xFFFFFFFF;
|
|
this.childIndexCachedUpTo = null;
|
|
}
|
|
|
|
getCachedIndex(parentNode) {
|
|
// (assumes parentNode is actually the parent)
|
|
if (this.cachedIndexVersion !== parentNode.childrenVersion) {
|
|
this.cachedIndexVersion = NaN;
|
|
// cachedIndex is no longer valid
|
|
return -1;
|
|
}
|
|
|
|
return this.cachedIndex; // -1 if not cached
|
|
}
|
|
|
|
setCachedIndex(parentNode, index) {
|
|
// (assumes parentNode is actually the parent)
|
|
this.cachedIndexVersion = parentNode.childrenVersion;
|
|
this.cachedIndex = index;
|
|
}
|
|
};
|