summaryrefslogtreecommitdiff
path: root/tests/crud.ur
blob: c3e76e6aa152c9f0cac8515bf3a99a6bd1c7d343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
con colMeta = fn cols :: {Type} => $(Top.mapTT (fn t => {Show : t -> xbody}) cols)

functor Make(M : sig
        con cols :: {Type}
        constraint [Id] ~ cols
        val tab : sql_table ([Id = int] ++ cols)

        val title : string

        val cols : colMeta cols
end) = struct

open constraints M
val tab = M.tab

fun list () =
        rows <- query (SELECT * FROM tab AS T)
                (fn fs acc => return <body>
                        {acc}
                        <tr>
                                <td>{txt _ fs.T.Id}</td>
                                {fold [fn cols :: {Type} => $cols -> colMeta cols -> xtr]
                                        (fn (nm :: Name) (t :: Type) (rest :: {Type}) acc =>
                                                [[nm] ~ rest] =>
                                                fn r cols =>
                                                <tr>
                                                        <td>{cols.nm.Show r.nm}</td>
                                                        {acc (r -- nm) (cols -- nm)}
                                                </tr>)
                                        (fn _ _ => <tr></tr>)
                                        [M.cols] (fs.T -- #Id) M.cols}
                        </tr>
                </body>) <body></body>;
        return <html><head>
                <title>List</title>

                </head><body>

                <h1>List</h1>

                <table border={1}>
                <tr> <th>ID</th> </tr>
                {rows}
                </table>
        </body></html>

fun main () : transaction page = return <html><head>
        <title>{cdata M.title}</title>
        </head><body>
        <h1>{cdata M.title}</h1>

        <li> <a link={list ()}>List all rows</a></li>
</body></html>

end