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


TypeScript ConfigService.getSettings方法代码示例

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


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

示例1: Init

          t.inject([LanguageEffects, ConfigService], (effects: LanguageEffects, config: ConfigService) => {
            const defaultLanguage = config.getSettings('i18n.defaultLanguage');

            const action = new Init(config.getSettings('i18n'));
            const completion = new UseLanguageSuccess(defaultLanguage);

            const actions$ = TestBed.get(Actions);
            actions$.stream = hot('-a', {a: action});
            const expected = cold('-c', {c: completion});

            (t.e(effects.init$) as any).toBeObservable(expected);
          }));
开发者ID:John123Yu,项目名称:universal-1,代码行数:12,代码来源:language.effects.spec.ts

示例2: getWorkingLanguage

          t.inject([ConfigService], (config: ConfigService) => {
            const defaultLanguage = config.getSettings('i18n.defaultLanguage');
            const res = getWorkingLanguage(defaultLanguage);

            t.e(res)
              .toBe(defaultLanguage);
          }));
开发者ID:John123Yu,项目名称:universal-1,代码行数:7,代码来源:language.reducer.spec.ts

示例3: UseLanguageSuccess

            t.inject([ConfigService], (config: ConfigService) => {
              const defaultLanguage = config.getSettings('i18n.defaultLanguage');
              const action = new UseLanguageSuccess(defaultLanguage);
              const res = reducer(defaultLanguage, action);

              t.e(res)
                .toEqual(defaultLanguage);
            }));
开发者ID:John123Yu,项目名称:universal-1,代码行数:8,代码来源:language.reducer.spec.ts

示例4:

        t.inject([ConfigService, I18NService], (config: ConfigService, i18n: I18NService) => {
          i18n.init(config.getSettings('i18n'));

          t.e(i18n.availableLanguages.length)
            .toBe(1);
          t.e(i18n.availableLanguages[0].code)
            .toBe('en');
        }));
开发者ID:John123Yu,项目名称:universal-1,代码行数:8,代码来源:i18n.service.spec.ts

示例5: UseLanguage

              .subscribe(() => {
                const defaultLanguage = config.getSettings('i18n.defaultLanguage');

                const action = new UseLanguage(defaultLanguage.code);
                const completion = new UseLanguageSuccess(defaultLanguage);

                const actions$ = TestBed.get(Actions);
                actions$.stream = hot('-a', {a: action});
                const expected = cold('-c', {c: completion});

                (t.e(effects.useLanguage$) as any).toBeObservable(expected);
              });
开发者ID:John123Yu,项目名称:universal-1,代码行数:12,代码来源:language.effects.spec.ts

示例6: ngOnInit

 ngOnInit(): void {
   this.title = 'APP_NAME';
   this.currentLanguage$ = this.store.pipe(select(getWorkingLanguage));
   this.availableLanguages = this.config.getSettings('i18n.availableLanguages');
   this.isAuthenticated = this.auth.isAuthenticated;
 }
开发者ID:John123Yu,项目名称:universal-1,代码行数:6,代码来源:header.component.ts

示例7: ngOnInit

 ngOnInit(): void {
   this.i18nStore.dispatch(new Init(this.config.getSettings('i18n')));
 }
开发者ID:John123Yu,项目名称:universal-1,代码行数:3,代码来源:app.component.ts


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