Diode. Send more than 1 action in circuit

204 Views Asked by At

Colleagues, I cant make diode, to send itself more than one action from another action. here the example from App circuit:

val handler = new ActionHandler(myZoomedState) {
    override def handle = {
      case action => effectOnly(Effect(someFuture map {_ =>
        someAction  //This action doesn't perform 
        someOtherAction  //This one does
      }))

      case someAction => ???
      case someOtherAction => ???
    }
}

How can chain I actions? Something like >> whith callbacks:
someCallback >> someOtherCallback

2

There are 2 best solutions below

0
On BEST ANSWER

Solution is to create another action, combining this two actions. And I still can handle Future error. Looks like this:

case object DoSmthStuff
...

val handler = new ActionHandler(myZoomedState) {
    override def handle = {
      case action => effectOnly(Effect(
          someFuture map { _ => DoSmthStuff } recover { ... }
      ))

      case DoSmthStuff = effectOnly(
          Effect.action(someAction) >> Effect.action(someOtherAction)
      )

      case someAction => ???
      case someOtherAction => ???
    }
}
4
On

Oleg, your questions is quite not clear. If your handlers of someAction and someOtherAction are actually effect-only as implementation of your case action suggests, you can move them into a named methods and combine them using << or >> or +. If this is not what you want, you should elaborate your problem in more details.