Dawid Dworak

Results 28 issues of Dawid Dworak

https://github.com/UdashFramework/udash-core/commit/2f671cfa7bcad8150ee9f7517e3027d51fb3ea74

bug

- `showIfElse` doesn't provide nested interceptor - `repeat` is usually used with a nested interceptor and produce - `repeat` without nested is the default which is not very common use...

Consider a case with 2 properties (condition and sequence of items) and a `showIfElse`, which has a `produce` in the positive branch and `repeat`+ `produce` in the negative one. None...

SeqProperties based on immutable models usually return immutable collections: ```scala model.subProp(_.vector).get //Vector[Int] ``` but direct usage is not quite as good: ```scala SeqProperty(2,1,3).get //scala.collection.Seq[Int] ``` The choice of base `Seq`...

Making a factory reuse the view and presenter often requires e.g. adding an empty parameter list to the class. We often see an issue with this being refactored away or...

enhancement

This was patched for `.transform` in `0.8.x` series https://github.com/UdashFramework/udash-core/pull/474. We can ensure that uniformly by e.g. adding internal `listen` method which would propagate the flag to "derived" properties. See `PropertyTest`:...