本文整理汇总了TypeScript中lodash-es/filter.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: findMatchingChoicesForScalar
protected findMatchingChoicesForScalar(choices: Dictionary<Ro.Value> | null, titleMatch: string): Ro.Value[] {
if (choices == null) {
return [];
}
const labels = keys(choices);
const matchingLabels = filter(labels, l => l.toString().toLowerCase().indexOf(titleMatch.toLowerCase()) >= 0);
const result = new Array<Ro.Value>();
switch (matchingLabels.length) {
case 0:
break; // leave result empty
case 1:
// Push the VALUE for the key
// For simple scalars they are the same, but not for Enums
result.push(choices[matchingLabels[0]]);
break;
default:
// Push the matching KEYs, wrapped as (pseudo) Values for display in message to user
// For simple scalars the values would also be OK, but not for Enums
forEach(matchingLabels, label => result.push(new Ro.Value(label)));
break;
}
return result;
}
开发者ID:NakedObjectsGroup,项目名称:NakedObjectsFramework,代码行数:24,代码来源:command.ts
示例2: tooltip
export function tooltip(onWhat: { clientValid: () => boolean }, fields: FieldViewModel[]): string {
if (onWhat.clientValid()) {
return '';
}
const missingMandatoryFields = filter(fields, p => !p.clientValid && !p.getMessage());
if (missingMandatoryFields.length > 0) {
return reduce(missingMandatoryFields, (s, t) => s + t.title + '; ', Msg.mandatoryFieldsPrefix);
}
const invalidFields = filter(fields, p => !p.clientValid);
if (invalidFields.length > 0) {
return reduce(invalidFields, (s, t) => s + t.title + '; ', Msg.invalidFieldsPrefix);
}
return '';
}
开发者ID:NakedObjectsGroup,项目名称:NakedObjectsFramework,代码行数:19,代码来源:helpers-view-models.ts
示例3: filter
protected matchFriendlyNameAndOrMenuPath<T extends Ro.IHasExtensions>(
reps: T[],
match: string | undefined): T[] {
const clauses = match ? match.split(' ') : [];
// An exact match has preference over any partial match
const exactMatches = filter(reps,
(rep) => {
const path = rep.extensions().menuPath();
const name = rep.extensions().friendlyName().toLowerCase();
return match === name ||
(!!path && match === path.toLowerCase() + ' ' + name) ||
every(clauses, clause => name === clause || (!!path && path.toLowerCase() === clause));
});
if (exactMatches.length > 0) { return exactMatches; }
return filter(reps,
rep => {
const path = rep.extensions().menuPath();
const name = rep.extensions().friendlyName().toLowerCase();
return every(clauses, clause => name.indexOf(clause) >= 0 || (!!path && path.toLowerCase().indexOf(clause) >= 0));
});
}
开发者ID:NakedObjectsGroup,项目名称:NakedObjectsFramework,代码行数:21,代码来源:command.ts
示例4: createSubmenuItems
export function createSubmenuItems(avms: ActionViewModel[], menuSlot: { name: string, action: ActionViewModel }, level: number): MenuItemViewModel {
// if not root menu aggregate all actions with same name
let menuActions: ActionViewModel[];
let menuItems: MenuItemViewModel[] | null;
if (menuSlot.name) {
const actions = filter(avms, a => getMenuNameForLevel(a.menuPath, level) === menuSlot.name && !getMenuNameForLevel(a.menuPath, level + 1));
menuActions = actions;
// then collate submenus
const submenuActions = filter(avms, a => getMenuNameForLevel(a.menuPath, level) === menuSlot.name && !!getMenuNameForLevel(a.menuPath, level + 1));
let menuSubSlots = map(submenuActions, a => ({ name: getMenuNameForLevel(a.menuPath, level + 1), action: a }));
menuSubSlots = removeDuplicateMenuNames(menuSubSlots);
menuItems = map(menuSubSlots, slot => createSubmenuItems(submenuActions, slot, level + 1));
} else {
menuActions = [menuSlot.action];
menuItems = null;
}
return new MenuItemViewModel(menuSlot.name, menuActions, menuItems);
}
开发者ID:NakedObjectsGroup,项目名称:NakedObjectsFramework,代码行数:22,代码来源:helpers-view-models.ts
示例5: findMatchingChoicesForRef
protected findMatchingChoicesForRef(choices: Dictionary<Ro.Value> | null, titleMatch: string): Ro.Value[] {
return choices ? filter(choices, v => v.toString().toLowerCase().indexOf(titleMatch.toLowerCase()) >= 0) : [];
}
开发者ID:NakedObjectsGroup,项目名称:NakedObjectsFramework,代码行数:3,代码来源:command.ts
注:本文中的lodash-es/filter.default函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论