Skip to content

fix(plugin-tree): detect a tree parent pointer only when it is this object's own (#7839) - #8030

Merged
os-steve merged 1 commit into
mainfrom
claude/issue-7839-tree-arm-own-reference
Sep 6, 2026
Merged

fix(plugin-tree): detect a tree parent pointer only when it is this object's own (#7839)#8030
os-steve merged 1 commit into
mainfrom
claude/issue-7839-tree-arm-own-reference

Conversation

@os-steve

@os-steve os-steve commented Sep 6, 2026

Copy link
Copy Markdown
Collaborator

Fixes #7839

Both items of the card, one PR. Branched from origin/main @ f5c8b8e (ahead of the dispatch anchor 83a9d22); all six anchors in the claim comment re-verified there before editing.

Item 1 — the tree arm mirrors the parse door

packages/plugin-tree/src/ObjectTree.tsx detectParentField returned the first type: 'tree' field whatever its reference said. It now accepts one only when reference is absent or equals the bound objectName.

Measured, not paraphrased. Read on objectstack main rather than taken from the order. refuseForeignTreeReference (packages/spec/src/data/object.zod.ts) skips a field unless it is foreign-shaped:

if (type !== 'tree' || reference === undefined || reference === ownName) continue;

so the accept set is exactly {absent, own name} — reference stays OPTIONAL on a tree, where the rule makes it a redundant self-annotation, and only a value naming another object is refused. The spec's kernel predicate hasDetectableParentField (packages/spec/src/kernel/functional-completeness.ts) reads the identical rule and carries the own-name guard as own !== undefined && def.reference === own; its docblock names this reader as the one place still out of step. That guard is mirrored too: an object whose name we do not know cannot be self-referenced. No signature change — objectName was already in scope.

One behavioural half worth naming separately. The arm now skips rather than returns, so a foreign tree can no longer mask a self-referencing lookup declared after it. Under the old early-return it won by position and the lookup never got its turn; that case renders flat today and is pinned below.

Pin: packages/plugin-tree/src/ObjectTree.treeArmOwnReference-7839.test.tsx, beside ObjectTree.referenceArms-6837.test.tsx and in that file's form (2 live arms, 2 refusals, a degenerate-pass guard, 2 lookup regression controls, 2 spec-anchored controls).

The renderer tightens AHEAD of the spec copy this repo installs

Probed two-directionally on the copy this branch resolves through packages/plugin-tree@objectstack/spec@17.2.0, on an object named business_unit:

shape 17.2.0 verdict
{ type: 'tree' } ACCEPT
{ type: 'tree', reference: 'business_unit' } ACCEPT
{ type: 'tree', reference: 'other_object' } ACCEPT

refuseForeignTreeReference landed on objectstack main after 17.2.0 was cut, and objectui tracks the spec by npm semver (^17.0.0 / ^17.2.0), not by SHA — so there is no pin to move and no Blocked-by:, exactly as the card says, but the reason is sharper than "does not depend on the pin": until that version bump, this function is the only door. The pin therefore asserts only the half 17.2.0 can answer (reference is optional on a tree, so the accept-when-absent arm is not blessing a shape the schema rejects) and records the missing leg as prose with instructions to add it, not delete it, when the version moves.

Item 2 — the four fixtures: I dropped the key, and did not rename

The judgement call the card is wrong about. The card says all four spell it reference. The fourth — packages/plugin-detail/src/__tests__/expandableFamily.identity-5874.test.tsx — spells it reference_to (triage 5556381290 caught this; re-confirmed here). So the second question had to be answered before choosing, and it was, by probing the installed FieldSchema with a positive and a negative control:

key on a tree field 17.2.0 verdict
reference ACCEPT
reference_to REFUSE, unrecognized_keys, with the rename hint "Did you mean reference_to to reference?"
a nonsense key (negative control) REFUSE, unrecognized_keys, no rename hint

It is not a legal key. The rename hint is attached to a refusal, not to an acceptance — the negative control is what shows that, since it is refused too and gets no hint. So "rename to a self-reference" and "drop the key" are not equivalent, and the card authorising both is not the same as them being interchangeable.

Chosen: drop the key, in all four. One rule, applied uniformly:

A tree field's reference is optional and, when present, must name the declaring object. None of these four fixtures declares an object identity a self-reference could name, and none of the four assertions reads the target — every one of them selects by declared TYPE.

Per fixture, with the reader that decides it:

fixture was reads the target?
core/.../expand-fields.test.ts f_tree -> showcase_category no — buildExpandFields matches EXPANDABLE_FIELD_TYPES on type
core/.../predicate-record.test.ts parent -> showcase_category no — toPredicateRecord collapses by declared type
plugin-detail/.../identity-5874.test.tsx parent_node, retired snake key -> deals no — the assertion is drawerField('parent_node').readonly === true
plugin-dashboard/.../identity-5692.test.ts parent_node -> nodes no — isLookupType / computeLookupExpand read type

So mechanism assumption 2 of the order holds for all four — nothing to stop and report.

Two reasons renaming was rejected rather than merely not-chosen:

  1. It would have fabricated identity. Three of the four containers have no object name at all (two are bare field maps; the dashboard schema declares no name), so a "self-reference" would be an arbitrary string no reader of the fixture could check against anything. In the one container that is named (name: 'deal'), the key was the refused spelling — renaming there would have converted a key the canonical schema refuses into one it accepts, i.e. added a spec-legal self-annotation the fixture never made, and left it the only field in that map in the canonical dialect while its siblings stay in the legacy one.
  2. A copied target value is the failure that produced this card. f_tree -> showcase_category is a stale mirror of the showcase zoo; upstream corrected it (examples/app-showcase/src/data/objects/field-zoo.object.ts now has f_tree: { type: 'tree', label: 'Tree (self-reference)', reference: 'showcase_field_zoo' }). Re-pointing the mirror re-arms exactly that staleness. Dropping a key the spec calls redundant removes the class.

No ruled flip. Mechanism assumption 3 checked: no existing pin asserted the foreign-shaped behaviour. ObjectTree.settledSchemaKeying-6481.test.tsx carries two type: 'tree' fields, but both are genuine self-references (business_unit -> business_unit, territory -> territory) and it declares parentField explicitly anyway. Nothing needed a flip word.

One comment in ObjectTree.referenceArms-6837.test.tsx was made stale by item 1 and is corrected in place (it said the detector "returns a tree field before it ever reads a target"). The correction strengthens that pin's own design rather than weakening it: with the tightening, a tree carrying only a refused spelling reads to this arm as having no reference at all and is therefore accepted, so probing the spelling chain on a tree would invert every refusal to green. lookup remains the right probe type.

Verification

Ablation direction predicted before running, and matched. Restoring if (def?.type === 'tree') return key; on the committed tree:

× does NOT pick a `tree` whose `reference` names another object
× and no longer MASKS a self-referencing lookup declared after it
Test Files  1 failed | 2 passed (3)
     Tests  2 failed | 17 passed (19)

Exactly the two refusal cases red; both live arms, the degenerate-pass guard, both lookup controls, both spec-anchored controls, and the sibling -6837 and -6481 pins all green. Mutation proven on disk by anchor counts either side (guarded arm 1 to 0, bare arm 0 to 1) and by a blob-hash change; restored with git checkout HEAD -- path, proven by git diff HEAD empty and by the hash returning to the HEAD blob. No rebuild leg: the pin imports the component by relative source path, so both legs resolve to source.

Green run on the restored tree, at dc16481:

  • pnpm exec vitest run packages/plugin-tree/ packages/core/ packages/plugin-detail/ packages/plugin-dashboard/ — exit 0, 355 files / 4608 tests passed
  • pnpm exec turbo run type-check over the same four — exit 0, 17 tasks. Test files are in scope: each package's script is tsc --noEmit && tsc -p tsconfig.test.json, and the new pin was confirmed present in the plugin-tree program by --listFiles
  • pnpm exec turbo run lint over the same four — exit 0, 5 tasks

Gate family derived by hand from the changed paths (scripts/pm/dispatch-gates.mjs does not exist in this repo); every exit code captured before any pipe, and each verdict quoted from the gate's own line:

gate exit reason it is in the family
check:control-bytes 0 any edit
check-changeset-presence 0 published src/ file changed
check-changeset-fixed 0 changeset added
check-changeset-no-major 0 changeset added
check-changeset-overwrite 0 changeset added
check:phantom-deps 0 new bare import of @objectstack/spec/data in plugin-tree (declared: ^17.0.0)
check:vi-mock-specifiers 0 new test file
check:vi-mock-inherit 0 new test file
check:unreferenced-sources 0 new source file
check:spec-symbols 0 comments cite spec symbols and keys
check-governed-queue-guard --test 0 verdict: NOT GOVERNED, 8 paths, none matched — ordinary route

Changeset: .changeset/7839-tree-arm-own-reference.md, '@object-ui/plugin-tree': patch. Not the empty-frontmatter form — this moves published behaviour in src/, so it declares a real bump. skip-changeset deliberately not applied; it is inert in this repo.

Out of scope, filed not fixed

The reference_to spelling that made the card's own enumeration miss its fourth fixture also hides three more foreign-shaped type: 'tree' fixtures the card never names — in plugin-view, plugin-list and plugin-calendar. Same defect class, but outside this claim's declared file surface, and plugin-calendar is held by another in-flight claim, so they are filed rather than swept in here: see #8031 (no assignee, for PM triage). That issue is not addressed by this PR and remains open after it merges.


Generated by Claude Code

… object's own

`detectParentField` returned the first `type: 'tree'` field whatever its
`reference` said, so a foreign-shaped one was silently picked as the parent
pointer and the forest was grouped on a pointer into a table it does not point
at. The `tree` arm now mirrors `@objectstack/spec`'s own kernel predicate
`hasDetectableParentField` term for term — accept when `reference` is absent, or
when it equals the bound `objectName` — including the `objectName` guard, since
an object whose name we do not know cannot be self-referenced.

Skipping rather than returning also removes a masking bug the old early-return
hid: a foreign `tree` declared before a self-referencing `lookup` used to win by
position and the lookup never got its turn. The `lookup` / `master_detail` arm
is otherwise unchanged.

Fixture hygiene, same rule: four unit fixtures declared a `type: 'tree'` field
with a target naming another object, a shape the parse door refuses. The key is
optional on a `tree` and none of the four assertions reads it — every one of
them selects by declared TYPE — so the key is dropped rather than renamed. None
of the four declares an object identity a self-reference could name, and in the
plugin-detail fixture the key was the retired snake_case spelling `FieldSchema`
refuses BY NAME, so renaming it would have turned a refused key into an accepted
self-annotation the fixture never made.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QnpvbdoRisQdRAczkLwnf5
@github-actions

github-actions Bot commented Sep 6, 2026

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Eager closure (gzip, 50 chunks) 3186.0 KB 3191.4 KB
Main entry chunk (gzip) 143.5 KB 350 KB
Entry file index-DMa84Z37.js
Status PASS

The eager closure is every chunk the entry reaches through static imports — what the browser fetches and parses before the app renders. The entry chunk on its own is a small fraction of it.


📦 Bundle Size Report

Package Size Gzipped
app-shell (consoleActionDispatch.js) 0.20KB 0.19KB
app-shell (index.js) 15.67KB 5.75KB
app-shell (runtime-config.js) 20.68KB 7.36KB
app-shell (types.js) 0.01KB 0.04KB
app-shell (urlParams.js) 10.06KB 3.86KB
auth (ActiveOrganizationStorage.js) 25.05KB 9.16KB
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 2.07KB 1.00KB
auth (AuthProvider.js) 40.18KB 10.59KB
auth (AuthShell.js) 3.49KB 1.40KB
auth (ForgotPasswordForm.js) 12.21KB 3.45KB
auth (LoginForm.js) 18.15KB 5.39KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.65KB 2.22KB
auth (SocialSignInButtons.js) 9.61KB 3.89KB
auth (UserMenu.js) 3.41KB 1.23KB
auth (auth-gate-events.js) 1.29KB 0.66KB
auth (authStyles.js) 5.04KB 1.72KB
auth (createAuthClient.js) 40.21KB 10.80KB
auth (createAuthenticatedFetch.js) 8.46KB 3.43KB
auth (index.js) 3.19KB 1.44KB
auth (invitation-status.js) 1.22KB 0.70KB
auth (org-roles.js) 6.66KB 2.78KB
auth (phone-identifier.js) 1.11KB 0.66KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 5.30KB 1.02KB
auth (useWorkspaceAdminStatus.js) 5.13KB 2.35KB
collaboration (CommentThread.js) 26.08KB 7.56KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 6.49KB 2.64KB
collaboration (PresenceProvider.js) 2.79KB 1.13KB
collaboration (index.js) 1.68KB 0.73KB
collaboration (useCollaborationTranslation.js) 6.05KB 2.52KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 497.06KB 113.79KB
core (index.js) 6.96KB 2.79KB
create-plugin (index.js) 10.08KB 3.26KB
data-objectstack (index.js) 182.08KB 50.62KB
fields (index.js) 242.44KB 61.25KB
i18n (LocalizationContext.js) 1.76KB 0.96KB
i18n (builtinAggregateLabels.js) 0.86KB 0.49KB
i18n (currency.js) 1.22KB 0.64KB
i18n (fallbackInterpolation.js) 6.25KB 2.77KB
i18n (i18n.js) 4.28KB 1.75KB
i18n (index.js) 3.65KB 1.47KB
i18n (pickLocalized.js) 7.62KB 3.26KB
i18n (provider.js) 26.89KB 9.04KB
i18n (useDisplayLocale.js) 2.85KB 1.45KB
i18n (useObjectLabel.js) 34.34KB 9.17KB
i18n (useSafeTranslation.js) 5.60KB 2.33KB
layout (index.js) 38.84KB 10.94KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (createOfflineDataSource.js) 5.61KB 1.75KB
mobile (index.js) 1.99KB 0.87KB
mobile (offlineQueue.js) 3.91KB 1.35KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (serviceWorkerSource.js) 3.41KB 1.48KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 6.96KB 1.98KB
mobile (useOfflineSync.js) 1.99KB 0.72KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.72KB 0.42KB
mobile (useSpecGesture.js) 4.39KB 1.66KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (MePermissionsProvider.js) 11.71KB 4.29KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 6.24KB 2.16KB
permissions (discardProofCache.js) 1.04KB 0.55KB
permissions (evaluator.js) 5.12KB 1.74KB
permissions (index.js) 0.93KB 0.41KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.53KB
permissions (usePermissions.js) 4.83KB 2.27KB
plugin-ai (index.js) 15.16KB 3.68KB
plugin-calendar (index.js) 47.35KB 13.21KB
plugin-charts (index.js) 70.31KB 19.62KB
plugin-chatbot (index.js) 193.53KB 46.05KB
plugin-dashboard (index.js) 131.41KB 34.43KB
plugin-designer (index.js) 211.51KB 43.01KB
plugin-detail (index.js) 247.59KB 63.48KB
plugin-editor (index.js) 2.23KB 1.05KB
plugin-form (index.js) 131.01KB 32.32KB
plugin-gantt (index.js) 167.16KB 40.99KB
plugin-grid (index.js) 208.56KB 56.63KB
plugin-kanban (index.js) 52.30KB 14.49KB
plugin-list (index.js) 113.24KB 27.66KB
plugin-map (index.js) 20.35KB 6.77KB
plugin-markdown (index.js) 13.88KB 4.80KB
plugin-report (index.js) 43.42KB 11.92KB
plugin-timeline (index.js) 29.95KB 8.67KB
plugin-tree (index.js) 9.19KB 3.19KB
plugin-view (index.js) 84.33KB 20.75KB
providers (DataSourceProvider.js) 0.75KB 0.39KB
providers (MetadataProvider.js) 1.37KB 0.59KB
providers (ThemeProvider.js) 1.90KB 0.85KB
providers (UploadProvider.js) 11.66KB 3.50KB
providers (index.js) 0.45KB 0.23KB
providers (types.js) 0.01KB 0.04KB
react-runtime (index.js) 5.62KB 2.34KB
react (LazyPluginLoader.js) 4.47KB 1.63KB
react (SchemaRenderer.js) 81.07KB 26.86KB
react (data-invalidation.js) 5.05KB 2.08KB
react (index.js) 4.63KB 2.18KB
react (schema-input.js) 2.32KB 1.24KB
react (spec-input.js) 0.20KB 0.18KB
sdui-parser (codegen.js) 5.41KB 2.34KB
sdui-parser (dashboard-widget-options.js) 3.08KB 1.30KB
sdui-parser (index.js) 4.93KB 2.24KB
sdui-parser (input-type.js) 2.84KB 1.40KB
sdui-parser (parse.js) 20.57KB 5.88KB
sdui-parser (provenance.js) 3.66KB 1.82KB
sdui-parser (types.js) 0.28KB 0.23KB
sdui-parser (validate.js) 10.35KB 3.60KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 1.00KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 2.74KB 1.41KB
types (crud.js) 0.20KB 0.18KB
types (dashboard-filter-alias.js) 6.23KB 2.74KB
types (data-display.js) 3.75KB 1.85KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 1.85KB 0.85KB
types (disclosure.js) 0.20KB 0.18KB
types (error-code.js) 1.54KB 0.88KB
types (expression.js) 0.20KB 0.18KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (http-inflight.js) 8.87KB 3.73KB
types (http-retry.js) 4.32KB 2.02KB
types (icon-key-migration.js) 4.26KB 1.63KB
types (index.js) 4.74KB 2.25KB
types (layout.js) 0.20KB 0.18KB
types (managed-by.js) 0.19KB 0.18KB
types (mobile.js) 4.73KB 2.28KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (record-semantics.js) 1.28KB 0.67KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (select-option.js) 0.20KB 0.19KB
types (spec-report.js) 5.05KB 1.93KB
types (spec-ui-namespace.js) 0.20KB 0.19KB
types (system-fields.js) 3.33KB 1.54KB
types (theme.js) 6.28KB 2.87KB
types (ui-action.js) 8.11KB 3.32KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

@os-steve
os-steve marked this pull request as ready for review September 6, 2026 11:54
@os-steve
os-steve added this pull request to the merge queue Sep 6, 2026
Merged via the queue into main with commit f556a89 Sep 6, 2026
33 of 34 checks passed
@os-steve
os-steve deleted the claude/issue-7839-tree-arm-own-reference branch September 6, 2026 12:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

2 participants