view forms.ur @ 10:0337f88f2efc

Clock
author Adam Chlipala <adam@chlipala.net>
date Fri, 22 Jul 2011 15:40:03 -0400
parents 1e04008eaef7
children 5905b56e0cd9
line wrap: on
line source
datatype readiness a = Ready of a | Waiting | Invalid of string
datatype rpcResult a = Success of a | Failure of string

fun warning [a] (s : signal (readiness a)) =
    <xml><dyn signal={v <- s;
                      return (case v of
                                  Invalid s => <xml><b>{[s]}</b></xml>
                                | _ => <xml/>)}/></xml>

fun warningFmt [a ::: Type] [ctx ::: {Unit}] [ctx ~ body] 
               (wrap : string -> xml (body ++ ctx) [] []) 
               (s : signal (readiness a)) =
    <xml><dyn signal={v <- s;
                      return (case v of
                                  Invalid s => wrap s
                                | _ => <xml/>)}/></xml>