-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strong-type data points, avoid magic strings #166
Comments
Firstly, thank you for taking the time to think about this and write this up. I like this suggestion as I've been contemplating removing the fieldSpec type references myself, both because of typing issues and also the complexity it scatters though the codebase. I'm in favor of doing something along these lines. The two options I see to address the typing and complexity issues are:
I've started a branch to explore option (a) as this is a less radical change. When I ported Pond to Typescript originally that was the obvious thought (while I was generically typing the key, it made sense to generically type the data), but there was some obstacles that where too much of a lift at the time in terms of what that meant across the code. One such obstacle was how avg() type operations would work, operations that essentially used There was a couple of other concerns that still would need to be solved or at least consider the trade off:
Anyway, I'm mostly replying to thank you for taking the time to make this suggestion. I'll continue to look into this. |
Kind of a long way to go, but got tests for this basic functionality working with interface Sensor {
value: number;
status: string;
}
const c = collection<Time, Sensor>(
Immutable.List([
event(time("2015-04-22T03:30:00Z"), { value: 32, status: "ok" }),
event(time("2015-04-22T02:30:00Z"), { value: 42, status: "fail" })
])
);
c.avg(d => d.value);
// 37
c.toJSON(({ value, status }) => ({ value, ok: status === "ok" ? true : false }))
// [
// { time: 1429673400000, data: { value: 32, ok: true } },
// { time: 1429669800000, data: { value: 42, ok: false } }
// ] |
That's great. I'm not very familiar with Pond but when I was reviewing it, I liked the project but thought the API needed that kind of improvement. It's great to see my suggestion was received well. |
It is great that this project is being converted to TypeScript. I wanted to suggest to use generics for strong-typing data points in time series, and avoid magic strings as much as possible. I created this commit to show how the interfaces could be updated to do that (it does not include the implementation):
Commit: Add generic type for data points
With that, as an example,
avg
function could be updated to support this signature:and be used like below:
I believe function signatures that receive magic strings should be deprecated in favor of this new signature.
The text was updated successfully, but these errors were encountered: