• [Angular] Angular Advanced Features


    Previously we have tab-panel template defined like this:

    <ul class="tab-panel-buttons" *ngIf="tabs">
      <li
        [ngClass]="{selected: tab.selected}"
        (click)="selectTab(tab)"
        *ngFor="let tab of tabs;">{{tab.title}}
      </li>
    </ul>
    
    <ng-content></ng-content>

    So the template is not overrideable. If we want later able to pass in a different template, we need to use some advanced features from Angular.

    ng-template: We can wrap the whole header into <ng-template>, by defualt, ng-template will not render to the DOM.

    <ng-template #defaultTabHeader>
      <ul class="tab-panel-buttons" *ngIf="tabs">
        <li
          [ngClass]="{selected: tab.selected}"
          (click)="selectTab(tab)"
          *ngFor="let tab of tabs;">{{tab.title}}
        </li>
      </ul>
    </ng-template>

    To be able to render the template to the DOM; we need to use <ng-content>:

    <ng-template #defaultTabHeader let-tabs="tabsX">
      <ul class="tab-panel-buttons" *ngIf="tabs">
        <li
          [ngClass]="{selected: tab.selected}"
          (click)="selectTab(tab)"
          *ngFor="let tab of tabs;">{{tab.title}}
        </li>
      </ul>
    </ng-template>
    
    <ng-content *ngTemplateOutlet="defaultTabHeader; context: tabsContext"></ng-content>
    
    <ng-content></ng-content>
    import {AfterContentInit, Component, ContentChildren, OnInit, QueryList} from '@angular/core';
    import {AuTabComponent} from '../au-tab/au-tab.component';
    
    @Component({
      selector: 'au-tab-panel',
      templateUrl: './au-tab-panel.component.html',
      styleUrls: ['../tab-panel.component.scss']
    })
    export class AuTabPanelComponent implements OnInit, AfterContentInit {
    
    
      @ContentChildren(AuTabComponent)
      tabs: QueryList<AuTabComponent>;
    
      constructor() { }
    
      ngOnInit() {
      }
    
      ngAfterContentInit(): void {
        const selectedTab = this.tabs.find(tab => tab.selected);
        if(!selectedTab && this.tabs.first) {
          this.tabs.first.selected = true;
        }
      }
    
      selectTab(tab: AuTabComponent) {
        this.tabs.forEach(t => t.selected = false);
        tab.selected = true;
      }
    
      get tabsContext() {
        return {
          tabsX: this.tabs
        };
      }
    
    }
  • 相关阅读:
    队列

    有序数组
    集合:一条规则决定性能
    基础数据结构:数组
    空间复杂度
    插入排序
    重新认识Javascript的一些误区总结
    Knockout: 使用knockout validation插件进行校验, 给未通过校验的输入框添加红色边框突出显示.
    Knockout: 使用CSS绑定和event的blur失去焦点事件, 给未通过校验的输入框添加红色边框突出显示.
  • 原文地址:https://www.cnblogs.com/Answer1215/p/7051990.html
Copyright © 2020-2023  润新知