- 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>
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
var callBound = require('call-bound');
|
|
var $toString = callBound('Object.prototype.toString');
|
|
var hasSymbols = require('has-symbols')();
|
|
var safeRegexTest = require('safe-regex-test');
|
|
|
|
if (hasSymbols) {
|
|
var $symToStr = callBound('Symbol.prototype.toString');
|
|
var isSymString = safeRegexTest(/^Symbol\(.*\)$/);
|
|
|
|
/** @type {(value: object) => value is Symbol} */
|
|
var isSymbolObject = function isRealSymbolObject(value) {
|
|
if (typeof value.valueOf() !== 'symbol') {
|
|
return false;
|
|
}
|
|
return isSymString($symToStr(value));
|
|
};
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = function isSymbol(value) {
|
|
if (typeof value === 'symbol') {
|
|
return true;
|
|
}
|
|
if (!value || typeof value !== 'object' || $toString(value) !== '[object Symbol]') {
|
|
return false;
|
|
}
|
|
try {
|
|
return isSymbolObject(value);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
};
|
|
} else {
|
|
/** @type {import('.')} */
|
|
module.exports = function isSymbol(value) {
|
|
// this environment does not support Symbols.
|
|
return false && value;
|
|
};
|
|
}
|