freya-components 0.4.0-rc.14

Components for Freya apps
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
use freya_core::prelude::*;
use torin::{
    gaps::Gaps,
    size::Size,
};

#[cfg(feature = "calendar")]
use crate::calendar::Calendar;
#[cfg(feature = "router")]
use crate::link::Link;
#[cfg(feature = "markdown")]
use crate::markdown::MarkdownViewer;
#[cfg(feature = "titlebar")]
use crate::titlebar::TitlebarButton;
use crate::{
    accordion::Accordion,
    button::Button,
    card::Card,
    checkbox::Checkbox,
    chip::Chip,
    color_picker::ColorPicker,
    define_theme,
    floating_tab::FloatingTab,
    input::Input,
    loader::CircularLoader,
    menu::{
        MenuContainer,
        MenuItem,
    },
    popup::Popup,
    progressbar::ProgressBar,
    radio_item::RadioItem,
    resizable_container::ResizableHandle,
    scrollviews::ScrollBar,
    segmented_button::{
        ButtonSegment,
        SegmentedButton,
    },
    select::Select,
    sidebar::SideBarItem,
    slider::Slider,
    switch::Switch,
    table::Table,
    theming::themes::LIGHT_THEME,
    tooltip::Tooltip,
};

#[derive(Clone, Debug, PartialEq)]
pub struct Theme {
    pub name: &'static str,
    pub colors: ColorsSheet,
    pub button_layout: ButtonLayoutThemePreference,
    pub compact_button_layout: ButtonLayoutThemePreference,
    pub expanded_button_layout: ButtonLayoutThemePreference,
    pub button: ButtonColorsThemePreference,
    pub filled_button: ButtonColorsThemePreference,
    pub outline_button: ButtonColorsThemePreference,
    pub flat_button: ButtonColorsThemePreference,
    pub card_layout: CardLayoutThemePreference,
    pub compact_card_layout: CardLayoutThemePreference,
    pub filled_card: CardColorsThemePreference,
    pub outline_card: CardColorsThemePreference,
    pub accordion: AccordionThemePreference,
    pub switch: SwitchThemePreference,
    pub scrollbar: ScrollBarThemePreference,
    pub progressbar: ProgressBarThemePreference,
    pub sidebar_item: SideBarItemThemePreference,
    #[cfg(feature = "router")]
    pub link: LinkThemePreference,
    pub tooltip: TooltipThemePreference,
    pub circular_loader: CircularLoaderThemePreference,
    pub input_layout: InputLayoutThemePreference,
    pub compact_input_layout: InputLayoutThemePreference,
    pub expanded_input_layout: InputLayoutThemePreference,
    pub input: InputColorsThemePreference,
    pub filled_input: InputColorsThemePreference,
    pub flat_input: InputColorsThemePreference,
    pub radio: RadioItemThemePreference,
    pub checkbox: CheckboxThemePreference,
    pub resizable_handle: ResizableHandleThemePreference,
    pub floating_tab: FloatingTabThemePreference,
    pub slider: SliderThemePreference,
    pub color_picker: ColorPickerThemePreference,
    pub select: SelectThemePreference,
    pub popup: PopupThemePreference,
    pub table: TableThemePreference,
    #[cfg(feature = "markdown")]
    pub markdown_viewer: MarkdownViewerThemePreference,
    pub chip: ChipThemePreference,
    pub menu_item: MenuItemThemePreference,
    pub menu_container: MenuContainerThemePreference,
    pub button_segment: ButtonSegmentThemePreference,
    pub segmented_button: SegmentedButtonThemePreference,
    #[cfg(feature = "calendar")]
    pub calendar: CalendarThemePreference,
    #[cfg(feature = "titlebar")]
    pub titlebar_button: TitlebarButtonThemePreference,
}

impl Default for Theme {
    fn default() -> Self {
        LIGHT_THEME
    }
}

#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ColorsSheet {
    // Brand & Accent
    pub primary: Color,
    pub secondary: Color,
    pub tertiary: Color,

    // Status / Semantic colors
    pub success: Color,
    pub warning: Color,
    pub error: Color,
    pub info: Color,

    // Surfaces / Backgrounds
    pub background: Color,
    pub surface_primary: Color,
    pub surface_secondary: Color,
    pub surface_tertiary: Color,
    pub surface_inverse: Color,
    pub surface_inverse_secondary: Color,
    pub surface_inverse_tertiary: Color,

    // Borders
    pub border: Color,
    pub border_focus: Color,
    pub border_disabled: Color,

    // Text / Content
    pub text_primary: Color,
    pub text_secondary: Color,
    pub text_placeholder: Color,
    pub text_inverse: Color,
    pub text_highlight: Color,

    // States / Interaction
    pub hover: Color,
    pub focus: Color,
    pub active: Color,
    pub disabled: Color,

    // Utility
    pub overlay: Color,
    pub shadow: Color,
}

define_theme! {
    for = Button;
    theme_field = theme_layout;

    %[component]
    pub ButtonLayout {
        %[fields]
        margin: Gaps,
        corner_radius: CornerRadius,
        width: Size,
        height: Size,
        padding: Gaps,
    }
}

define_theme! {
    for = Button;
    theme_field = theme_colors;

    %[component]
    pub ButtonColors {
        %[fields]
        background: Color,
        hover_background: Color,
        border_fill: Color,
        focus_border_fill: Color,
        color: Color,
    }
}

define_theme! {
    for = Card;
    theme_field = theme_layout;

    %[component]
    pub CardLayout {
        %[fields]
        corner_radius: CornerRadius,
        padding: Gaps,
    }
}

define_theme! {
    for = Card;
    theme_field = theme_colors;

    %[component]
    pub CardColors {
        %[fields]
        background: Color,
        hover_background: Color,
        border_fill: Color,
        color: Color,
        shadow: Color,
    }
}

define_theme! {
    %[component]
    pub Accordion {
        %[fields]
        color: Color,
        background: Color,
        border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub Switch {
        %[fields]
        margin: Gaps,
        background: Color,
        thumb_background: Color,
        toggled_background: Color,
        toggled_thumb_background: Color,
        focus_border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub ScrollBar {
        %[fields]
        background: Color,
        thumb_background: Color,
        hover_thumb_background: Color,
        active_thumb_background: Color,
        size: f32,
    }
}

define_theme! {
    %[component]
    pub ProgressBar {
        %[fields]
        color: Color,
        background: Color,
        progress_background: Color,
        height: f32,
    }
}

define_theme! {
    %[component]
    pub SideBarItem {
        %[fields]
        color: Color,
        background: Color,
        hover_background: Color,
        active_background: Color,
        corner_radius: CornerRadius,
        margin: Gaps,
        padding: Gaps,
    }
}

#[cfg(feature = "router")]
define_theme! {
    %[component]
    pub Link {
        %[fields]
        color: Color,
    }
}

define_theme! {
    %[component]
    pub Tooltip {
        %[fields]
        color: Color,
        background: Color,
        border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub CircularLoader {
        %[fields]
        primary_color: Color,
        inversed_color: Color,
    }
}

define_theme! {
    for = Input;
    theme_field = theme_layout;

    %[component]
    pub InputLayout {
        %[fields]
        corner_radius: CornerRadius,
        inner_margin: Gaps,
    }
}

define_theme! {
    for = Input;
    theme_field = theme_colors;

    %[component]
    pub InputColors {
        %[fields]
        background: Color,
        hover_background: Color,
        border_fill: Color,
        focus_border_fill: Color,
        color: Color,
        placeholder_color: Color,
    }
}

define_theme! {
    %[component]
    pub RadioItem {
        %[fields]
        unselected_fill: Color,
        selected_fill: Color,
        border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub Checkbox {
        %[fields]
        unselected_fill: Color,
        selected_fill: Color,
        selected_icon_fill: Color,
        border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub ResizableHandle {
        %[fields]
        background: Color,
        hover_background: Color,
        corner_radius: CornerRadius,
    }
}

define_theme! {
    %[component]
    pub FloatingTab {
        %[fields]
        background: Color,
        hover_background: Color,
        width: Size,
        height: Size,
        padding: Gaps,
        color: Color,
    }
}

define_theme! {
    %[component]
    pub Slider {
        %[fields]
        background: Color,
        thumb_background: Color,
        thumb_inner_background: Color,
        border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub ColorPicker {
        %[fields]
        background: Color,
        color: Color,
        border_fill: Color,
    }
}

define_theme! {
    %[component]
    pub Select {
        %[fields]
        width: Size,
        margin: Gaps,
        select_background: Color,
        background_button: Color,
        hover_background: Color,
        border_fill: Color,
        focus_border_fill: Color,
        arrow_fill: Color,
        color: Color,
    }
}

define_theme! {
    %[component]
    pub Popup {
        %[fields]
        background: Color,
        color: Color,
    }
}

define_theme! {
    %[component]
    pub Table {
        %[fields]
        background: Color,
        arrow_fill: Color,
        hover_row_background: Color,
        row_background: Color,
        divider_fill: Color,
        corner_radius: CornerRadius,
        color: Color,
    }
}

#[cfg(feature = "markdown")]
define_theme! {
    %[component]
    pub MarkdownViewer {
        %[fields]
        color: Color,
        background_code: Color,
        color_code: Color,
        background_blockquote: Color,
        border_blockquote: Color,
        background_divider: Color,
        heading_h1: f32,
        heading_h2: f32,
        heading_h3: f32,
        heading_h4: f32,
        heading_h5: f32,
        heading_h6: f32,
        paragraph_size: f32,
        code_font_size: f32,
        table_font_size: f32,
    }
}

define_theme! {
    %[component]
    pub Chip {
        %[fields]
        background: Color,
        hover_background: Color,
        selected_background: Color,
        border_fill: Color,
        selected_border_fill: Color,
        hover_border_fill: Color,
        focus_border_fill: Color,
        margin: f32,
        corner_radius: CornerRadius,
        width: Size,
        height: Size,
        padding: Gaps,
        color: Color,
        hover_color: Color,
        selected_color: Color,
        selected_icon_fill: Color,
        hover_icon_fill: Color,
    }
}

define_theme! {
    %[component]
    pub MenuContainer {
        %[fields]
        background: Color,
        padding: Gaps,
        shadow: Color,
        border_fill: Color,
        corner_radius: CornerRadius,
    }
}

define_theme! {
    %[component]
    pub MenuItem {
       %[fields]
        background: Color,
        hover_background: Color,
        select_background: Color,
        border_fill: Color,
        select_border_fill: Color,
        corner_radius: CornerRadius,
        color: Color,
    }
}

define_theme! {
    %[component]
    pub ButtonSegment {
        %[fields]
        background: Color,
        hover_background: Color,
        disabled_background: Color,
        selected_background: Color,
        focus_background: Color,
        padding: Gaps,
        selected_padding: Gaps,
        width: Size,
        height: Size,
        color: Color,
        selected_icon_fill: Color,
    }
}

define_theme! {
    %[component]
    pub SegmentedButton {
        %[fields]
        background: Color,
        border_fill: Color,
        corner_radius: CornerRadius,
    }
}

#[cfg(feature = "calendar")]
define_theme! {
    %[component]
    pub Calendar {
        %[fields]
        background: Color,
        day_background: Color,
        day_hover_background: Color,
        day_selected_background: Color,
        color: Color,
        day_other_month_color: Color,
        header_color: Color,
        corner_radius: CornerRadius,
        padding: Gaps,
        day_corner_radius: CornerRadius,
        nav_button_hover_background: Color,
    }
}

#[cfg(feature = "titlebar")]
define_theme! {
    %[component]
    pub TitlebarButton {
        %[fields]
        background: Color,
        hover_background: Color,
        corner_radius: CornerRadius,
        width: Size,
        height: Size,
    }
}