]> gitweb.factorcode.org Git - factor.git/blob - basis/html/streams/streams.factor
colors: using 255 * round >integer for hex conversion
[factor.git] / basis / html / streams / streams.factor
1 ! Copyright (C) 2004, 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors assocs combinators destructors fry html io
4 io.backend io.pathnames io.styles kernel macros make math
5 math.functions math.order math.parser namespaces sequences
6 strings words splitting xml xml.syntax ;
7 IN: html.streams
8
9 GENERIC: url-of ( object -- url )
10
11 M: object url-of drop f ;
12
13 TUPLE: html-writer data ;
14 INSTANCE: html-writer output-stream
15
16 <PRIVATE
17
18 : new-html-writer ( class -- html-writer )
19     new V{ } clone >>data ; inline
20
21 TUPLE: html-sub-stream < html-writer style parent ;
22
23 : new-html-sub-stream ( style stream class -- stream )
24     new-html-writer
25         swap >>parent
26         swap >>style ; inline
27
28 : end-sub-stream ( substream -- string style stream )
29     [ data>> ] [ style>> ] [ parent>> ] tri ;
30
31 : object-link-tag ( xml style -- xml )
32     presented of [ url-of [ simple-link ] when* ] when* ;
33
34 : href-link-tag ( xml style -- xml )
35     href of [ simple-link ] when* ;
36
37 : hex-color, ( color -- )
38     [ red>> ] [ green>> ] [ blue>> ] tri
39     [ 255 * round >integer >hex 2 CHAR: 0 pad-head % ] tri@ ;
40
41 : fg-css, ( color -- )
42     "color: #" % hex-color, "; " % ;
43
44 : bg-css, ( color -- )
45     "background-color: #" % hex-color, "; " % ;
46
47 : style-css, ( flag -- )
48     dup
49     { italic bold-italic } member?
50     "font-style: " % "italic" "normal" ? % "; " %
51     { bold bold-italic } member?
52     "font-weight: " % "bold" "normal" ? % "; " % ;
53
54 : size-css, ( size -- )
55     "font-size: " % # "pt; " % ;
56
57 : font-css, ( font -- )
58     "font-family: " % % "; " % ;
59
60 MACRO: make-css ( pairs -- str )
61     [ '[ _ of [ _ execute ] when* ] ] { } assoc>map
62     '[ [ _ cleave ] "" make ] ;
63
64 : span-css-style ( style -- str )
65     {
66         { foreground fg-css, }
67         { background bg-css, }
68         { font-name font-css, }
69         { font-style style-css, }
70         { font-size size-css, }
71     } make-css ;
72
73 : span-tag ( xml style -- xml )
74     span-css-style
75     [ swap [XML <span style=<->><-></span> XML] ] unless-empty ; inline
76
77 : emit-html ( stream quot -- )
78     dip data>> push ; inline
79
80 : img-tag ( xml style -- xml )
81     image-style of [ nip simple-image ] when* ;
82
83 : format-html-span ( string style stream -- )
84     [
85         {
86             [ span-tag ]
87             [ href-link-tag ]
88             [ object-link-tag ]
89             [ img-tag ]
90         } cleave
91     ] emit-html ;
92
93 TUPLE: html-span-stream < html-sub-stream ;
94
95 M: html-span-stream dispose
96     end-sub-stream format-html-span ;
97
98 : border-css, ( border -- )
99     "border: 1px solid #" % hex-color, "; " % ;
100
101 : (padding-css,) ( horizontal vertical -- )
102     2dup = [
103         drop "padding: " % # "px; " %
104     ] [
105         "padding: " % # "px " % # "px; " %
106     ] if ;
107
108 : padding-css, ( padding -- )
109     first2 (padding-css,) ;
110
111 : width-css, ( width -- )
112     "width: " % # "px; " % ;
113
114 : div-css-style ( style -- str )
115     [ span-css-style ]
116     [
117         {
118             { page-color bg-css, }
119             { border-color border-css, }
120             { inset padding-css, }
121             { wrap-margin width-css, }
122         } make-css
123     ] bi "display: inline-block; " 3append ;
124
125 : div-tag ( xml style -- xml' )
126     div-css-style
127     [ swap [XML <div style=<->><-></div> XML] ] unless-empty ;
128
129 : format-html-div ( string style stream -- )
130     [ [ div-tag ] [ object-link-tag ] bi ] emit-html ;
131
132 TUPLE: html-block-stream < html-sub-stream ;
133
134 M: html-block-stream dispose
135     end-sub-stream format-html-div ;
136
137 : border-spacing-css, ( pair -- )
138     first2 [ 2 /i ] bi@ (padding-css,) ;
139
140 : table-style ( style -- str )
141     {
142         { table-border border-css, }
143         { table-gap border-spacing-css, }
144     } make-css ;
145
146 PRIVATE>
147
148 ! Stream protocol
149 M: html-writer stream-flush drop ;
150
151 M: html-writer stream-write1
152     [ 1string ] emit-html ;
153
154 M: html-writer stream-write
155     [ ] emit-html ;
156
157 M: html-writer stream-format
158     format-html-span ;
159
160 M: html-writer stream-nl
161     [ [XML <br/> XML] ] emit-html ;
162
163 M: html-writer make-span-stream
164     html-span-stream new-html-sub-stream ;
165
166 M: html-writer make-block-stream
167     html-block-stream new-html-sub-stream ;
168
169 M: html-writer make-cell-stream
170     html-sub-stream new-html-sub-stream ;
171
172 M: html-writer stream-write-table
173     [
174         table-style swap [
175             [ data>> [XML <td valign="top" style=<->><-></td> XML] ] with map
176             [XML <tr><-></tr> XML]
177         ] with map
178         [XML <table style="display: inline-table; border-collapse: collapse;"><-></table> XML]
179     ] emit-html ;
180
181 M: html-writer dispose drop ;
182
183 : <html-writer> ( -- html-writer )
184     html-writer new-html-writer ;
185
186 : with-html-writer ( quot -- xml )
187     <html-writer> [ swap with-output-stream* ] keep data>> ; inline