当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript QueryList.find方法代码示例

本文整理汇总了TypeScript中@angular/core.QueryList.find方法的典型用法代码示例。如果您正苦于以下问题:TypeScript QueryList.find方法的具体用法?TypeScript QueryList.find怎么用?TypeScript QueryList.find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/core.QueryList的用法示例。


在下文中一共展示了QueryList.find方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: highlightItem

    private highlightItem(item:CalendarItem | undefined):void {
        if (item) {
            this._renderedItems.forEach(i => i.hasFocus = false);
            const rendered = this._renderedItems.find(ri => ri.item === item);
            if (rendered && !rendered.hasFocus) {
                rendered.hasFocus = true;
                rendered.changeDetector.detectChanges();
            }

            this._highlightedItem = item;
        }
    }
开发者ID:edcarroll,项目名称:ng2-semantic-ui,代码行数:12,代码来源:calendar-view.ts

示例2: highlightMostWinningTeam

  private highlightMostWinningTeam() {
    var highlightIndex = 0;
    var currentIndex = 0;
    var highestWinValue = 0;
    
    this.winCells.forEach(wc => {
      wc.nativeElement.parentNode.style.backgroundColor = '';
      wc.nativeElement.parentNode.style.color = '';

      var currentWins = Number(wc.nativeElement.innerText);
      
      if(currentWins > highestWinValue)
      {
        highlightIndex = currentIndex;
        highestWinValue = currentWins;
      }

      currentIndex++;
    });

    this.winCells.find((item, index) => index == highlightIndex).nativeElement.parentNode.style.backgroundColor = 'red';
    this.winCells.find((item, index) => index == highlightIndex).nativeElement.parentNode.style.color = 'white';
  }
开发者ID:vaibahv88sharma,项目名称:GitCodes,代码行数:23,代码来源:team-list.component.ts

示例3: Error

            .forEach(tH => {
                const content = this._tabContents.find(tC => tC.id === tH.id);

                if (!content) {
                    // Error if an associated tab content cannot be found for the given header.
                    throw new Error("A [suiTabHeader] must have a related [suiTabContent].");
                }

                // Create a new tab instance for this header & content combo.
                const tab = new Tab(tH, content);

                // Subscribe to any external changes in the tab header's active state. External changes are triggered by user input.
                tab.header.isActiveExternalChange.subscribe(() => this.onHeaderActiveChanged(tab));

                // Add the new instance to the list of tabs.
                this.tabs.push(tab);
            });
开发者ID:edcarroll,项目名称:ng2-semantic-ui,代码行数:17,代码来源:tabset.ts

示例4: ngAfterViewInit

 /**
  * After view init
  */
 ngAfterViewInit(): void
 {
     this._chatViewScrollbar = this._fusePerfectScrollbarDirectives.find((directive) => {
         return directive.elementRef.nativeElement.id === 'messages';
     });
 }
开发者ID:karthik12ui,项目名称:fuse-angular-full,代码行数:9,代码来源:chat-panel.component.ts

示例5: getEditableTab

 getEditableTab(): TabNewComponent {
   return this.tabs.find((tab: TabNewComponent) => tab.editMode);
 }
开发者ID:VS-work,项目名称:gapminder-offline,代码行数:3,代码来源:tabs.component.ts

示例6:

this.tabs = this.tabs.filter(t => !!this._tabHeaders.find(tH => tH === t.header));
开发者ID:edcarroll,项目名称:ng2-semantic-ui,代码行数:1,代码来源:tabset.ts

示例7: ngAfterViewInit

 /**
  * After view init
  */
 ngAfterViewInit(): void
 {
     this.courseStepContent = this.fuseScrollbarDirectives.find((fuseScrollbarDirective) => {
         return fuseScrollbarDirective.elementRef.nativeElement.id === 'course-step-content';
     });
 }
开发者ID:karthik12ui,项目名称:fuse-angular-full,代码行数:9,代码来源:course.component.ts


注:本文中的@angular/core.QueryList.find方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。