feat(core): shorthand for exposing model input/output pairs in hostDirectives
还没有人认领这个 Issue。
评估
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 新手友好度
- 48/100
- Issue 类型
- 功能
- 描述清晰度
- 基本清楚
- 活跃度
- 活跃
- 技术栈
- angular, typescript
调研方向
Start by reading the core hostDirectives API for separate inputs and outputs, then compare it with model() and twoWayBinding() behavior in createComponent. Trace how aliases and overlapping declarations are handled. Done means a models shorthand supports aliased model input/output pairs without regressions, with coverage for the relevant edge cases.
由索引模型根据 Issue 内容生成。
描述
Which @angular/* package(s) are relevant/related to the feature request?
core
Description
Hey!
Currently, exposing a model through hostDirectives requires listing its input and output separately:
@Directive({ selector: '[dir]' })
export class Dir {
readonly value = model.required<number>();
}
@Component({
selector: 'Comp',
hostDirectives: [
{
directive: Dir,
inputs: ['value: aliasedValue'],
outputs: ['valueChange: aliasedValueChange'],
},
],
template: `
<button (click)="value.set(value() - 1)">-</button>
<span>{{ value() }}</span>
<button (click)="value.set(value() + 1)">+</button>
`,
})
export class Comp {
protected readonly value = inject(Dir).value;
}
@Component({
imports: [Comp],
template: `
<h3>Value: {{ v() }}</h3>
<Comp [(aliasedValue)]="v" />
`,
})
export class App {
protected readonly v = signal(0);
}
https://stackblitz.com/edit/stackblitz-starters-envjksbm
The hostDirectives API predates model(), so this makes sense. However, since createComponent now supports twoWayBinding(), I think it would be nice to offer a similar convenience in hostDirectives and reduce this boilerplate (assuming details such as overlapping declarations can be addressed). In general, a concrete use case is aria/directives.
So something like this:
hostDirectives: [
{ directive: Dir, models: ['value: aliasedValue'] },
]
Thanks a lot!
Cheers
- 主要语言
- TypeScript
- 星标
- 101k
- 派生
- 28.1k
- 平均合并
- 2 天 6 小时
- 30 天内合并 PR
- 307
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
angular/angular 的其他 Issue
-
area: docs
难度 2/5 1-3 小时 新手友好度 76/100
-
area: forms forms: signals
难度 2/5 1-3 小时 新手友好度 78/100
-
area: docs gemini-triaged
难度 2/5 1-3 小时 新手友好度 70/100
-
area: forms forms: signals
难度 2/5 1-3 小时 新手友好度 68/100
-
area: docs area: forms
难度 2/5 1-3 小时 新手友好度 76/100
相似的 Issue
-
难度 2/5 1-3 小时 新手友好度 75/100
vercel-labs/just-bash#464 ·
-
looksLikeSlug() is ASCII-only, so non-Latin entity slugs (e.g. Korean) skip exact match and collapse 未关闭
难度 2/5 1-3 小时 新手友好度 75/100
-
难度 2/5 1-3 小时 新手友好度 65/100
-
难度 2/5 1-3 小时 新手友好度 65/100
-
难度 1/5 1 小时以内 新手友好度 90/100
TanStack/tanstack.com#1293 ·