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


TypeScript take.call方法代碼示例

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


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

示例1: FirebaseListFactory

        .then(() => {

          let query1 = FirebaseListFactory(`questions`, {
            query: {
              orderByChild: 'data',
              endAt: { value: 0 }
            }
          });
          query1 = take.call(query1, 1);
          query1 = toPromise.call(query1);

          let query2 = FirebaseListFactory(`questions`, {
            query: {
              orderByChild: 'data',
              endAt: { value: 0, key: 'val2' }
            }
          });
          query2 = take.call(query2, 1);
          query2 = toPromise.call(query2);

          Promise.all([query1, query2]).then(([list1, list2]) => {
            expect(list1.map(i => i.$key)).toEqual(['val1', 'val2', 'val3']);
            expect(list2.map(i => i.$key)).toEqual(['val1', 'val2']);
            done();
          });
        })
開發者ID:julienevano,項目名稱:angularfire2,代碼行數:26,代碼來源:firebase_list_factory.spec.ts

示例2:

 const initializer = () => {
   const app = injector.get<ApplicationRef>(ApplicationRef);
   if (!('serviceWorker' in navigator)) {
     return;
   }
   const onStable =
       op_filter.call(app.isStable, (stable: boolean) => !!stable) as Observable<boolean>;
   const isStable = op_take.call(onStable, 1) as Observable<boolean>;
   const whenStable = op_toPromise.call(isStable) as Promise<boolean>;
   return whenStable.then(() => navigator.serviceWorker.register(script, options))
       .then(() => undefined) as Promise<void>;
 };
開發者ID:cartant,項目名稱:angular,代碼行數:12,代碼來源:module.ts

示例3:

  const initializer = () => {
    const app = injector.get<ApplicationRef>(ApplicationRef);
    if (!('serviceWorker' in navigator)) {
      return;
    }
    const onStable =
        op_filter.call(app.isStable, (stable: boolean) => !!stable) as Observable<boolean>;
    const isStable = op_take.call(onStable, 1) as Observable<boolean>;
    const whenStable = op_toPromise.call(isStable) as Promise<boolean>;

    // Don't return the Promise, as that will block the application until the SW is registered, and
    // cause a crash if the SW registration fails.
    whenStable.then(() => navigator.serviceWorker.register(script, options));
  };
開發者ID:AnthonyPAlicea,項目名稱:angular,代碼行數:14,代碼來源:module.ts

示例4: FirebaseListFactory

        .then(() => {

          let query1 = FirebaseListFactory(app.database().ref(`questions`), {
            query: {
              orderByChild: 'data',
              equalTo: { value: 0 }
            }
          });
          let promise1 = toPromise.call(take.call(query1, 1));

          let query2 = FirebaseListFactory(app.database().ref(`questions`), {
            query: {
              orderByChild: 'data',
              equalTo: { value: 0, key: 'val2' }
            }
          });
          let promise2 = toPromise.call(take.call(query2, 1));

          Promise.all([promise1, promise2]).then(([list1, list2]) => {
            expect(list1.map(i => i.$key)).toEqual(['val1', 'val2', 'val3']);
            expect(list2.map(i => i.$key)).toEqual(['val2']);
            done();
          });
        })
開發者ID:mhartington,項目名稱:angularfire2,代碼行數:24,代碼來源:firebase_list_factory.spec.ts

示例5: it

    it('should re-emit identical instances of unchanged children as snapshots', (done: any) => {

      let prev;

      take.call(questionsSnapshotted, 2).subscribe(
        (list) => {
          if (prev) {
            expect(list[0]).toBe(prev[0]);
            done();
          } else {
            prev = list;
            questionsSnapshotted.push({ name: 'bob' });
          }
        },
        done.fail
      );
      questionsSnapshotted.push({ name: 'alice' });
    });
開發者ID:mhartington,項目名稱:angularfire2,代碼行數:18,代碼來源:firebase_list_factory.spec.ts

示例6:

  const initializer = () => {
    const app = injector.get<ApplicationRef>(ApplicationRef);
    if (!(isPlatformBrowser(platformId) && ('serviceWorker' in navigator) &&
          options.enabled !== false)) {
      return;
    }
    const onStable =
        op_filter.call(app.isStable, (stable: boolean) => !!stable) as Observable<boolean>;
    const isStable = op_take.call(onStable, 1) as Observable<boolean>;
    const whenStable = op_toPromise.call(isStable) as Promise<boolean>;

    // Wait for service worker controller changes, and fire an INITIALIZE action when a new SW
    // becomes active. This allows the SW to initialize itself even if there is no application
    // traffic.
    navigator.serviceWorker.addEventListener('controllerchange', () => {
      if (navigator.serviceWorker.controller !== null) {
        navigator.serviceWorker.controller.postMessage({action: 'INITIALIZE'});
      }
    });

    // Don't return the Promise, as that will block the application until the SW is registered, and
    // cause a crash if the SW registration fails.
    whenStable.then(() => navigator.serviceWorker.register(script, {scope: options.scope}));
  };
開發者ID:asself,項目名稱:angular,代碼行數:24,代碼來源:module.ts

示例7:

function skipAndTake<T>(obs: Observable<T>, takeCount: number = 1, skipCount: number = 0) {
  return take.call(skip.call(obs, skipCount), takeCount);
}
開發者ID:mhartington,項目名稱:angularfire2,代碼行數:3,代碼來源:firebase_list_factory.spec.ts

示例8:

function obsToSinglePromise<T>(obs: Observable<T>): Promise<T> {
  const takeOne = take.call(obs, 1);
  return toPromise.call(takeOne);
}
開發者ID:asself,項目名稱:angular,代碼行數:4,代碼來源:integration_spec.ts


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