diff --git a/extra/recipes/recipes.factor b/extra/recipes/recipes.factor index f9663403f5..3fa65d336d 100644 --- a/extra/recipes/recipes.factor +++ b/extra/recipes/recipes.factor @@ -32,21 +32,22 @@ STORED-TUPLE: recipe { title { VARCHAR 100 } } { votes INTEGER } { txt TEXT } { :> tbl "okay" BUTTON -> :> ok "submit" [ store-tuple ] >>value TOOLBAR -> :> submit - "love" TOOLBAR -> [ 1 ] <$ - "hate" -> [ -1 ] <$ 2array :> votes + "love" 1 >>value TOOLBAR -> + "hate" -1 >>value -> 2array :> votes "back" -> [ -30 ] <$ "more" -> [ 30 ] <$ 2array :> viewed SEARCH ->% 1 :> search submit ok [ [ drop ] ] <$ 2array [ drop ] >>value :> quot - viewed 0 [ + ] search ok t "all" GENRES -> 3array + viewed 0 [ + ] search ok t "all" GENRES -> + tbl selected-value>> votes [ [ + ] curry change-votes modify-tuple ] 2$>-| + 4array [ drop [ f ] [ "%" dup surround ] if-empty top-recipes ] 3fmap-| :> updates updates [ top-genres UI[ GENRES ->? ] map ] bind* [ text>> T{ recipe } swap >>genre get-tuples ] fmap tbl swap updates 2array >>model [ [ title>> ] [ genre>> ] bi 2array ] >>quot - { "Title" "Genre" } >>column-titles dup RECIPES ,% 1 actions>> :> val - val votes [ [ + ] curry change-votes store-tuple ] 2$>-| , - val submit [ "" dup dup ] <$ 2array + { "Title" "Genre" } >>column-titles dup RECIPES ,% 1 actions>> + submit [ "" dup dup ] <$ 2array { [ [ title>> ] fmap TITLE ->% .5 ] [ [ genre>> ] fmap GENRE ->% .5 ] [ [ txt>> ] fmap BODY ->% 1 ] diff --git a/extra/ui/frp/signals/signals.factor b/extra/ui/frp/signals/signals.factor index e7b6374527..e48d477465 100644 --- a/extra/ui/frp/signals/signals.factor +++ b/extra/ui/frp/signals/signals.factor @@ -92,10 +92,8 @@ M: | models-changed drop ; M: | model-changed nip dup dependencies>> [ value>> ] all? - [ [ dup [ value>> ] product-value >>value notify-connections ] keep models-changed ] + [ [ dup [ value>> ] product-value swap set-model ] keep models-changed ] [ drop ] if ; -M: | update-model - dup value>> swap [ set-model ] set-product-value ; M: | model-activated dup model-changed ; TUPLE: & < | ;