當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript theme.NbUserComponent類代碼示例

本文整理匯總了TypeScript中@nebular/theme.NbUserComponent的典型用法代碼示例。如果您正苦於以下問題:TypeScript NbUserComponent類的具體用法?TypeScript NbUserComponent怎麽用?TypeScript NbUserComponent使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了NbUserComponent類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: describe

describe('NbUserComponent', () => {
  let fixture: ComponentFixture<NbUserComponent>;
  let userComponent: NbUserComponent;
  let userElement: HTMLElement;

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [ NbUserModule ],
      providers: [ NbLayoutDirectionService ],
    });

    fixture = TestBed.createComponent(NbUserComponent);
    userComponent = fixture.componentInstance;
    userElement = fixture.nativeElement;
    fixture.detectChanges();
  });

  it('should render name if set', () => {
    const name = 'SomeName';
    userComponent.name = name;
    fixture.detectChanges();

    const nameElement = userElement.querySelector(NAME_SELECTOR);
    expect(nameElement).not.toEqual(null);
    expect(nameElement.textContent).toEqual(name);
  });

  it('should not render name if showName set to false', () => {
    const name = 'SomeName';
    userComponent.name = name;
    userComponent.showName = false;
    fixture.detectChanges();

    const nameElement = userElement.querySelector(NAME_SELECTOR);
    expect(nameElement).toEqual(null);
  });

  it('should not render name if set to empty string', () => {
    userComponent.name = '';
    fixture.detectChanges();

    const nameElement = userElement.querySelector(NAME_SELECTOR);
    expect(nameElement).toEqual(null);
  });

  it('should render title if set', () => {
    const title = 'SomeTitle';
    userComponent.title = title;
    fixture.detectChanges();

    const titleElement = userElement.querySelector(TITLE_SELECTOR);
    expect(titleElement).not.toEqual(null);
    expect(titleElement.textContent).toEqual(title);
  });

  it('should not render title if showTitle set to false', () => {
    const title = 'SomeName';
    userComponent.title = title;
    userComponent.showTitle = false;
    fixture.detectChanges();

    const titleElement = userElement.querySelector(TITLE_SELECTOR);
    expect(titleElement).toEqual(null);
  });

  it('should not render title if set to empty string', () => {
    const title = '';
    userComponent.title = title;
    fixture.detectChanges();

    const titleElement = userElement.querySelector(TITLE_SELECTOR);
    expect(titleElement).toEqual(null);
  });

  it(`should show initials if picture isn't set`, () => {
    const name = 'Name Name';
    userComponent.name = name;
    fixture.detectChanges();

    const initialsElement = userElement.querySelector(INITIALS_SELECTOR);
    expect(initialsElement.textContent.trim()).toEqual('NN');
  });

  it(`should not show initials if picture is set`, () => {
    userComponent.name = 'Name';
    userComponent.title = 'Title';
    userComponent.picture = '/';
    fixture.detectChanges();

    expect(userElement.querySelector(INITIALS_SELECTOR)).toEqual(null);
  });

  it('should set color of initials if set color property is set', () => {
    const color = 'red';
    userComponent.color = color;
    fixture.detectChanges();

    const initialsStyle = (userElement.querySelector(INITIALS_SELECTOR) as HTMLElement).style;
    expect(initialsStyle.backgroundColor).toEqual(color);
  });
//.........這裏部分代碼省略.........
開發者ID:kevinheader,項目名稱:nebular,代碼行數:101,代碼來源:user.spec.ts

示例2: it

    it(`should return two letters for two first words letters if name set to more then two words`, () => {
      userComponent.name = 'Name Name Name';
      expect(userComponent.getInitials()).toEqual('NN');

      userComponent.name = 'Name Name Name Name Name Name Name Name Name';
      expect(userComponent.getInitials()).toEqual('NN');
    });
開發者ID:kevinheader,項目名稱:nebular,代碼行數:7,代碼來源:user.spec.ts


注:本文中的@nebular/theme.NbUserComponent類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。