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


TypeScript map.call方法代码示例

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


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

示例1: forEach

export function waitForMap<A, B>(
    obj: {[k: string]: A}, fn: (k: string, a: A) => Observable<B>): Observable<{[k: string]: B}> {
  const waitFor: Observable<B>[] = [];
  const res: {[k: string]: B} = {};

  forEach(obj, (a: A, k: string) => {
    if (k === PRIMARY_OUTLET) {
      waitFor.push(map.call(fn(k, a), (_: B) => {
        res[k] = _;
        return _;
      }));
    }
  });

  forEach(obj, (a: A, k: string) => {
    if (k !== PRIMARY_OUTLET) {
      waitFor.push(map.call(fn(k, a), (_: B) => {
        res[k] = _;
        return _;
      }));
    }
  });

  if (waitFor.length > 0) {
    const concatted$ = concatAll.call(of (...waitFor));
    const last$ = l.last.call(concatted$);
    return map.call(last$, () => res);
  } else {
    return of (res);
  }
}
开发者ID:JanStureNielsen,项目名称:angular,代码行数:31,代码来源:collection.ts

示例2: listenForStoreChanges

export function listenForStoreChanges(router: Router, store: Store<any>) {
  const storeAndRouter$ = withLatestFrom.call(selectRouter(store), getLatestUrl(router));
  const mismatch$ = filter.call(storeAndRouter$, ([ rs, url ]) => rs.path !== url);
  const newPath$ = map.call(mismatch$, ([ rs ]) => rs.path);

  newPath$.subscribe(url => router.navigateByUrl(url));
}
开发者ID:ngrx,项目名称:router-store,代码行数:7,代码来源:connect.ts

示例3: forEach

 forEach(obj, (a: A, k: string) => {
   const mapped = map.call(fn(k, a), (r: B) => res[k] = r);
   if (k === PRIMARY_OUTLET) {
     waitHead.push(mapped);
   } else {
     waitTail.push(mapped);
   }
 });
开发者ID:diestrin,项目名称:angular,代码行数:8,代码来源:collection.ts

示例4: connectRouterActions

export function connectRouterActions(router: Router, store: Store<any>) {
  const routerAndStore$ = withLatestFrom.call(getLatestUrl(router), selectRouter(store));
  const mismatchUrl$ = filter.call(routerAndStore$, ([ url, rs ]) => (rs && rs.path !== url || !rs));
  const updateLocation$ = map.call(mismatchUrl$, ([ path ]) => {
    return { type: routerActions.UPDATE_LOCATION, payload: { path }};
  });

  updateLocation$.subscribe(store);
}
开发者ID:ngrx,项目名称:router-store,代码行数:9,代码来源:connect.ts

示例5: verifyOutput

      (source$: GroupedObservable<any, any>) =>
        dematerialize.call(
          map.call(
            exhaustMap.call(source$, resolveEffectSource),
            (output: EffectNotification) => {
              verifyOutput(output, this.errorReporter);

              return output.notification;
            }
          )
        )
开发者ID:rjokelai,项目名称:platform,代码行数:11,代码来源:effect_sources.ts

示例6: verifyOutput

      (source$: GroupedObservable<any, any>) =>
        dematerialize.call(
          filter.call(
            map.call(
              exhaustMap.call(source$, resolveEffectSource),
              (output: EffectNotification) => {
                verifyOutput(output, this.errorHandler);

                return output.notification;
              }
            ),
            (notification: Notification<any>) => notification.kind === 'N'
          )
        )
开发者ID:WinGood,项目名称:platform,代码行数:14,代码来源:effect_sources.ts

示例7: if

export function select<T, R>(pathOrMapFn: any, ...paths: string[]): Observable<R> {
  let mapped$: Observable<R>;

  if (typeof pathOrMapFn === 'string') {
    mapped$ = pluck.call(this, pathOrMapFn, ...paths);
  }
  else if (typeof pathOrMapFn === 'function') {
    mapped$ = map.call(this, pathOrMapFn);
  }
  else {
    throw new TypeError(`Unexpected type ${ typeof pathOrMapFn } in select operator,`
      + ` expected 'string' or 'function'`);
  }

  return distinctUntilChanged.call(mapped$);
}
开发者ID:MikeRyan52,项目名称:core,代码行数:16,代码来源:select.ts

示例8: selectOperator

  return function selectOperator(source$: Store<T>): Store<K> {
    let mapped$: Store<any>;

    if (typeof pathOrMapFn === 'string') {
      mapped$ = pluck.call(source$, pathOrMapFn, ...paths);
    } else if (typeof pathOrMapFn === 'function') {
      mapped$ = map.call(source$, pathOrMapFn);
    } else {
      throw new TypeError(
        `Unexpected type '${typeof pathOrMapFn}' in select operator,` +
          ` expected 'string' or 'function'`
      );
    }

    return distinctUntilChanged.call(mapped$);
  };
开发者ID:WinGood,项目名称:platform,代码行数:16,代码来源:store.ts

示例9: load

  load(parentInjector: Injector, route: Route): Observable<LoadedRouterConfig> {
    if (this.onLoadStartListener) {
      this.onLoadStartListener(route);
    }

    const moduleFactory$ = this.loadModuleFactory(route.loadChildren !);

    return map.call(moduleFactory$, (factory: NgModuleFactory<any>) => {
      if (this.onLoadEndListener) {
        this.onLoadEndListener(route);
      }

      const module = factory.create(parentInjector);

      return new LoadedRouterConfig(flatten(module.injector.get(ROUTES)), module);
    });
  }
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:17,代码来源:router_config_loader.ts


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