aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/css/style.lux
blob: 4b1f26590dfb077ba95571bc60feb7e7b526443b (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
(.using
 [library
  [lux (.except)
   [data
    [text
     ["%" format (.only format)]]
    [collection
     ["[0]" list (.open: "[1]#[0]" mix)]]]
   [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))
  )