From 8051218ee03781db02609af5bbc04eeeeff18a0c Mon Sep 17 00:00:00 2001 From: Sam Anklesaria Date: Sun, 14 Jun 2009 13:08:49 -0500 Subject: [PATCH] ui.frp examples updated --- extra/darcs-ui | 2 +- extra/recipes/recipes.factor | 49 ++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 extra/recipes/recipes.factor diff --git a/extra/darcs-ui b/extra/darcs-ui index 4112107342..e2554b2eba 160000 --- a/extra/darcs-ui +++ b/extra/darcs-ui @@ -1 +1 @@ -Subproject commit 4112107342733e412dda8c1b747aa2ec1f27ddb6 +Subproject commit e2554b2ebae120bbd315ccbca8aa833bc8cb830e diff --git a/extra/recipes/recipes.factor b/extra/recipes/recipes.factor new file mode 100644 index 0000000000..788dfb1a51 --- /dev/null +++ b/extra/recipes/recipes.factor @@ -0,0 +1,49 @@ +USING: accessors arrays db.tuples db.sqlite persistency +io.files.temp kernel monads sequences ui ui.frp.gadgets +ui.frp.layout ui.frp.signals ui.gadgets.scrollers ui.gadgets.labels +colors.constants ui.pens.solid combinators math locals strings +ui.tools.inspector ; +FROM: sets => prune ; +IN: recipes +STORED-TUPLE: recipe title votes txt genre ; +: ( title genre text -- recipe ) recipe new swap >>txt swap >>genre swap >>title ; +"recipes.db" temp-file recipe define-db +: top-recipes ( -- recipes ) T{ recipe } >>tuple "votes" >>order get-tuples ; +: top-genres ( -- genres ) top-recipes [ genre>> ] map prune 5 (head-slice) ; +: interface ( -- book ) [ + [ + [ $ TOOLBAR $ $ GENRES $ ] { 5 0 } >>gap COLOR: gray >>interior , + $ RECIPES $ + ] , + [ + [ "Title:"