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


TypeScript ramda.pathOr函數代碼示例

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


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

示例1: pathOr

export const getErrorStringOrDefault = (
  errors: Linode.ApiFieldError[] | AxiosError | string,
  defaultError: string = 'An unexpected error occurred.'
): string => {
  if (typeof errors === 'string') {
    return errors;
  }
  const apiErrors = pathOr(errors, ['response', 'data', 'errors'], errors);
  return pathOr<string>(defaultError, [0, 'reason'], apiErrors);
};
開發者ID:linode,項目名稱:manager,代碼行數:10,代碼來源:errorUtils.ts

示例2: pathOr

export const hasGrant = (state: any, grant: Linode.GlobalGrantTypes) => {
  return pathOr(
    false,
    ['__resources', 'profile', 'data', 'grants', 'global', grant],
    state
  );
};
開發者ID:linode,項目名稱:manager,代碼行數:7,代碼來源:permissionsHelpers.ts

示例3: getState

export const enableAutoEnroll: EnableAutoEnrollThunk = () => (dispatch, getState) => {
  const state = getState();
  const { backups } = state;
  const hasBackupsEnabled = pathOr(false,
    ['__resources', 'accountSettings', 'data', 'backups_enabled'], state);
  const shouldEnableBackups = Boolean(backups.autoEnroll);

  /** If the selected toggle setting matches the setting already on the user's account,
   * don't bother the API.
   */
  if (hasBackupsEnabled === shouldEnableBackups) { dispatch(enableAllBackups()); return; }

  dispatch(handleAutoEnroll());
  updateAccountSettings({ backups_enabled: shouldEnableBackups })
    .then((response) => {
      dispatch(handleAutoEnrollSuccess());
      dispatch(enableAllBackups());
      // Have to let the rest of the store know that the backups setting has been updated.
      dispatch(handleUpdate(response));
    })
    .catch((errors) => {
      const defaultError = "Your account settings could not be updated. Please try again.";
      const finalError = pathOr(defaultError, ['response', 'data', 'errors', 0, 'reason'], errors);
      dispatch(handleAutoEnrollError(finalError));
    });
}
開發者ID:displague,項目名稱:manager,代碼行數:26,代碼來源:index.ts

示例4:

export const unnest = (categories: Category[]): Category[] => {
  const children = R.groupBy(R.pathOr('root', ['parent', 'name']), categories);

  return children.root.map(category => ({
    ...category,
    children: children[category.name] || []
  }))
}
開發者ID:apuchenkin,項目名稱:aws.photo.service,代碼行數:8,代碼來源:category.ts

示例5: pathOr

 .catch((error) => {
   const reason = pathOr('Backups could not be enabled for this Linode.',
     ['response', 'data', 'errors', 0, 'reason'], error);
   return {
     ...accumulator,
     errors: [...accumulator.errors, { linodeId: linode.id, reason }]
   }
 })
開發者ID:displague,項目名稱:manager,代碼行數:8,代碼來源:index.ts

示例6: parseQueryParams

export const getQueryParam = (
  str: string,
  paramName: string,
  defaultValue: string = ''
) => {
  const params = parseQueryParams(str);
  return pathOr(defaultValue, [paramName], params);
};
開發者ID:linode,項目名稱:manager,代碼行數:8,代碼來源:queryParams.ts

示例7: pathOr

export const getErrorText = (error: any) => {
  const reason = pathOr('', ['data', 'errors', 0, 'reason'], error);

  if (reason === 'Unauthorized') {
    return 'You are not authorized to view StackScripts for this account.';
  }
  return 'There was an error loading your StackScripts. Please try again later.';
}
開發者ID:displague,項目名稱:manager,代碼行數:8,代碼來源:stackScriptUtils.ts

示例8: pathOr

 .catch((err) => {
   const ApiError = pathOr(
     [{ reason: "There was an error retrieving your Images." }],
     ['response', 'data', 'errors'],
     err
   )
   dispatch(getImagesFailure(ApiError))
   return err;
 })
開發者ID:displague,項目名稱:manager,代碼行數:9,代碼來源:image.requests.ts

示例9: pathOr

 .catch((err) => {
   const errors: Linode.ApiFieldError[] = pathOr(
     [{ reason: 'There was an issue rebooting your Linode' }],
     ['response', 'data', 'errors'],
     err
   );
   errors.forEach(e => sendToast && sendToast(e.reason, {
     variant: 'error'
   }));
 });
開發者ID:displague,項目名稱:manager,代碼行數:10,代碼來源:powerActions.ts


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