tairitsu-style 0.4.2

Type-safe CSS property builders for Tairitsu framework
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#[cfg(feature = "parse")]
use super::values::CssLength;
use super::{
    properties::{CssProperty, Property},
    values::CssValue,
};

pub struct StyleStringBuilder(Vec<(Property, String)>);

impl StyleStringBuilder {
    pub fn new() -> Self {
        Self(Vec::new())
    }

    pub fn add(mut self, property: CssProperty, value: &str) -> Self {
        self.0.push((Property::Known(property), value.to_string()));
        self
    }

    pub fn add_custom(mut self, property: &str, value: &str) -> Self {
        self.0
            .push((Property::Custom(property.to_string()), value.to_string()));
        self
    }

    /// Add a CSS custom property (CSS variable).
    /// This is the preferred method for setting --custom-properties.
    pub fn add_var(mut self, name: &str, value: &str) -> Self {
        self.0.push((
            Property::Custom(format!("--{}", name.trim_start_matches("--"))),
            value.to_string(),
        ));
        self
    }

    pub fn add_px(mut self, property: CssProperty, pixels: u32) -> Self {
        self.0
            .push((Property::Known(property), format!("{}px", pixels)));
        self
    }

    pub fn add_auto(mut self, property: CssProperty) -> Self {
        self.0.push((
            Property::Known(property),
            CssValue::Auto.as_str().to_string(),
        ));
        self
    }

    pub fn add_none(mut self, property: CssProperty) -> Self {
        self.0.push((
            Property::Known(property),
            CssValue::None.as_str().to_string(),
        ));
        self
    }

    pub fn add_inherit(mut self, property: CssProperty) -> Self {
        self.0.push((
            Property::Known(property),
            CssValue::Inherit.as_str().to_string(),
        ));
        self
    }

    pub fn add_percent(mut self, property: CssProperty, value: u32) -> Self {
        self.0
            .push((Property::Known(property), format!("{}%", value)));
        self
    }

    pub fn add_em(mut self, property: CssProperty, value: u32) -> Self {
        self.0
            .push((Property::Known(property), format!("{}em", value)));
        self
    }

    pub fn add_rem(mut self, property: CssProperty, value: u32) -> Self {
        self.0
            .push((Property::Known(property), format!("{}rem", value)));
        self
    }

    pub fn add_vw(mut self, property: CssProperty, value: u32) -> Self {
        self.0
            .push((Property::Known(property), format!("{}vw", value)));
        self
    }

    pub fn add_vh(mut self, property: CssProperty, value: u32) -> Self {
        self.0
            .push((Property::Known(property), format!("{}vh", value)));
        self
    }

    pub fn add_px_f64(mut self, property: CssProperty, pixels: f64) -> Self {
        self.0
            .push((Property::Known(property), format!("{}px", pixels)));
        self
    }

    pub fn add_percent_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.0
            .push((Property::Known(property), format!("{}%", value)));
        self
    }

    pub fn add_em_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.0
            .push((Property::Known(property), format!("{}em", value)));
        self
    }

    pub fn add_rem_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.0
            .push((Property::Known(property), format!("{}rem", value)));
        self
    }

    pub fn add_vw_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.0
            .push((Property::Known(property), format!("{}vw", value)));
        self
    }

    pub fn add_vh_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.0
            .push((Property::Known(property), format!("{}vh", value)));
        self
    }

    #[cfg(feature = "parse")]
    /// Add a CSS property with a type-safe `CssLength` value.
    ///
    /// # Example
    ///
    /// ```
    /// use tairitsu_style::{CssProperty, StyleStringBuilder};
    /// use super::values::CssLength;
    ///
    /// let style = StyleStringBuilder::new()
    ///     .add_length(CssProperty::Width, CssLength::px(100))
    ///     .add_length(CssProperty::Height, CssLength::vh(100))
    ///     .build_clean();
    /// ```
    pub fn add_length(mut self, property: CssProperty, length: CssLength) -> Self {
        self.0
            .push((Property::Known(property), length.to_css_string()));
        self
    }

    #[cfg(feature = "parse")]
    /// Add a CSS custom property (CSS variable) with a type-safe `CssLength` value.
    ///
    /// # Example
    ///
    /// ```
    /// use tairitsu_style::StyleStringBuilder;
    /// use super::values::CssLength;
    ///
    /// let style = StyleStringBuilder::new()
    ///     .add_var_with_length("glow-x", CssLength::percent(50))
    ///     .add_var_with_length("glow-y", CssLength::percent(50))
    ///     .build_clean();
    /// ```
    pub fn add_var_with_length(mut self, name: &str, length: CssLength) -> Self {
        self.0.push((
            Property::Custom(format!("--{}", name.trim_start_matches("--"))),
            length.to_css_string(),
        ));
        self
    }

    pub fn build(self) -> String {
        let mut result = String::new();
        for (property, value) in self.0 {
            if !result.is_empty() {
                result.push(';');
            }
            result.push_str(&format!("{}:{}", property.as_str(), value));
        }
        if !result.is_empty() {
            result.push(';');
        }
        result
    }

    pub fn build_clean(self) -> String {
        let parts: Vec<String> = self
            .0
            .into_iter()
            .map(|(property, value)| format!("{}:{}", property.as_str(), value))
            .collect();
        parts.join(";")
    }
}

impl Default for StyleStringBuilder {
    fn default() -> Self {
        Self::new()
    }
}

pub struct StyleBuilder {
    properties: Vec<(Property, String)>,
}

impl StyleBuilder {
    pub fn new() -> Self {
        Self {
            properties: Vec::new(),
        }
    }

    pub fn add(mut self, property: CssProperty, value: &str) -> Self {
        self.properties
            .push((Property::Known(property), value.to_string()));
        self
    }

    pub fn add_custom(mut self, property: &str, value: &str) -> Self {
        self.properties
            .push((Property::Custom(property.to_string()), value.to_string()));
        self
    }

    /// Add a CSS custom property (CSS variable).
    /// This is the preferred method for setting --custom-properties.
    pub fn add_var(mut self, name: &str, value: &str) -> Self {
        self.properties.push((
            Property::Custom(format!("--{}", name.trim_start_matches("--"))),
            value.to_string(),
        ));
        self
    }

    pub fn add_px(mut self, property: CssProperty, pixels: u32) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}px", pixels)));
        self
    }

    pub fn add_auto(mut self, property: CssProperty) -> Self {
        self.properties.push((
            Property::Known(property),
            CssValue::Auto.as_str().to_string(),
        ));
        self
    }

    pub fn add_none(mut self, property: CssProperty) -> Self {
        self.properties.push((
            Property::Known(property),
            CssValue::None.as_str().to_string(),
        ));
        self
    }

    pub fn add_inherit(mut self, property: CssProperty) -> Self {
        self.properties.push((
            Property::Known(property),
            CssValue::Inherit.as_str().to_string(),
        ));
        self
    }

    pub fn add_percent(mut self, property: CssProperty, value: u32) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}%", value)));
        self
    }

    pub fn add_em(mut self, property: CssProperty, value: u32) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}em", value)));
        self
    }

    pub fn add_rem(mut self, property: CssProperty, value: u32) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}rem", value)));
        self
    }

    pub fn add_vw(mut self, property: CssProperty, value: u32) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}vw", value)));
        self
    }

    pub fn add_vh(mut self, property: CssProperty, value: u32) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}vh", value)));
        self
    }

    pub fn add_px_f64(mut self, property: CssProperty, pixels: f64) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}px", pixels)));
        self
    }

    pub fn add_percent_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}%", value)));
        self
    }

    pub fn add_em_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}em", value)));
        self
    }

    pub fn add_rem_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}rem", value)));
        self
    }

    pub fn add_vw_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}vw", value)));
        self
    }

    pub fn add_vh_f64(mut self, property: CssProperty, value: f64) -> Self {
        self.properties
            .push((Property::Known(property), format!("{}vh", value)));
        self
    }

    #[cfg(feature = "parse")]
    /// Add a CSS property with a type-safe `CssLength` value.
    ///
    /// # Example
    ///
    /// ```
    /// use tairitsu_style::{CssProperty, StyleBuilder};
    /// use super::values::CssLength;
    ///
    /// let style = StyleBuilder::new()
    ///     .add_length(CssProperty::Width, CssLength::px(100))
    ///     .add_length(CssProperty::Height, CssLength::vh(100))
    ///     .to_vdom_style();
    /// ```
    pub fn add_length(mut self, property: CssProperty, length: CssLength) -> Self {
        self.properties
            .push((Property::Known(property), length.to_css_string()));
        self
    }

    #[cfg(feature = "parse")]
    /// Add a CSS custom property (CSS variable) with a type-safe `CssLength` value.
    ///
    /// # Example
    ///
    /// ```
    /// use tairitsu_style::StyleBuilder;
    /// use super::values::CssLength;
    ///
    /// let style = StyleBuilder::new()
    ///     .add_var_with_length("glow-x", CssLength::percent(50))
    ///     .add_var_with_length("glow-y", CssLength::percent(50))
    ///     .to_vdom_style();
    /// ```
    pub fn add_var_with_length(mut self, name: &str, length: CssLength) -> Self {
        self.properties.push((
            Property::Custom(format!("--{}", name.trim_start_matches("--"))),
            length.to_css_string(),
        ));
        self
    }

    pub fn add_all(mut self, properties: &[(CssProperty, &str)]) -> Self {
        for &(property, value) in properties {
            self.properties
                .push((Property::Known(property), value.to_string()));
        }
        self
    }

    pub fn build_string<F>(f: F) -> String
    where
        F: FnOnce(StyleStringBuilder) -> StyleStringBuilder,
    {
        f(StyleStringBuilder::new()).build()
    }

    pub fn build_clean<F>(f: F) -> String
    where
        F: FnOnce(StyleStringBuilder) -> StyleStringBuilder,
    {
        f(StyleStringBuilder::new()).build_clean()
    }

    pub fn to_vdom_style(self) -> tairitsu_vdom::Style {
        let mut style = tairitsu_vdom::Style::new();
        for (property, value) in self.properties {
            let prop_str = property.as_str();
            match property {
                Property::Known(_) => {
                    style = style.add(prop_str, &value);
                }
                Property::Custom(_) => {
                    style = style.add_custom(prop_str, &value);
                }
            }
        }
        style
    }
}

impl Default for StyleBuilder {
    fn default() -> Self {
        Self::new()
    }
}