本文整理汇总了TypeScript中Immutable.Map.hasIn方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Map.hasIn方法的具体用法?TypeScript Map.hasIn怎么用?TypeScript Map.hasIn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Immutable.Map
的用法示例。
在下文中一共展示了Map.hasIn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: transform
/**
* Brief format for references
*/
transform(item: Map<string, any>): string {
let referenceHTML = '';
let hasRefUrl = false;
let title = '';
let author = '';
let arxivEprint = '';
let label = '';
let pubNote = '';
let reportNumber = '';
let misc = '';
hasRefUrl = item.hasIn(['record', '$ref']);
item = item.get('reference');
if (!item) {
return referenceHTML;
}
arxivEprint = item.get('arxiv_eprint', '');
reportNumber = item.getIn(['report_numbers', 0], '');
if (item.has('label')) {
label = `[${item.get('label')}] `;
}
if (item.has('titles')) {
title = item.getIn(['titles', 0, 'title'], '');
}
if (item.has('authors')) {
author = item.getIn(['authors', 0, 'full_name'], '') + ' ';
if (item.get('authors').size > 1) {
author += 'el al. ';
}
}
if (item.has('publication_info')) {
pubNote += item.getIn(['publication_info', 'journal_title'], '') + ' ';
pubNote += item.getIn(['publication_info', 'journal_volume'], '') + ' ';
pubNote += '(' + item.getIn(['publication_info', 'year'], '') + ') ';
pubNote += item.getIn(['publication_info', 'artid'], '') + ' ';
}
if (!author) {
if (item.has('collaborations')) {
author = item.getIn(['collaborations', 0]) + ' ';
}
}
if (!hasRefUrl) {
misc = item.getIn(['misc', 0], '');
}
referenceHTML = label + title + author + pubNote + arxivEprint + reportNumber + misc;
return referenceHTML;
}