voidzero-dev / voidzero-dev/oxc-angular-compiler

Angular 21.2.0 + @oxc-angular/vite 0.0.7 SSR runtime parity regressions (RouterLinkActive, Forms DI, Apollo DI) require app-level shims

未关闭
#61 0 条评论 0 个 reaction 已指派 1 人 在 GitHub 查看

@Brooooooklyn 已经在做这个了。

开始于 2026年3月4日。

主要语言
Rust
星标
228
派生
20
平均合并
1 天 15 小时
30 天内合并 PR
36

描述

Summary

This is a separate issue from the SSR app-engine-manifest topic.

With Angular SSR + OXC build lane, we observed multiple runtime parity regressions that required patching Angular internals/app runtime behavior to avoid SSR crashes.

Environment

  • OS: macOS 15.7.4 (Darwin 24.6.0)
  • Arch: x86_64 (darwin-x64)
  • Node: v22.20.0
  • npm: 10.9.3

Versions

  • @angular/core: ^21.2.0
  • @angular/ssr: ^21.2.0
  • @angular/cli: ^21.2.0
  • @angular-devkit/build-angular: ^21.2.0
  • @oxc-angular/vite: ^0.0.7
  • vite: ^8.0.0-beta.16
  • typescript: ~5.9

Repro shape (project-level)

  1. Build OXC SSR:
    npm run build:oxc:ssr
    

Start SSR server:
bash

PORT=4211 HOST=127.0.0.1 node dist/portal-oxc/server/server.mjs
Hit SSR routes (example):
bash

curl "http://127.0.0.1:4211/en/account/login?cburl=%2Fen%2Fmerchant%2Fdashboard"
Errors observed (before app-level workarounds)
Forms DI / status directive

NG0201 related to NgControl during SSR route rendering.
NgControlStatus could be instantiated before a matching NgControl provider is available.
Reactive forms setup timing

FormControlName path could run before parent form directive is fully wired.
Runtime failure around parent formDirective / addControl availability.
Router query metadata

RouterLinkActive content query metadata appeared missing in SSR bundle path.
links was undefined during ngAfterContentInit, causing runtime failure.
Apollo generated services DI

Constructor DI metadata for generated Apollo services was not reliable in OXC SSR lane.
We had to force @Inject(Apollo.Apollo) on generated constructors to avoid DI/runtime breakage.
What we tried / current workaround
To keep OXC SSR route rendering stable, we added temporary patches:

RouterLinkActive shim:

In ngAfterContentInit, if links is undefined, initialize it with new QueryList().
NgControlStatus shim:

Patched ɵfac to inject NgControl with optional/self flags to avoid hard SSR crash.
FormControlName shim:

Guarded _setUpControl to return early if formDirective or addControl is not ready.
Apollo codegen patch:

Post-codegen script adds @Inject(Apollo.Apollo) to generated service constructors.
After these workarounds, SSR smoke is stable in our OXC lane.

Expected behavior
OXC SSR output should preserve Angular runtime parity so that:

RouterLinkActive content query behavior matches baseline.
Forms DI/setup order does not require patching internals.
Generated Apollo services do not need post-processing for DI compatibility.
Why this matters
Current behavior requires monkey-patching framework internals and generated code, which is fragile for upgrades and not production-safe long-term.

贡献指南

这个仓库没有索引到贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。