-
-
Notifications
You must be signed in to change notification settings - Fork 77
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
Dynamic switching events #180
Comments
Yes, I'm still planning to do replace the FRP implementation in Reactive.Threepenny and use Reactive.Banana instead. The reason I haven't done this yet is that Threepenny requires one or two weird primitives (e.g. for making |
Would you accept contributions ? If there was a dev branch and a set of guidelines I might be able to help. |
Sure, I'm happy to receive contributions! 😄 I used to have a Since the project is still relatively small, I didn't make any formal guidelines. Use your best judgement; I usually review submitted code and give feedback. That said, for this particular issue, it's probably fastest if I do the changes myself. The inner workings of reactive-banana are fairly complex and implementing the first missing primitive (Something similar to I intend to tackle these as I find free time; sorry that the state of FRP affairs in Threepenny is currently something unsatisfying. |
The
switchE :: Event(Event a) -> m (Event a)
operation provided by reactive-banana is missing in threepenny. A while ago this question came up in stackoverflow.com and you mentioned plans to implement it in threepenny, or unify threepenny and reactive-banana. Are you still planning to do this ?I am writing a library of composable algebraic editors, and this comes up in trying to define the editor for a union type.
The text was updated successfully, but these errors were encountered: