本文整理汇总了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;未经允许,请勿转载。 |
请发表评论