lint frontend

This commit is contained in:
2026-03-31 19:52:48 -07:00
parent cd2722f845
commit f905bede92
7 changed files with 2036 additions and 32 deletions

View File

@@ -877,6 +877,11 @@ function Flow() {
const journalContentRef = useRef('');
const reactFlow = useReactFlow();
const scheduleAutoRun = useCallback(() => {
clearTimeout(autoRunTimer.current);
autoRunTimer.current = setTimeout(() => autoRunRef.current?.(), 300);
}, []);
// ── WebSocket ───────────────────────────────────────────────────────
const updateNodeData = useCallback((nodeId, patch) => {
@@ -1648,6 +1653,14 @@ function Flow() {
});
}, [reactFlow]);
const openJournalTab = useCallback(() => {
setHelpTabs((prev) => {
if (prev.find((t) => t.label === 'Journal')) return prev;
return [...prev, { label: 'Journal', type: 'journal', content: journalContentRef.current }];
});
setActiveHelpTab('Journal');
}, []);
// ── Add node from context menu ──────────────────────────────────────
const addNode = useCallback((className, def) => {
@@ -1797,11 +1810,6 @@ function Flow() {
});
};
const scheduleAutoRun = useCallback(() => {
clearTimeout(autoRunTimer.current);
autoRunTimer.current = setTimeout(() => autoRunRef.current?.(), 300);
}, []);
const onRuntimeValuesChange = useCallback((nodeId, patch, { scheduleRun = false } = {}) => {
if (!patch || typeof patch !== 'object') return;
@@ -1958,14 +1966,6 @@ function Flow() {
});
}, []);
const openJournalTab = useCallback(() => {
setHelpTabs((prev) => {
if (prev.find((t) => t.label === 'Journal')) return prev;
return [...prev, { label: 'Journal', type: 'journal', content: journalContentRef.current }];
});
setActiveHelpTab('Journal');
}, []);
const updateTabContent = useCallback((label, content) => {
if (label === 'Journal') journalContentRef.current = content;
setHelpTabs((prev) => prev.map((t) => t.label === label ? { ...t, content } : t));

View File

@@ -980,13 +980,6 @@ function NodeTable({ rows }) {
function CustomNode({ id, data }) {
const ctx = useContext(NodeContext);
if (data.className === 'Group') {
return <GroupNode id={id} data={data} />;
}
if (data.className === 'TextNote') {
return <TextNoteNode id={id} data={data} />;
}
const def = data.definition;
const scalarDisplay = formatScalarDisplay(data.scalarValue);
const processingTimeText = formatProcessingTime(data.processingTimeMs);
@@ -996,6 +989,7 @@ function CustomNode({ id, data }) {
// Find the COORDPAIR input name (if any) so we can resolve live upstream positions
const coordPairInputName = React.useMemo(() => {
if (!def) return null;
const allInputs = { ...def.input.required, ...def.input.optional };
for (const [name, spec] of Object.entries(allInputs)) {
const type = Array.isArray(spec) ? spec[0] : spec;
@@ -1018,8 +1012,8 @@ function CustomNode({ id, data }) {
);
// Parse inputs into data handles and widgets
const required = def.input.required || {};
const optional = def.input.optional || {};
const required = def?.input?.required || {};
const optional = def?.input?.optional || {};
const dataInputs = [];
const widgets = [];
@@ -1044,7 +1038,7 @@ function CustomNode({ id, data }) {
// For manual-trigger nodes (Save), show progressive optional inputs:
// show field_N only if field_(N-1) is connected (or N==0).
const isProgressive = def.manual_trigger;
const isProgressive = def?.manual_trigger;
const connectedInputs = useStore(
useCallback(
(s) => {
@@ -1075,6 +1069,13 @@ function CustomNode({ id, data }) {
),
);
if (data.className === 'Group') {
return <GroupNode id={id} data={data} />;
}
if (data.className === 'TextNote') {
return <TextNoteNode id={id} data={data} />;
}
for (const [name, spec] of Object.entries(optional)) {
const [type, opts] = getSpecTypeAndOptions(spec);
if (isProgressive && isDataSocketSpec(spec)) {
@@ -1210,7 +1211,7 @@ function CustomNode({ id, data }) {
style={{ background: TYPE_COLORS[socketType] || 'var(--fallback-type)' }}
/>
)}
{!!(
{(
(w.socketType && connectedInputs?.has(w.name))
|| (combinedInputName && connectedInputs?.has(combinedInputName))
) ? (
@@ -1556,7 +1557,6 @@ function TextInputValueBox({ val, placeholder, nodeId, name, label, hideLabel, o
>
{editing ? (
<input
// eslint-disable-next-line jsx-a11y/no-autofocus
autoFocus
className="nodrag"
type="text"

View File

@@ -11,7 +11,7 @@ function parseHeadings(md) {
for (const line of lines) {
const m = line.match(/^(#{1,6})\s+(.+)/);
if (m) {
const text = m[2].replace(/[*_`~\[\]]/g, '').trim();
const text = m[2].replace(/[*_`~[\]]/g, '').trim();
const id = text.toLowerCase().replace(/[^\w]+/g, '-').replace(/(^-|-$)/g, '');
headings.push({ level: m[1].length, text, id });
}
@@ -187,7 +187,6 @@ function JournalTab({ content, onChange, onOpenDoc }) {
}
}}
placeholder="Write your notes here (Markdown supported)…"
// eslint-disable-next-line jsx-a11y/no-autofocus
autoFocus
/>
) : renderedHtml ? (

View File

@@ -7,6 +7,10 @@ const SI_PREFIX_MULTIPLIERS = {
const NUMBER_WITH_UNIT_RE = /^([+-]?(?:\d+\.?\d*|\.\d+)(?:[eE][+-]?\d+)?)\s*(.*)?$/;
const PREFIXABLE_UNITS = new Set([
'm', 's', 'A', 'V', 'W', 'Hz', 'F', 'C', 'J', 'N', 'Pa', 'T', 'H', 'S', 'g', 'K', 'Ohm', 'ohm', 'Ω',
]);
/**
* Parse a string like "1.5 nm" into { numeric: 1.5e-9, unit: "m" }.
* Returns null if the string does not start with a valid number.
@@ -56,10 +60,6 @@ const SI_PREFIXES = [
{ exp: 24, prefix: 'Y' },
];
const PREFIXABLE_UNITS = new Set([
'm', 's', 'A', 'V', 'W', 'Hz', 'F', 'C', 'J', 'N', 'Pa', 'T', 'H', 'S', 'g', 'K', 'Ohm', 'ohm', 'Ω',
]);
const SUPERSCRIPT_DIGITS = {
'-': '⁻',
'0': '⁰',