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


TypeScript app.openNotification函數代碼示例

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


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

示例1: test

  test('allow new notification to overwrite overwritable notifications', () => {
    let state = appInitialState;

    // Any incoming notification should overwrite an overwritable notification
    state = reducer(
      state,
      openNotification('New notification', {
        overwritable: true,
      }),
    );
    state = reducer(state, openNotification('Second notification'));

    expect(state.notifications).toHaveLength(1);
    expect(state.notifications[0]).toMatchObject({ message: 'Second notification' });

    // Overwritable notifications are discarded if there's already another, non-overwritable
    // notification in the queue
    state = reducer(
      state,
      openNotification('Third notification', {
        overwritable: true,
      }),
    );
    expect(state.notifications).toHaveLength(1);

    // Non-overwritable notifications queue up normally
    state = reducer(state, openNotification('Fourth notification'));
    expect(state.notifications).toHaveLength(2);
    expect(state.notifications[1]).toMatchObject({
      message: 'Fourth notification',
    });
  });
開發者ID:nusmodifications,項目名稱:nusmods,代碼行數:32,代碼來源:app.test.ts

示例2: dispatch

    dispatch(fetchModule(moduleCode)).then(() => {
      const module: Module = getState().moduleBank.modules[moduleCode];

      if (!module) {
        dispatch(
          openNotification(`Cannot load ${moduleCode}`, {
            action: {
              text: 'Retry',
              handler: () => dispatch(addModule(semester, moduleCode)),
            },
          }),
        );

        return;
      }

      const lessons = getModuleTimetable(module, semester);
      const moduleLessonConfig = randomModuleLessonConfig(lessons);

      dispatch({
        type: ADD_MODULE,
        payload: {
          semester,
          moduleCode,
          moduleLessonConfig,
        },
      });
    });
開發者ID:nusmodifications,項目名稱:nusmods,代碼行數:28,代碼來源:timetables.ts


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