aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/css/style.lux
blob: 4e459fd17200214daad2f4af84a25c5c6944171c (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
(.require
 [library
  [lux (.except)
   [data
    [text
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list (.use "[1]#[0]" mix)]]]
   [meta
    [type
     [primitive (.except)]]]]]
 ["[0]" //
  ["[1][0]" value (.only Value)]
  ["[1][0]" property (.only Property)]])

(primitive .public Style
  Text

  (def .public empty
    Style
    (abstraction ""))

  (def .public (with [property value])
    (All (_ brand)
      (-> [(Property brand) (Value brand)]
          (-> Style Style)))
    (|>> representation
         (format (//property.name property) ": " (//value.value value) ";")
         abstraction))

  (def .public inline
    (-> Style Text)
    (|>> representation))

  (def .public (style config)
    (-> (List (Ex (_ brand) [(Property brand) (Value brand)]))
        Style)
    (list#mix ..with ..empty config))
  )