euv-example 0.5.13

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
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
use crate::*;

/// Renders a navigation item link with active state styling.
///
/// # Arguments
///
/// - `NavItemProps` - The typed props containing route signal, label, and target.
/// - `VirtualNode` - The children nodes.
///
/// # Returns
///
/// - `VirtualNode` - The navigation item virtual DOM tree.
#[component]
pub(crate) fn nav_item(node: VirtualNode<NavItemProps>) -> VirtualNode {
    let NavItemProps {
        route_signal,
        label,
        target,
    } = node.try_get_props().unwrap_or_default();
    let target_string: String = target.to_string();
    let current_route_value: String = route_signal.get();
    let is_active: bool = current_route_value == target;
    html! {
        a {
            href: format!("#{target_string}")
            class: if { is_active } { c_nav_item_active() } else { c_nav_item_inactive() }
            onclick: link_handler(target_string)
            label
        }
    }
}

/// Renders a mobile navigation item link that closes the drawer on navigation.
///
/// # Arguments
///
/// - `MobileNavItemProps` - The typed props containing route signal, drawer open signal, label, and target.
/// - `VirtualNode` - The children nodes.
///
/// # Returns
///
/// - `VirtualNode` - The mobile navigation item virtual DOM tree.
#[component]
pub(crate) fn mobile_nav_item(node: VirtualNode<MobileNavItemProps>) -> VirtualNode {
    let MobileNavItemProps {
        route_signal,
        drawer_open,
        label,
        target,
    } = node.try_get_props().unwrap_or_default();
    let target_string: String = target.to_string();
    let current_route_value: String = route_signal.get();
    let is_active: bool = current_route_value == target;
    let nav_target: String = target_string.clone();
    html! {
        a {
            href: format!("#{target_string}")
            class: if { is_active } { c_nav_item_active() } else { c_nav_item_inactive() }
            onclick: move |_event: Event| {
                navigate(&nav_target);
                drawer_open.set(false);
            }
            label
        }
    }
}

/// Builds the navigation items list for the desktop sidebar.
///
/// # Arguments
///
/// - `BuildDesktopNavItemsProps` - The typed props containing the route signal.
/// - `VirtualNode` - The children nodes.
///
/// # Returns
///
/// - `VirtualNode` - The scrollable nav items container virtual DOM tree.
#[component]
pub(crate) fn build_desktop_nav_items(node: VirtualNode<BuildDesktopNavItemsProps>) -> VirtualNode {
    let BuildDesktopNavItemsProps { route_signal } = node.try_get_props().unwrap_or_default();
    html! {
        div {
            class: c_nav_items_scroll()
            nav_item {
                route_signal: route_signal
                label: "Signals"
                target: "/signals"
            }
            nav_item {
                route_signal: route_signal
                label: "Event"
                target: "/event"
            }
            nav_item {
                route_signal: route_signal
                label: "List"
                target: "/list"
            }
            nav_item {
                route_signal: route_signal
                label: "Observer"
                target: "/observer"
            }
            nav_item {
                route_signal: route_signal
                label: "Conditional"
                target: "/conditional"
            }
            nav_item {
                route_signal: route_signal
                label: "Modal"
                target: "/modal"
            }
            nav_item {
                route_signal: route_signal
                label: "Select"
                target: "/select"
            }
            nav_item {
                route_signal: route_signal
                label: "Async"
                target: "/async"
            }
            nav_item {
                route_signal: route_signal
                label: "Form"
                target: "/form"
            }
            nav_item {
                route_signal: route_signal
                label: "File Upload"
                target: "/file-upload"
            }
            nav_item {
                route_signal: route_signal
                label: "Timer"
                target: "/timer"
            }
            nav_item {
                route_signal: route_signal
                label: "Animation"
                target: "/animation"
            }
            nav_item {
                route_signal: route_signal
                label: "Browser"
                target: "/browser"
            }
            nav_item {
                route_signal: route_signal
                label: "Lifecycle"
                target: "/lifecycle"
            }
            nav_item {
                route_signal: route_signal
                label: "Keep-Alive"
                target: "/keep-alive"
            }
            nav_item {
                route_signal: route_signal
                label: "Component Binding"
                target: "/component-binding"
            }
            nav_item {
                route_signal: route_signal
                label: "Custom Attrs"
                target: "/custom-attrs"
            }
            nav_item {
                route_signal: route_signal
                label: "Dynamic Component"
                target: "/dynamic-component"
            }
            nav_item {
                route_signal: route_signal
                label: "Virtual List"
                target: "/virtual-list"
            }
        }
    }
}

/// Builds the navigation items list for the mobile drawer.
///
/// Navigation items close the drawer on click.
///
/// # Arguments
///
/// - `BuildMobileNavItemsProps` - The typed props containing route signal and drawer open signal.
/// - `VirtualNode` - The children nodes.
///
/// # Returns
///
/// - `VirtualNode` - The scrollable nav items container virtual DOM tree.
#[component]
pub(crate) fn build_mobile_nav_items(node: VirtualNode<BuildMobileNavItemsProps>) -> VirtualNode {
    let BuildMobileNavItemsProps {
        route_signal,
        drawer_open,
    } = node.try_get_props().unwrap_or_default();
    html! {
        div {
            class: c_nav_items_scroll()
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Signals"
                target: "/signals"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Event"
                target: "/event"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "List"
                target: "/list"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Observer"
                target: "/observer"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Conditional"
                target: "/conditional"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Modal"
                target: "/modal"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Select"
                target: "/select"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Async"
                target: "/async"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Form"
                target: "/form"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "File Upload"
                target: "/file-upload"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Timer"
                target: "/timer"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Animation"
                target: "/animation"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Browser"
                target: "/browser"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Lifecycle"
                target: "/lifecycle"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Keep-Alive"
                target: "/keep-alive"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Component Binding"
                target: "/component-binding"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Custom Attrs"
                target: "/custom-attrs"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Dynamic Component"
                target: "/dynamic-component"
            }
            mobile_nav_item {
                route_signal: route_signal
                drawer_open: drawer_open
                label: "Virtual List"
                target: "/virtual-list"
            }
        }
    }
}

/// Renders the desktop layout with a persistent left sidebar navigation.
///
/// # Arguments
///
/// - `DesktopLayoutProps` - The typed props containing route, theme, root class, and panel signals.
/// - `VirtualNode` - The children nodes.
///
/// # Returns
///
/// - `VirtualNode` - The desktop application shell virtual DOM tree.
#[component]
pub(crate) fn desktop_layout(node: VirtualNode<DesktopLayoutProps>) -> VirtualNode {
    let DesktopLayoutProps {
        route_signal,
        theme_signal,
        root_class_signal,
        panel_open,
    } = node.try_get_props().unwrap_or_default();
    html! {
        div {
            class: root_class_signal
            nav {
                class: c_app_nav()
                a {
                    href: "https://github.com/euv-dev/euv"
                    target: "_blank"
                    class: c_nav_header()
                    logo_button {
                        variant: LogoButtonVariant::Nav
                    }
                    span {
                        class: c_nav_brand_title()
                        "Euv"
                    }
                }
                p {
                    class: c_nav_section_label()
                    "Pages"
                }
                build_desktop_nav_items {
                    route_signal: route_signal
                }
                div {
                    class: c_nav_theme_toggle()
                    button {
                        class: c_nav_theme_button()
                        onclick: toggle_theme(theme_signal)
                        div {
                            class: if { theme_signal.get() == THEME_DARK } { c_theme_icon_sun() } else { c_theme_icon_moon() }
                        }
                    }
                }
                a {
                    href: "https://github.com/euv-dev/euv"
                    target: "_blank"
                    class: c_nav_footer()
                    "Built with Euv & WASM"
                }
            }
            main {
                class: c_app_main()
                page_router {
                    route_signal
                }
            }
            vconsole_panel {
                panel_open
            }
        }
    }
}

/// Renders the mobile layout with a top header bar and a slide-out navigation drawer.
///
/// # Arguments
///
/// - `MobileLayoutProps` - The typed props containing route, theme, root class, panel, and drawer signals.
/// - `VirtualNode` - The children nodes.
///
/// # Returns
///
/// - `VirtualNode` - The mobile application shell virtual DOM tree.
#[component]
pub(crate) fn mobile_layout(node: VirtualNode<MobileLayoutProps>) -> VirtualNode {
    let MobileLayoutProps {
        route_signal,
        theme_signal,
        root_class_signal,
        panel_open,
        drawer_open,
    } = node.try_get_props().unwrap_or_default();
    html! {
        div {
            class: root_class_signal
            header {
                class: c_mobile_header()
                div {
                    class: c_mobile_header_left()
                    button {
                        class: if { drawer_open.get() } { c_mobile_menu_button_active() } else { c_mobile_menu_button() }
                        onclick: use_toggle(drawer_open)
                        ""
                    }
                    logo_button {
                        variant: LogoButtonVariant::Nav
                    }
                    span {
                        class: c_nav_brand_title()
                        "Euv"
                    }
                }
                button {
                    class: c_mobile_theme_button()
                    onclick: toggle_theme(theme_signal)
                    div {
                        class: if { theme_signal.get() == THEME_DARK } { c_theme_icon_sun() } else { c_theme_icon_moon() }
                    }
                }
            }
            main {
                class: c_mobile_main()
                page_router {
                    route_signal
                }
            }
            vconsole_panel {
                panel_open
            }
            if { drawer_open.get() } {
                div {
                    class: c_mobile_overlay()
                    onclick: move |_event: Event| {
                        drawer_open.set(false);
                    }
                }
                nav {
                    class: c_mobile_nav_drawer()
                    div {
                        class: c_mobile_nav_drawer_header()
                        div {
                            class: c_mobile_header_left()
                            button {
                                class: c_mobile_menu_button_active()
                                onclick: use_toggle(drawer_open)
                                ""
                            }
                            logo_button {
                                variant: LogoButtonVariant::Nav
                            }
                            span {
                                class: c_nav_brand_title()
                                "Euv"
                            }
                        }
                        button {
                            class: c_mobile_menu_button()
                            onclick: move |_event: Event| {
                                drawer_open.set(false);
                            }
                            ""
                        }
                    }
                    p {
                        class: c_nav_section_label()
                        "Pages"
                    }
                    build_mobile_nav_items {
                        route_signal: route_signal
                        drawer_open: drawer_open
                    }
                    div {
                        class: c_nav_theme_toggle()
                        button {
                            class: c_nav_theme_button()
                            onclick: toggle_theme(theme_signal)
                            div {
                                class: if { theme_signal.get() == THEME_DARK } { c_theme_icon_sun() } else { c_theme_icon_moon() }
                            }
                        }
                    }
                    a {
                        href: "https://github.com/euv-dev/euv"
                        target: "_blank"
                        class: c_nav_footer()
                        "Built with Euv & WASM"
                    }
                }
            }
        }
    }
}

/// Renders the application shell with navigation and route-based page content.
///
/// Detects viewport size and switches between desktop sidebar layout and
/// mobile header + drawer layout accordingly.
///
/// # Returns
///
/// - `VirtualNode` - The root application virtual DOM tree.
pub(crate) fn app() -> VirtualNode {
    init_console();
    let route_signal: Signal<String> = use_signal(current_route);
    let panel_open: Signal<bool> = use_signal(|| false);
    let drawer_open: Signal<bool> = use_signal(|| false);
    let mobile_signal: Signal<bool> = use_resize();
    let theme_state: ThemeState = use_theme(mobile_signal);
    let theme_signal: Signal<String> = theme_state.get_theme();
    let root_class_signal: Signal<String> = theme_state.get_root_class();
    use_hash_change(route_signal);
    use_scroll_to_top(route_signal);
    use_pop_state(panel_open);
    use_scroll_drawer_to_active(drawer_open);
    html! {
        if { mobile_signal.get() } {
            mobile_layout {
                route_signal
                theme_signal
                root_class_signal
                panel_open
                drawer_open
            }
        } else {
            desktop_layout {
                route_signal
                theme_signal
                root_class_signal
                panel_open
            }
        }
    }
}