I am using Ramda's pipe
method. It runs fine but it is giving some type error on first argument flatten
.
I am not sure what it is about. Can anyone please explain the issue?
Code:
Error:
Sorry for naive title
Thanks
I am using Ramda's pipe
method. It runs fine but it is giving some type error on first argument flatten
.
I am not sure what it is about. Can anyone please explain the issue?
Code: https://stackblitz./edit/ramda-playground-vcljpy
Error:
Sorry for naive title
Thanks
Share Improve this question asked Jan 6, 2021 at 22:00 newbienewbie 6002 gold badges13 silver badges48 bronze badges 3- If it helps, because this works in the REPL, this is probably something that should be asked of whoever maintains your TS typings file. – Scott Sauyet Commented Jan 6, 2021 at 22:13
- I am maintaining TS typings file but I am not sure what I am missing there. It is some typing issue or the way I am calling mergeData. I am not sure! :/ – newbie Commented Jan 6, 2021 at 22:22
- Sorry, I meant the Ramda typings file. Ramda does not natively support TS, and I know there are several groups out there who maintain TS typings for Ramda. But I never remember details. – Scott Sauyet Commented Jan 6, 2021 at 22:38
2 Answers
Reset to default 7I usually explicitly type the first function in the pipe by making it pointed (x: Data[][]) => flatten(x)
The rest of the typings should follow nicely
You'll need to explicitly supply the types to R.pipe
:
const mergeData: any = pipe<
[Data[][]], // arguments supplied to the pipe
Data[], // result of flatten
Data[], // result of filter
Record<string, Data[]>, // result of groupBy
Data[][], // result of values
Data[], // result of map(bine)
RankedData[] // result of last
>(
This works with the following packages' versions and above:
"@types/ramda": "0.27.34",
"ramda": "0.27.1"
This is the code of the working example (sandbox):
interface Data {
name: string;
val: number;
}
interface RankedData extends Data {
rank: string;
}
const ranks = {
a: 'si',
b: 'dp',
d: 'en',
c: 'fr'
};
// merge deep and bine val property values
const bine = mergeWithKey((k, l, r) => (k === 'val' ? l + r : r));
const mergeData: any = pipe<
[Data[][]],
Data[],
Data[],
Record<string, Data[]>,
Data[][],
Data[],
RankedData[]
>(
flatten,
filter((o: Data) => Object.keys(ranks).includes(o.name)),
groupBy(prop('name')), // group by the name
values, // convert back to an array of arrays
map(reduce(bine, {} as Data)), // bine each group to a single object
map((o) => ({
...o,
rank: ranks[o.name]
}))
);