Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
1answer
132 views

reactive-banana: Firing event that contain the most up to date value of a Behavior

Suppose I have an event trigger which I want to do two things when fired. First, I want it to update the value of some behavior. Second, if other conditions are met, I want it to fire another event ...
13
votes
1answer
691 views

Am I using reactive-banana right?

Here's an example Haskell FRP program using the reactive-banana library. I'm only just starting to feel my way with Haskell, and especially haven't quite got my head around what FRP means. I'd really ...
7
votes
1answer
104 views

reactive-banana: How to create an AddHandler?

I'm currently trying to get to know FRP through Heinrich Apfelmus' reactive-banana, which seems to be a quite well documented and simple library, compared to the other ones I've looked at. However, I ...
7
votes
4answers
432 views

Behavior in reactive-banana

Pardon me, I'm just starting to look into reactive-banana and FRP. The author of reactive-banana made this example per my suggestion, in which he creates a counter which can be increased and ...
6
votes
1answer
137 views

Can reactive-banana handle cycles in the network?

We have code like this: guiState :: Discrete GuiState guiState = stepperD (GuiState []) $ union (mkGuiState <$> changes model) evtAutoLayout evtAutoLayout :: Event GuiState ...
5
votes
1answer
93 views

What's wrong with my “sum event” in reactive-banana?

I'm learning reactive-banana and intending to use it in a server-side app. I have some background in RxJs, so I'm used to combining Events with different combinators there. So I started with simple ...
4
votes
2answers
178 views

UI input with reactive-banana-wx

How do you get the content of ui elements when using reactive-banana? The event0 returns an event of type Event (), which has unit type instead of the type of the control. event1 takes an event of ...
3
votes
1answer
100 views

installing reactive-banana-wx

when you try to install the library reactie-banana-wx, get the error: src\CRUD.hs:10:18: Could not find module `Data.Map': It is a member of the hidden package `containers-0.4.0.0'. Perhaps you need ...
2
votes
2answers
92 views

How to handle multiple windows and single data structure in reactive-banana

I'm wondering how reactive-banana was designed to handle the following situation: Let's say I have a central data structure. The user is able to freely open and close any number of different types of ...