什么是角度合成属性?

时间:2017-11-30 22:10:50

标签: angular typescript angular-animations

最近,在开发动画组件时,我遇到了术语synthetic property

<bmx-panel [@sidebarState]="state">

  <i bmxPanelHeader (click)="toggle($event)"
     class="fa fa-angle-double-right fa-lg"></i>
  ...    
</bmx-panel>

在我的情况下,当[@sidebarState]="state"函数更改state属性时,合成属性toggle会触发组件的展开/折叠动画。

trigger方法的第一个参数是相应合成属性@sidebarState的名称。

@Component({
  selector: 'app-sidebar',
  templateUrl: './sidebar.component.html',
  styleUrls: ['./sidebar.component.scss'],
  animations: [
    trigger('sidebarState', [
      state('expanded', style( { width: '240px' } )),
      state('collapsed', style({ width: '40px' })),
      transition('expanded => collapsed', animate('350ms ease-in')),
      transition('collapsed => expanded', animate('350ms ease-out'))
    ])
  ]
})
export class SidebarComponent  {  
  public state = 'expanded';

  constructor() {}

  toggle(event: any) {    
    this.state = this.state === "expanded" ? "collapsed" : "expanded";  
  }
}

谷歌搜索没有提供有关合成属性的更多信息。角度文档中也没有提到任何内容。有没有人对这个概念有更深入的了解?

1 个答案:

答案 0 :(得分:0)

它是合成的,因为它看起来像一个Angular属性,但在常识中并不像一个行为。这个词只是描述性的。