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


TypeScript ngx-bootstrap.ModalModule類代碼示例

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


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

示例1: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       LogoComponent,
       NavigationSearchComponent,
       StreamStatusComponent,
       AppTypeComponent,
       TaskStatusComponent,
       RolesDirective
     ],
     imports: [
       CommonModule,
       FormsModule,
       ReactiveFormsModule,
       BrowserModule,
       RouterTestingModule.withRoutes([]),
       BrowserAnimationsModule,
       SharedModule,
       BsDropdownModule.forRoot(),
       ModalModule.forRoot()
     ],
     providers: [
       { provide: SharedAboutService, useValue: aboutService },
       { provide: AppsService, useValue: appsService },
       { provide: StreamsService, useValue: streamsService },
       { provide: TasksService, useValue: tasksService },
       { provide: AuthService, useValue: authService }
     ]
   }).compileComponents();
 }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:30,代碼來源:search.component.spec.ts

示例2: beforeEach

 beforeEach(async(() => {
   activeRoute = new MockActivatedRoute();
   TestBed.configureTestingModule({
     declarations: [
       AppVersionsComponent,
       AppTypeComponent,
       AppVersionLabelComponent,
       SortComponent,
       OrderByPipe,
       RolesDirective,
       LoaderComponent
     ],
     imports: [
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       ReactiveFormsModule,
       FormsModule,
       RouterTestingModule.withRoutes([])
     ],
     providers: [
       { provide: AppsService, useValue: appsService },
       { provide: AuthService, useValue: authService },
       { provide: ConfirmService, useValue: confirmService },
       { provide: BsModalRef, useValue: bsModalRef },
       { provide: SharedAboutService, useValue: sharedAboutService },
       { provide: NotificationService, useValue: notificationService },
       { provide: LoggerService, useValue: loggerService }
     ]
   })
     .compileComponents();
 }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:31,代碼來源:app-versions.component.spec.ts

示例3: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       TaskDefinitionsDestroyComponent,
       StreamDslComponent,
       TruncatePipe,
       RolesDirective
     ],
     imports: [
       FormsModule,
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       ReactiveFormsModule,
       RouterTestingModule.withRoutes([])
     ],
     providers: [
       { provide: AuthService, useValue: authService },
       { provide: BsModalRef, useValue: bsModalRef },
       { provide: NotificationService, useValue: notificationService },
       { provide: TasksService, useValue: tasksService },
       { provide: LoggerService, useValue: loggerService },
       BlockerService
     ]
   }).compileComponents();
 }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:25,代碼來源:task-definitions-destroy.component.spec.ts

示例4: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     imports: [
       HttpModule,
       FormsModule,
       ReactiveFormsModule,
       ModalModule.forRoot(),
       ActionModule,
       CardModule,
       EmptyStateModule,
       FilterModule,
       ListModule,
       NotificationModule,
       SortModule,
       TableModule,
       WizardModule
     ],
     declarations: [ CreateViewsDialogComponent ],
     providers: [ AppSettingsService, BsModalRef, LoggerService, NotifierService,
       { provide: ConnectionService, useClass: MockConnectionService },
       { provide: DataserviceService, useClass: MockDataserviceService },
       { provide: VdbService, useClass: MockVdbService }
     ]
   })
     .compileComponents();
 }));
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:26,代碼來源:create-views-dialog.component.spec.ts

示例5: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       RuntimeAppsComponent,
       RuntimeAppStateComponent,
       LoaderComponent,
       PagerComponent,
       DATAFLOW_PAGE,
       DATAFLOW_LIST
     ],
     imports: [
       FormsModule,
       NgxPaginationModule,
       BsDropdownModule.forRoot(),
       TooltipModule.forRoot(),
       ModalModule.forRoot()
     ],
     providers: [
       { provide: SharedAboutService, useValue: sharedAboutService },
       { provide: RuntimeAppsService, useValue: runtimeAppsService },
       BsModalService,
       { provide: NotificationService, useValue: notificationService },
       GrafanaService
     ]
   })
     .compileComponents();
 }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:27,代碼來源:runtime-apps.component.spec.ts

示例6: beforeEach

  beforeEach(async(() => {
    activeRoute = new MockActivatedRoute();

    TestBed.configureTestingModule({
      declarations: [
        RolesDirective,
        TruncatePipe,
        LoaderComponent,
        TaskScheduleSummaryComponent,
        StreamDslComponent
      ],
      imports: [
        NgxPaginationModule,
        ModalModule.forRoot(),
        PopoverModule.forRoot(),
        BsDropdownModule.forRoot(),
        BsDatepickerModule.forRoot(),
        FormsModule,
        FloModule,
        ReactiveFormsModule,
        RouterTestingModule.withRoutes([])
      ],
      providers: [
        { provide: SharedAboutService, useValue: aboutService },
        { provide: AuthService, useValue: authService },
        { provide: ActivatedRoute, useValue: activeRoute },
        { provide: TasksService, useValue: tasksService },
        { provide: LoggerService, useValue: loggerService },
        { provide: NotificationService, useValue: notificationService }
      ]
    })
      .compileComponents();
  }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:33,代碼來源:task-schedule-summary.component.spec.ts

示例7: describe

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

  configureTestBed({
    imports: [
      SharedModule,
      BsDropdownModule.forRoot(),
      TabsModule.forRoot(),
      ModalModule.forRoot(),
      TooltipModule.forRoot(),
      ToastModule.forRoot(),
      AlertModule.forRoot(),
      ComponentsModule,
      RouterTestingModule,
      HttpClientTestingModule
    ],
    declarations: [RbdListComponent, RbdDetailsComponent, RbdSnapshotListComponent]
  });

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

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
開發者ID:noahdesu,項目名稱:ceph,代碼行數:30,代碼來源:rbd-list.component.spec.ts

示例8: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       StreamsDeployComponent,
       DeploymentPropertiesComponent,
       StreamDslComponent,
       TruncatePipe
     ],
     imports: [
       FormsModule,
       ModalModule.forRoot(),
       ReactiveFormsModule
     ],
     providers: [
       { provide: AuthService, useValue: authService },
       { provide: StreamsService, useValue: streamsService },
       { provide: BsModalRef, useValue: bsModalRef },
       { provide: SharedAboutService, useValue: sharedAboutService },
       { provide: NotificationService, useValue: notificationService },
       { provide: LoggerService, useValue: loggerService },
       BlockerService
     ]
   })
     .compileComponents();
 }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:25,代碼來源:streams-deploy.component.spec.ts

示例9: beforeEach

  beforeEach(() => {
    const configServiceStub = {
      getSettings: (...params) => APP_NAME
    };

    TestBed.configureTestingModule({
      imports: [
        CoreModule.forRoot(),
        SyndesisStoreModule,
        SyndesisCommonModule.forRoot(),
        ModalModule.forRoot(),
        RouterTestingModule.withRoutes([]),
        CollapseModule.forRoot(),
        BsDropdownModule.forRoot(),
        NotificationModule,
        NgRxStoreModule.forRoot(platformReducer),
      ],
      providers: [
        ERROR_HANDLER_PROVIDERS,
        ConfigService,
        UserService,
        TestSupportService,
        NavigationService,
        ApiHttpService,
        { provide: ConfigService, useValue: configServiceStub }
      ],
      declarations: [AppComponent]
    });
    TestBed.compileComponents();
  });
開發者ID:gnodet,項目名稱:syndesis,代碼行數:30,代碼來源:app.component.spec.ts

示例10: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       AppsAddComponent,
       DATAFLOW_PAGE,
       DATAFLOW_LIST,
       PagerComponent
     ],
     imports: [
       ModalModule.forRoot(),
       PopoverModule.forRoot(),
       ReactiveFormsModule,
       FormsModule,
       NgxPaginationModule,
       BsDropdownModule.forRoot(),
       TooltipModule.forRoot(),
       RouterTestingModule.withRoutes([])
     ],
     providers: [
       { provide: AppsService, useValue: appsService },
       { provide: RoutingStateService, useValue: routingStateService },
       { provide: BsModalRef, useValue: bsModalRef },
       { provide: NotificationService, useValue: notificationService }
     ]
   })
     .compileComponents();
 }));
開發者ID:BoykoAlex,項目名稱:spring-cloud-dataflow-ui,代碼行數:27,代碼來源:apps-add.component.spec.ts


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