首页 > 代码库 > [Ramda] Declaratively Map Predicates to Object Properties Using Ramda where
[Ramda] Declaratively Map Predicates to Object Properties Using Ramda where
Sometimes you need to filter an array of objects or perform other conditional logic based on a combination of factors. Ramda‘s where
function gives you a concise way to declaratively map individual predicates to object properties, that when combined, cover the various facets of your conditions. In this lesson, we‘ll look at how this powerful function can be used for scenarios requiring a complex predicate function.
const products = [ {name: ‘Jeans‘, price:80, category: ‘clothes‘, stock: 100}, {name: ‘Hoodie‘, price:50, category: ‘clothes‘, stock: 20}, {name: ‘Sneakers‘, price:120, category: ‘clothes‘, stock: 30}, {name: ‘Cards‘, price: 35, category: ‘games‘, stock: 10}, {name: ‘iPhone‘, price: 649, category: ‘electronics‘, stock: 5}, {name: ‘Sauce Pan‘, price: 100, category: ‘housewares‘, stock: 200} ]const predicate = R.where({ category: R.complement(R.equals(‘clothes‘)), // category is not clothes stock: R.lt(R.__, 50), // less than 50 price: R.gte(R.__, 100) // greater or equal than 100})const getResults = R.pipe(R.filter(predicate), R.pluck(‘name‘))const result = getResults(products)console.log(result)document.getElementById(‘output‘).innerHTML = `${JSON.stringify(result)}`
[Ramda] Declaratively Map Predicates to Object Properties Using Ramda where
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。