twill 0.2.0

Idiomatic Rust styling library inspired by Tailwind CSS for GUI
Documentation
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
//! Spacing utilities for padding and margin.

use crate::tokens::Spacing;
use crate::traits::ToCss;

/// Padding utility.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct Padding {
    pub top: Option<Spacing>,
    pub right: Option<Spacing>,
    pub bottom: Option<Spacing>,
    pub left: Option<Spacing>,
}

impl Padding {
    pub fn new() -> Self {
        Self::default()
    }

    /// All sides same value
    pub fn all(value: Spacing) -> Self {
        Self {
            top: Some(value),
            right: Some(value),
            bottom: Some(value),
            left: Some(value),
        }
    }

    /// Horizontal and vertical
    pub fn symmetric(vertical: Spacing, horizontal: Spacing) -> Self {
        Self {
            top: Some(vertical),
            right: Some(horizontal),
            bottom: Some(vertical),
            left: Some(horizontal),
        }
    }

    /// Individual sides
    pub fn individual(top: Spacing, right: Spacing, bottom: Spacing, left: Spacing) -> Self {
        Self {
            top: Some(top),
            right: Some(right),
            bottom: Some(bottom),
            left: Some(left),
        }
    }

    /// Only horizontal (x)
    pub fn x(value: Spacing) -> Self {
        Self {
            top: None,
            right: Some(value),
            bottom: None,
            left: Some(value),
        }
    }

    /// Only vertical (y)
    pub fn y(value: Spacing) -> Self {
        Self {
            top: Some(value),
            right: None,
            bottom: Some(value),
            left: None,
        }
    }

    /// Top only
    pub fn top(value: Spacing) -> Self {
        Self {
            top: Some(value),
            right: None,
            bottom: None,
            left: None,
        }
    }

    /// Right only
    pub fn right(value: Spacing) -> Self {
        Self {
            top: None,
            right: Some(value),
            bottom: None,
            left: None,
        }
    }

    /// Bottom only
    pub fn bottom(value: Spacing) -> Self {
        Self {
            top: None,
            right: None,
            bottom: Some(value),
            left: None,
        }
    }

    /// Left only
    pub fn left(value: Spacing) -> Self {
        Self {
            top: None,
            right: None,
            bottom: None,
            left: Some(value),
        }
    }
}

impl ToCss for Padding {
    fn to_css(&self) -> String {
        let has_xy = self.top.is_some()
            && self.right.is_some()
            && self.bottom.is_some()
            && self.left.is_some()
            && self.top == self.bottom
            && self.right == self.left;

        if has_xy && self.top == self.right {
            // All same
            return format!("padding: {}", self.top.unwrap().to_css());
        }

        if has_xy {
            // Symmetric
            return format!(
                "padding: {} {}",
                self.top.unwrap().to_css(),
                self.right.unwrap().to_css()
            );
        }

        let mut props = Vec::new();
        if let Some(v) = self.top {
            props.push(format!("padding-top: {}", v.to_css()));
        }
        if let Some(v) = self.right {
            props.push(format!("padding-right: {}", v.to_css()));
        }
        if let Some(v) = self.bottom {
            props.push(format!("padding-bottom: {}", v.to_css()));
        }
        if let Some(v) = self.left {
            props.push(format!("padding-left: {}", v.to_css()));
        }
        props.join("; ")
    }
}

/// Margin utility.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct Margin {
    pub top: Option<Spacing>,
    pub right: Option<Spacing>,
    pub bottom: Option<Spacing>,
    pub left: Option<Spacing>,
}

impl Margin {
    pub fn new() -> Self {
        Self::default()
    }

    /// All sides same value
    pub fn all(value: Spacing) -> Self {
        Self {
            top: Some(value),
            right: Some(value),
            bottom: Some(value),
            left: Some(value),
        }
    }

    /// Horizontal and vertical
    pub fn symmetric(vertical: Spacing, horizontal: Spacing) -> Self {
        Self {
            top: Some(vertical),
            right: Some(horizontal),
            bottom: Some(vertical),
            left: Some(horizontal),
        }
    }

    /// Individual sides
    pub fn individual(top: Spacing, right: Spacing, bottom: Spacing, left: Spacing) -> Self {
        Self {
            top: Some(top),
            right: Some(right),
            bottom: Some(bottom),
            left: Some(left),
        }
    }

    /// Only horizontal (x)
    pub fn x(value: Spacing) -> Self {
        Self {
            top: None,
            right: Some(value),
            bottom: None,
            left: Some(value),
        }
    }

    /// Only vertical (y)
    pub fn y(value: Spacing) -> Self {
        Self {
            top: Some(value),
            right: None,
            bottom: Some(value),
            left: None,
        }
    }

    /// Top only
    pub fn top(value: Spacing) -> Self {
        Self {
            top: Some(value),
            right: None,
            bottom: None,
            left: None,
        }
    }

    /// Right only
    pub fn right(value: Spacing) -> Self {
        Self {
            top: None,
            right: Some(value),
            bottom: None,
            left: None,
        }
    }

    /// Bottom only
    pub fn bottom(value: Spacing) -> Self {
        Self {
            top: None,
            right: None,
            bottom: Some(value),
            left: None,
        }
    }

    /// Left only
    pub fn left(value: Spacing) -> Self {
        Self {
            top: None,
            right: None,
            bottom: None,
            left: Some(value),
        }
    }

    /// Auto margins (center horizontally)
    pub fn auto_x() -> Self {
        Self {
            top: None,
            right: Some(Spacing::Auto),
            bottom: None,
            left: Some(Spacing::Auto),
        }
    }

    /// Auto margins (center vertically)
    pub fn auto_y() -> Self {
        Self {
            top: Some(Spacing::Auto),
            right: None,
            bottom: Some(Spacing::Auto),
            left: None,
        }
    }

    /// Auto all
    pub fn auto() -> Self {
        Self::all(Spacing::Auto)
    }
}

impl ToCss for Margin {
    fn to_css(&self) -> String {
        let has_xy = self.top.is_some()
            && self.right.is_some()
            && self.bottom.is_some()
            && self.left.is_some()
            && self.top == self.bottom
            && self.right == self.left;

        if has_xy && self.top == self.right {
            return format!("margin: {}", self.top.unwrap().to_css());
        }

        if has_xy {
            return format!(
                "margin: {} {}",
                self.top.unwrap().to_css(),
                self.right.unwrap().to_css()
            );
        }

        let mut props = Vec::new();
        if let Some(v) = self.top {
            props.push(format!("margin-top: {}", v.to_css()));
        }
        if let Some(v) = self.right {
            props.push(format!("margin-right: {}", v.to_css()));
        }
        if let Some(v) = self.bottom {
            props.push(format!("margin-bottom: {}", v.to_css()));
        }
        if let Some(v) = self.left {
            props.push(format!("margin-left: {}", v.to_css()));
        }
        props.join("; ")
    }
}

/// Size utility (width/height).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Size {
    Spacing(Spacing),
    Percentage(crate::tokens::Percentage),
    Auto,
    Full,
    Screen,
    MinContent,
    MaxContent,
    Fit,
}

impl ToCss for Size {
    fn to_css(&self) -> String {
        match self {
            Size::Spacing(s) => s.to_css(),
            Size::Percentage(p) => p.to_css(),
            Size::Auto => "auto".to_string(),
            Size::Full => "100%".to_string(),
            Size::Screen => "100vh".to_string(),
            Size::MinContent => "min-content".to_string(),
            Size::MaxContent => "max-content".to_string(),
            Size::Fit => "fit-content".to_string(),
        }
    }
}

/// Width utility.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct Width(pub Option<Size>);

impl Width {
    pub fn new(size: Size) -> Self {
        Self(Some(size))
    }
    pub fn full() -> Self {
        Self(Some(Size::Full))
    }
    pub fn auto() -> Self {
        Self(Some(Size::Auto))
    }
    pub fn screen() -> Self {
        Self(Some(Size::Screen))
    }
}

impl ToCss for Width {
    fn to_css(&self) -> String {
        match &self.0 {
            Some(s) => format!("width: {}", s.to_css()),
            None => String::new(),
        }
    }
}

/// Height utility.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct Height(pub Option<Size>);

impl Height {
    pub fn new(size: Size) -> Self {
        Self(Some(size))
    }
    pub fn full() -> Self {
        Self(Some(Size::Full))
    }
    pub fn auto() -> Self {
        Self(Some(Size::Auto))
    }
    pub fn screen() -> Self {
        Self(Some(Size::Screen))
    }
}

impl ToCss for Height {
    fn to_css(&self) -> String {
        match &self.0 {
            Some(s) => format!("height: {}", s.to_css()),
            None => String::new(),
        }
    }
}

/// Min/Max width constraints.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct SizeConstraints {
    pub min_width: Option<Size>,
    pub max_width: Option<Size>,
    pub min_height: Option<Size>,
    pub max_height: Option<Size>,
}

impl SizeConstraints {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn min_width(mut self, size: Size) -> Self {
        self.min_width = Some(size);
        self
    }
    pub fn max_width(mut self, size: Size) -> Self {
        self.max_width = Some(size);
        self
    }
    pub fn min_height(mut self, size: Size) -> Self {
        self.min_height = Some(size);
        self
    }
    pub fn max_height(mut self, size: Size) -> Self {
        self.max_height = Some(size);
        self
    }
}

impl ToCss for SizeConstraints {
    fn to_css(&self) -> String {
        let mut props = Vec::new();
        if let Some(v) = &self.min_width {
            props.push(format!("min-width: {}", v.to_css()));
        }
        if let Some(v) = &self.max_width {
            props.push(format!("max-width: {}", v.to_css()));
        }
        if let Some(v) = &self.min_height {
            props.push(format!("min-height: {}", v.to_css()));
        }
        if let Some(v) = &self.max_height {
            props.push(format!("max-height: {}", v.to_css()));
        }
        props.join("; ")
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_padding_all() {
        let p = Padding::all(Spacing::S4);
        assert_eq!(p.to_css(), "padding: 1rem");
    }

    #[test]
    fn test_padding_symmetric() {
        let p = Padding::symmetric(Spacing::S2, Spacing::S4);
        assert_eq!(p.to_css(), "padding: 0.5rem 1rem");
    }

    #[test]
    fn test_margin_auto() {
        let m = Margin::auto_x();
        assert_eq!(m.to_css(), "margin-right: auto; margin-left: auto");
    }
}