Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

feat(core): shorthand for exposing model input/output pairs in hostDirectives

未关闭
#70,748 1 条评论 2 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
4/5
预计耗时
3-5 天
新手友好度
48/100
Issue 类型
功能
描述清晰度
基本清楚
活跃度
活跃
技术栈
angular, typescript
领域
api, frontend

调研方向

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 内容生成。

描述

area: core core: host directives feature
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

贡献指南

打开贡献指南

从这里开始

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

angular/angular 的其他 Issue

查看 angular/angular 的全部 Issue

相似的 Issue

更多 TypeScript Issue

把新 issue 发到你的邮箱

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