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


TypeScript react-jhipster.Storage.session類代碼示例

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


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

示例1: expect

 await store.dispatch(login('user', 'user', true)).then(() => {
   expect(Storage.session.get(AUTH_TOKEN_KEY)).toBe(undefined);
   expect(Storage.local.get(AUTH_TOKEN_KEY)).toBe('TestToken');
   clearAuthToken();
   expect(Storage.session.get(AUTH_TOKEN_KEY)).toBe(undefined);
   expect(Storage.local.get(AUTH_TOKEN_KEY)).toBe(undefined);
 });
開發者ID:gjik911,項目名稱:git_01,代碼行數:7,代碼來源:authentication.spec.ts

示例2: default

export default (state: LocaleState = initialState, action): LocaleState => {
  switch (action.type) {
    case ACTION_TYPES.SET_LOCALE:
      const currentLocale = action.locale;
      if (state.currentLocale !== currentLocale) {
        Storage.session.set('locale', currentLocale);
        TranslatorContext.setLocale(currentLocale);
      }
      return {
        currentLocale,
        isShowImWindows: state.isShowImWindows
      };
    case ACTION_TYPES.SET_IS_SHOW_IM_WINDOWS:
      const isShowImWindows = action.isShowImWindows;
      if (state.currentLocale !== currentLocale) {
        Storage.session.set('isShowImWindows', isShowImWindows);
      }
      return {
        currentLocale: state.currentLocale,
        isShowImWindows
      };
    default:
      return state;
  }
};
開發者ID:gjik911,項目名稱:git_01,代碼行數:25,代碼來源:locale.ts

示例3:

export const clearAuthToken = () => {
  if (Storage.local.get(AUTH_TOKEN_KEY)) {
    Storage.local.remove(AUTH_TOKEN_KEY);
  }
  if (Storage.session.get(AUTH_TOKEN_KEY)) {
    Storage.session.remove(AUTH_TOKEN_KEY);
  }
};
開發者ID:gjik911,項目名稱:git_01,代碼行數:8,代碼來源:authentication.ts

示例4: async

export const saveAccountSettings = account => async (dispatch, getState) => {
  await dispatch({
    type: ACTION_TYPES.UPDATE_ACCOUNT,
    payload: axios.post(apiUrl, account),
    meta: {
      successMessage: translate('settings.messages.success')
    }
  });

  if (Storage.session.get(`locale`)) {
    Storage.session.remove(`locale`);
  }

  await dispatch(getSession());
};
開發者ID:gjik911,項目名稱:git_01,代碼行數:15,代碼來源:settings.reducer.ts

示例5:

 const onRequestSuccess = config => {
   const token = Storage.local.get('jhi-authenticationToken') || Storage.session.get('jhi-authenticationToken');
   if (token) {
     config.headers.Authorization = `Bearer ${token}`;
   }
   config.timeout = TIMEOUT;
   config.url = `${getBasePath().replace(/\/$/, '')}${config.url}`;
   return config;
 };
開發者ID:gzsombor,項目名稱:generator-jhipster,代碼行數:9,代碼來源:axios-interceptor.ts

示例6:

 const onRequestSuccess = config => {
   const token = Storage.local.get('jhi-authenticationToken') || Storage.session.get('jhi-authenticationToken');
   if (token) {
     config.headers.Authorization = `Bearer ${token}`;
   }
   config.timeout = TIMEOUT;
   config.url = `${SERVER_API_URL}${config.url}`;
   return config;
 };
開發者ID:gjik911,項目名稱:git_01,代碼行數:9,代碼來源:axios-interceptor.ts

示例7: async

export const getSession = () => async (dispatch, getState) => {
  await dispatch({
    type: ACTION_TYPES.GET_SESSION,
    payload: axios.get('api/account')
  });

  const { account } = getState().authentication;
  if (account && account.langKey) {
    const langKey = Storage.session.get('locale', account.langKey);
    await dispatch(setLocale(langKey));
  }
};
開發者ID:gjik911,項目名稱:git_01,代碼行數:12,代碼來源:authentication.ts

示例8: default

export default (state: LocaleState = initialState, action): LocaleState => {
  switch (action.type) {
    case ACTION_TYPES.SET_LOCALE:
      const currentLocale = action.locale;
      if (state.currentLocale !== currentLocale) {
        Storage.session.set('locale', currentLocale);
        TranslatorContext.setLocale(currentLocale);
      }
      return {
        currentLocale
      };
    default:
      return state;
  }
};
開發者ID:gjik911,項目名稱:git_01,代碼行數:15,代碼來源:locale.ts

示例9:

export const registerLocale = store => {
  store.dispatch(setLocale(Storage.session.get('locale', 'zh-cn')));
};
開發者ID:gjik911,項目名稱:git_01,代碼行數:3,代碼來源:translation.ts


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