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


TypeScript ramda.prop函數代碼示例

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


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

示例1: list

export function list(address: string, limit = 100): Promise<Array<T_TX>> {
    return request({ url: `${configGet('node')}/transactions/address/${address}/limit/${limit}` })
        .then(pipe(
            prop('0'),
            uniqBy(prop('id')) as any,
        ))
        .then(transactions => parseTx(transactions as any, false));
}
開發者ID:wavesplatform,項目名稱:WavesGUI,代碼行數:8,代碼來源:transactions.ts

示例2:

export const pageDTO = (page: Page): PageDTO => {
  const translations = R.map(
    R.prop('value'),
    R.indexBy(R.prop('field'), page.translations),
  );

  return {
    alias: page.alias,
    title: translations.title,
    content: translations.content,
  }
}
開發者ID:apuchenkin,項目名稱:aws.photo.service,代碼行數:12,代碼來源:page.ts

示例3: sort

  /**
   * Return a sorted array of records
   *
   * Example:
   *
   * ```
   * res = (res) ? Array.sort('invoiceCode', 'number', 'desc', res) : undefined;
   * ```
   */
  static sort(prop, type, order = 'asc', array) {
    const sortBy = R.sortBy(R.prop(prop));

    if ('string' === type) {
      const sortBy = R.sortBy(R.compose(R.toLower, R.prop(prop)));
    }

    if (order === 'desc') {
      return R.reverse(sortBy(array));
    }

    return sortBy(array);
  }
開發者ID:simbiosis-group,項目名稱:ion2-helper,代碼行數:22,代碼來源:array-helper.ts

示例4: wrapForeignOpt

export const associationDecorator = ({ modelName, fields }: { modelName: string; fields }) => {
  const TAG = '[associationDecorator]';
  logger.log(TAG, { fields });

  // prettier-ignore
  const associationFields = R.filter(R.compose(R.not, R.isNil, R.prop('associations')))(fields);
  logger.log(TAG, { associationFields }, R.not(R.isEmpty(associationFields)));
  if (R.not(R.isEmpty(associationFields))) {
    const wrapForeignOpt = R.map(opt => ({
      ...opt,
      association: AppContext.adapters.models.getAssociationConfigs(opt.modelName),
    }));
    const withAssociations = R.mapObjIndexed(field => ({
      ...field,
      foreignOpts: wrapForeignOpt(field.foreignOpts),
    }))(associationFields);
    logger.debug(TAG, { withAssociations, wrapForeignOpt });

    const wrappedFields = R.mergeDeepRight(fields, withAssociations);
    logger.debug(TAG, { wrappedFields });

    return { modelName, fields: wrappedFields };
  }

  return { modelName, fields };
};
開發者ID:danielwii,項目名稱:asuna-admin,代碼行數:26,代碼來源:index.ts

示例5:

const extractItemsBy = primaryKey =>
  R.compose(
    R.uniqBy(R.prop(primaryKey)),
    R.flatten,
    R.map(R.path(['data', 'items'])),
    R.flatten,
  );
開發者ID:danielwii,項目名稱:asuna-admin,代碼行數:7,代碼來源:async.ts

示例6:

export const categoryDTO = (category: Category): CategoryDTO => {
  const translations = R.map(
    R.prop('value'),
    R.indexBy(R.prop('field'), category.translations),
  );
  const children = category.children || [];

  return {
    name: category.name,
    date: category.date,
    title: translations.title,
    featured: category.featured && category.featured.src,
    description: translations.description,
    children: children.map(categoryDTO),
  }
}
開發者ID:apuchenkin,項目名稱:aws.photo.service,代碼行數:16,代碼來源:category.ts

示例7:

export const photoDTO = (photo: Photo): PhotoDTO => {
  const translations = R.map(
    R.prop('value'),
    R.indexBy(R.prop('field'), photo.translations),
  );

  return {
    src: photo.src,
    views: photo.views,
    width: photo.width,
    height: photo.height,
    group: photo.group,
    datetime: photo.datetime,
    description: translations.description,
  }
}
開發者ID:apuchenkin,項目名稱:aws.photo.service,代碼行數:16,代碼來源:photo.ts

示例8: countBy

const excludeUnique = xs => {
    const primary = 'xmlUrl';

    const keyCounts = countBy(identity, (xs.map(prop(primary))));

    // console.log({keyCounts});

    const keyCount = flip(prop)(keyCounts);

    const notUnique = compose(
        lt(1),
        keyCount,
        prop(primary)
    );

    return filter(notUnique, xs)
};
開發者ID:r-k-b,項目名稱:newsblur-feed-info,代碼行數:17,代碼來源:index.ts

示例9: detectBrowsers

/** returns list of detected browsers */
function detectBrowsers(): Bluebird<Browser[]> {
  // we can detect same browser under different aliases
  // tell them apart by the full version property
  const removeDuplicates = uniqBy(prop('version'))
  return Bluebird.mapSeries(browsers, checkOneBrowser)
    .then(_.compact)
    .then(removeDuplicates) as Bluebird<Browser[]>
}
開發者ID:lgandecki,項目名稱:cypress,代碼行數:9,代碼來源:detect.ts

示例10: async

export default async () => {
  const pages = await fetch(`${host}${basename}/page`, options).then(res => res.json());

  const pages$ = await Promise.all(
    pages.map((page: any) => fetch(
      `${host}${basename}/page/${page.alias}`,
      options,
    )
    .then(res => res.json())
    )
  );

  const categories = await fetch(`${host}${basename}/category`, options).then(res => res.json());

  const categories$ = await Promise.all(
    categories.map((category: any) => fetch(
      `${host}${basename}/category/${category.name}`,
      options,
    )
    .then(res => res.json())
    .catch(e=> {
      console.log(e);
    })
    )
  );

  const photos = await Promise.all(
    categories.map((category: any) => fetch(
      `${host}${basename}/category/${category.name}/photo`,
      options,
    )
    .then(res => res.json())
    .catch(() => [])
    .then(photos => photos.map((photo: any) => ({
      ...photo,
      category: category.name,
    })))
    )
  );

  const photos$ = R.pipe(
    R.unnest,
    R.groupBy(R.prop('id')),
    // @ts-ignore
    R.map((photoList: Photo[]) => ({
      ...R.head(photoList),
      category: R.map(R.prop('category'), photoList)
    })),
    R.values,
  )(photos);

  return {
    pages: pages$.filter(Boolean),
    categories: categories$.filter(Boolean),
    photos: photos$.filter(Boolean),
  } as any;
};
開發者ID:apuchenkin,項目名稱:aws.photo.service,代碼行數:57,代碼來源:fetchData.ts


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