ramda APIs
- map
- identity
- isEmpty
- equals
- filter
- isNil
- pipe
- omit
- propOr
- pick
- prop
- reject
- range
- uniq
- chain
- sortBy
- reduce
- compose
- difference
- set
- flatten
- last
- startsWith
- has
- sortWith
- splitEvery
- pathOr
- indexBy
- lensPath
- complement
- ifElse
- head
- join
- zipWith
- union
- find
- includes
- mergeDeepRight
- over
- append
- memoizeWith
- forEach
- pluck
- curry
- times
- transpose
- all
- findLast
- inc
- always
- mergeDeepLeft
- lensProp
- path
- mergeAll
- clone
- toLower
- either
- propSatisfies
- both
- pathSatisfies
- propEq
- add
- trim
- any
- hasIn
- repeat
- adjust
- findIndex
- init
- split
- KeyValuePair
- zip
- indexOf
- toPairs
- groupBy
- countBy
- descend
- concat
- keys
- length
- mergeWith
- pair
- takeWhile
- defaultTo
- uniqBy
- ascend
- sort
Other Related APIs
ramda#pair TypeScript Examples
The following examples show how to use
ramda#pair.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: useNextQuestion.tsx From nosgestesclimat-site with MIT License | 6 votes |
export function getNextSteps(
missingVariables: Array<MissingVariables>
): Array<DottedName> {
const byCount = ([, [count]]: [unknown, [number]]) => count
const byScore = ([, [, score]]: [unknown, [unknown, number]]) => score
const missingByTotalScore = reduce<MissingVariables, MissingVariables>(
mergeWith(add),
{},
missingVariables
)
const innerKeys = flatten(map(keys, missingVariables)),
missingByTargetsAdvanced = Object.fromEntries(
Object.entries(countBy(identity, innerKeys)).map(
// Give higher score to top level questions
([name, score]) => [
name,
score + Math.max(0, 4 - name.split('.').length),
]
)
)
const missingByCompound = mergeWith(
pair,
missingByTargetsAdvanced,
missingByTotalScore
),
pairs = toPairs<number>(missingByCompound),
sortedPairs = sortWith([descend(byCount), descend(byScore) as any], pairs)
return map(head, sortedPairs) as any
}