我正在尝试开发旋转木马。
所需的最终结果应该是开发人员只需使用options
属性将整个标记写入一个位置(例如,在app.component.html
中(,然后旋转木马将接管。
问题是,从carousel.component
我需要在carousel-item.component
上设置一些属性(app.component
的属性应该与...无关...但是所有标记都在app.component.html
中(。
我该如何实现?
app.component.html:
<carousel [options]="myOptions">
<carousel-item *ngFor="let item of items">
<img [src]="item.image" alt="" />
</carousel-item>
</carousel>
<hr />
<carousel [options]="myOptions2">
<carousel-item *ngFor="let item of items">
<img [src]="item.image" alt="" />
</carousel-item>
</carousel>
carousel.component.html:
<div class="carousel-stage">
<ng-content></ng-content>
</div>
carousel-item.component.html:
<ng-content></ng-content>
我认为唯一的解决方案是使用@ContentChildren()
在我的carousel.component.ts
中:
import { ContentChildren, ... } from '@angular/core';
// ...
export class CarouselComponent implements AfterContentInit {
@ContentChildren(ItemComponent) carouselItems;
ngAfterContentInit() {
this.carouselItems.forEach((item: ItemComponent, currentIndex) => {
// Do stuff with each item
// Even call item's methods:
item.setWidth(someComputedWidth);
item.setClass(someClass);
}
}
}
然后,在carousel-item.component.ts
中:
export class ItemComponent implements OnInit, OnDestroy {
@HostBinding('style.width') itemWidth;
@HostBinding('class') itemClass;
@HostBinding('@fade') fadeAnimationState;
setWidth(width) {
this.itemWidth = width + 'px';
}
setClass(class) {
this.itemClass = class;
}
setAnimationState(state) {
this.fadeAnimationState = state;
}
}
显然,我什至可以用 @HostBinding 绑定动画触发。我以为@hostbingind((的设计仅适用于标准的HTML属性(样式,班级等(,但似乎我实际上可以绑定任何东西(实际上是任何东西(。
有人有更好的解决方案吗?在我接受自己的答案之前...