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
//! Zero-boilerplate layout prototyping.
//!
//! Use [`Mockup`] or the `mockup!` macro to preview a UI layout
//! without defining `Message`, `State`, or `update()` logic.
//!
//! # Example
//!
//! ```rust,no_run
//! use tui_lipan::prelude::*;
//!
//! fn main() -> Result<()> {
//! mockup!("Dashboard", {
//! Frame::new()
//! .title("Panel")
//! .border(true)
//! .child(Text::new("Hello!"))
//! })
//! }
//! ```
use crate;
use crateElement;
use crate;
/// A view-only component wrapper for rapid UI prototyping.
///
/// `Mockup` wraps a closure that returns an [`Element`] tree and provides
/// the full [`Component`] implementation automatically. No messages,
/// no state, no `update()` - just the view.
///
/// Press `Esc` or `q` to quit.
///
/// # Usage
///
/// Use directly with `App`:
///
/// ```rust,no_run
/// use tui_lipan::prelude::*;
///
/// fn main() -> Result<()> {
/// App::new()
/// .title("My Layout")
/// .mount(Mockup::new(|| {
/// Frame::new()
/// .title("Hello")
/// .border(true)
/// .child(Text::new("World"))
/// .into()
/// }))
/// .run()
/// }
/// ```
///
/// Or use the `mockup!` macro for even less boilerplate:
///
/// ```rust,no_run
/// use tui_lipan::prelude::*;
///
/// fn main() -> Result<()> {
/// mockup!("My Layout", {
/// Frame::new()
/// .title("Hello")
/// .border(true)
/// .child(Text::new("World"))
/// })
/// }
/// ```