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


TypeScript ModalModule.forRoot方法代碼示例

本文整理匯總了TypeScript中ngx-bootstrap/modal.ModalModule.forRoot方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ModalModule.forRoot方法的具體用法?TypeScript ModalModule.forRoot怎麽用?TypeScript ModalModule.forRoot使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ngx-bootstrap/modal.ModalModule的用法示例。


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

示例1: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       SyndesisCommonModule.forRoot(),
       ChartsModule,
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       BsDropdownModule.forRoot(),
       StoreModule,
       RouterTestingModule.withRoutes([]),
       RestangularModule.forRoot(),
       NotificationModule,
       IntegrationsListModule
     ],
     declarations: [
       DashboardComponent,
       EmptyStateComponent,
       DashboardConnectionsComponent,
       DashboardIntegrationsComponent
     ],
     providers: [
       MockBackend,
       { provide: RequestOptions, useClass: BaseRequestOptions },
       {
         provide: Http,
         useFactory: (backend, options) => {
           return new Http(backend, options);
         },
         deps: [MockBackend, RequestOptions]
       },
       TourService
     ]
   }).compileComponents();
 })
開發者ID:hawtio,項目名稱:hawtio-ipaas,代碼行數:34,代碼來源:dashboard.component.spec.ts

示例2: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       SyndesisCommonModule.forRoot(),
       StoreModule,
       RouterTestingModule.withRoutes([]),
       RestangularModule.forRoot(),
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       TabsModule.forRoot(),
       NotificationModule,
       PatternflyUIModule,
       IntegrationsListModule
     ],
     declarations: [IntegrationsListPage],
     providers: [
       MockBackend,
       { provide: RequestOptions, useClass: BaseRequestOptions },
       {
         provide: Http,
         useFactory: (backend, options) => {
           return new Http(backend, options);
         },
         deps: [MockBackend, RequestOptions]
       }
     ]
   }).compileComponents();
 })
開發者ID:hawtio,項目名稱:hawtio-ipaas,代碼行數:28,代碼來源:list-page.component.spec.ts

示例3: describe

describe('ModalComponent', () => {
  let component: ModalComponent;
  let fixture: ComponentFixture<ModalComponent>;

  configureTestBed({
    imports: [ModalModule.forRoot()],
    declarations: [ModalComponent]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(ModalComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });

  it('should call the hide callback function', () => {
    spyOn(component.hide, 'emit');
    const nativeElement = fixture.nativeElement;
    const button = nativeElement.querySelector('button');
    button.dispatchEvent(new Event('click'));
    fixture.detectChanges();
    expect(component.hide.emit).toHaveBeenCalled();
  });

  it('should hide the modal', () => {
    component.modalRef = new BsModalRef();
    spyOn(component.modalRef, 'hide');
    component.close();
    expect(component.modalRef.hide).toHaveBeenCalled();
  });
});
開發者ID:C2python,項目名稱:ceph,代碼行數:35,代碼來源:modal.component.spec.ts

示例4: async

 async(() => {
   const moduleConfig = {
     imports: [
       ApiModule.forRoot(),
       PlatformModule.forRoot(),
       CoreModule.forRoot(),
       SyndesisCommonModule.forRoot(),
       ActionModule,
       ListModule,
       ChartModule,
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       BsDropdownModule.forRoot(),
       RouterTestingModule.withRoutes([]),
       NotificationModule,
       IntegrationListModule,
       SyndesisStoreModule
     ],
     declarations: [
       DashboardMetricsComponent,
       DashboardComponent,
       DashboardConnectionsComponent,
       DashboardIntegrationsComponent
     ],
     providers: [
       ConfigService,
       ModalService,
     ]
   };
   TestBed.configureTestingModule(moduleConfig).compileComponents();
 })
開發者ID:gnodet,項目名稱:syndesis,代碼行數:31,代碼來源:dashboard.component.spec.ts

示例5: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       CoreModule.forRoot(),
       ApiModule.forRoot(),
       CommonModule,
       FormsModule,
       RouterTestingModule.withRoutes([]),
       ConnectionsModule,
       ModalModule.forRoot(),
       TabsModule.forRoot(),
       PopoverModule.forRoot(),
       CollapseModule.forRoot(),
       SyndesisCommonModule.forRoot(),
       IntegrationSupportModule,
       CollapseModule
     ],
     declarations: [FlowViewComponent, FlowViewStepComponent],
     providers: [
       CurrentFlowService,
       FlowPageService,
       IntegrationStore,
       IntegrationService,
       EventsService,
       StepStore
     ]
   }).compileComponents();
 })
開發者ID:gnodet,項目名稱:syndesis,代碼行數:28,代碼來源:flow-view.component.spec.ts

示例6: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       CommonModule,
       SyndesisCommonModule.forRoot(),
       RouterTestingModule.withRoutes([]),
       ModalModule.forRoot(),
       BsDropdownModule.forRoot(),
       StoreModule,
       NotificationModule
     ],
     declarations: [ConnectionsListComponent]
   }).compileComponents();
 })
開發者ID:hawtio,項目名稱:hawtio-ipaas,代碼行數:14,代碼來源:list.component.spec.ts

示例7: describe

describe('OsdPgScrubModalComponent', () => {
  let component: OsdPgScrubModalComponent;
  let fixture: ComponentFixture<OsdPgScrubModalComponent>;
  let configurationService: ConfigurationService;

  configureTestBed({
    imports: [
      HttpClientTestingModule,
      ModalModule.forRoot(),
      ReactiveFormsModule,
      RouterTestingModule,
      SharedModule,
      ToastModule.forRoot()
    ],
    declarations: [OsdPgScrubModalComponent],
    providers: [BsModalRef, i18nProviders]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(OsdPgScrubModalComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
    configurationService = TestBed.get(ConfigurationService);
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });

  describe('submitAction', () => {
    let notificationService: NotificationService;

    beforeEach(() => {
      spyOn(TestBed.get(Router), 'navigate').and.stub();
      notificationService = TestBed.get(NotificationService);
      spyOn(notificationService, 'show');
    });

    it('test create success notification', () => {
      spyOn(configurationService, 'bulkCreate').and.returnValue(observableOf([]));
      component.submitAction();
      expect(notificationService.show).toHaveBeenCalledWith(
        NotificationType.success,
        'Updated PG scrub options'
      );
    });
  });
});
開發者ID:,項目名稱:,代碼行數:48,代碼來源:

示例8: beforeEach

 beforeEach(async(() => {
     spyOn(mocks.authService, "login").and.returnValue(Promise.resolve());
     spyOn(mocks.notificationService, "info");
     spyOn(mocks.notificationService, "error");
     TestBed.configureTestingModule({
         declarations: [LoginComponent],
         providers: [
             { provide: AuthService, useValue: mocks.authService },
             { provide: NotificationService, useValue: mocks.notificationService },
         ],
         schemas: [CUSTOM_ELEMENTS_SCHEMA],
         imports: [RouterTestingModule, TranslateModule.forRoot(), ModalModule.forRoot(), FormsModule]
     });
     fixture = TestBed.createComponent(LoginComponent);
     component = fixture.componentInstance;
 }));
開發者ID:vfcosta,項目名稱:angular-theme,代碼行數:16,代碼來源:login.component.spec.ts

示例9: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       SyndesisCommonModule.forRoot(),
       SyndesisStoreModule,
       RouterTestingModule.withRoutes([]),
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       TabsModule.forRoot(),
       NotificationModule,
       PatternflyUIModule,
       IntegrationListModule
     ],
     declarations: [IntegrationListPage]
   }).compileComponents();
 })
開發者ID:gnodet,項目名稱:syndesis,代碼行數:16,代碼來源:list-page.component.spec.ts

示例10: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       CommonModule,
       SyndesisCommonModule.forRoot(),
       RouterTestingModule.withRoutes([]),
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       BsDropdownModule.forRoot(),
       TabsModule.forRoot(),
       SyndesisStoreModule,
       ActionModule,
       ListModule,
       NotificationModule
     ],
     declarations: [IntegrationStatusComponent, IntegrationListComponent]
   }).compileComponents();
 })
開發者ID:gnodet,項目名稱:syndesis,代碼行數:18,代碼來源:list.component.spec.ts


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