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
//! Defines several UI prompts, such as [Alert], [Prompt], and [EditorPrompt].

use ambient_cb::{cb, Cb};
use ambient_element::{element_component, use_state, Element, ElementComponentExt, Hooks};
use ambient_guest_bridge::{
    core::layout::{
        components::{align_vertical, space_between_items},
        types::Align,
    },
    ecs::World,
};

use crate::{
    button::{Button, ButtonStyle},
    default_theme::{StylesExt, STREET},
    editor::{Editor, TextEditor},
    layout::{FlowColumn, FlowRow},
    screens::DialogScreen,
    scroll_area::{ScrollArea, ScrollAreaSizing},
    text::Text,
};

#[element_component]
/// A full-screen alert dialog that the user must acknowledge.
///
/// If neither `on_ok` nor `on_cancel` are specified, the user will not be able to dismiss the alert.
pub fn Alert(
    _hooks: &mut Hooks,
    /// The title of the alert.
    title: String,
    /// The callback to set the screen to `None`.
    set_screen: Cb<dyn Fn(Option<Element>) + Sync + Send>,
    /// The callback to run when the user clicks "Ok".
    on_ok: Option<Cb<dyn Fn(&mut World) + Sync + Send>>,
    /// The callback to run when the user clicks "Cancel".
    on_cancel: Option<Cb<dyn Fn(&mut World) + Sync + Send>>,
) -> Element {
    DialogScreen(
        FlowColumn::el([
            Text::el(title).header_style(),
            FlowRow::el([
                if let Some(on_ok) = on_ok.clone() {
                    let set_screen = set_screen.clone();
                    Button::new("Ok", move |world| {
                        set_screen(None);
                        on_ok(world);
                    })
                    .style(ButtonStyle::Primary)
                    .el()
                } else {
                    Element::new()
                },
                if let Some(on_cancel) = on_cancel.clone() {
                    let set_screen = set_screen.clone();
                    Button::new("Cancel", move |world| {
                        set_screen(None);
                        on_cancel(world);
                    })
                    .style(ButtonStyle::Primary)
                    .el()
                } else {
                    Element::new()
                },
            ])
            .with(space_between_items(), STREET),
        ])
        .with(space_between_items(), STREET),
    )
    .el()
}
impl Alert {
    /// Creates a new `Alert`. At least one of `on_ok` or `on_cancel` must be specified.
    ///
    /// If `on_ok` or `on_cancel` are `Some`, the respective button will exist.
    pub fn new(
        title: impl Into<String>,
        set_screen: Cb<dyn Fn(Option<Element>) + Sync + Send>,
        on_ok: Option<Cb<dyn Fn(&mut World) + Sync + Send>>,
        on_cancel: Option<Cb<dyn Fn(&mut World) + Sync + Send>>,
    ) -> Self {
        assert!(on_ok.is_some() || on_cancel.is_some());
        Self {
            title: title.into(),
            set_screen,
            on_ok,
            on_cancel,
        }
    }
}

#[element_component]
/// A full-screen prompt dialog that the user must acknowledge.
pub fn Prompt(
    hooks: &mut Hooks,
    /// The title of the prompt.
    title: String,
    /// The placeholder text to display in the text editor.
    placeholder: Option<String>,
    /// The callback to run when the user clicks "Ok".
    on_ok: Cb<dyn Fn(&mut World, String) + Sync + Send>,
    /// The callback to run when the user clicks "Cancel".
    on_cancel: Option<Cb<dyn Fn(&mut World) + Sync + Send>>,
) -> Element {
    let (value, set_value) = use_state(hooks, "".to_string());
    DialogScreen(
        FlowColumn::el([
            Text::el(title).header_style(),
            TextEditor::new(value.clone(), set_value)
                .placeholder(placeholder.or(Some("Enter value".to_string())))
                .el(),
            FlowRow::el([
                Button::new("Ok", move |world| {
                    on_ok(world, value.clone());
                })
                .style(ButtonStyle::Primary)
                .el(),
                if let Some(on_cancel) = on_cancel {
                    Button::new("Cancel", move |world| {
                        on_cancel(world);
                    })
                    .style(ButtonStyle::Flat)
                    .el()
                } else {
                    Element::new()
                },
            ])
            .with(align_vertical(), Align::Center)
            .with(space_between_items(), STREET),
        ])
        .with(space_between_items(), STREET),
    )
    .el()
}

impl Prompt {
    /// Creates a new `Prompt` with the given title and callback.
    pub fn new(
        title: impl Into<String>,
        set_screen: Cb<dyn Fn(Option<Element>) + Sync + Send>,
        on_ok: impl Fn(&mut World, String) + Sync + Send + 'static,
    ) -> Self {
        Self {
            title: title.into(),
            placeholder: None,
            on_ok: cb(move |world, value| {
                on_ok(world, value);
                set_screen(None);
            }),
            on_cancel: None,
        }
    }

    /// Creates a new `Prompt` with the given title and callback, and a "Cancel" button that exits the prompt.
    pub fn new_cancelable(
        title: impl Into<String>,
        set_screen: Cb<dyn Fn(Option<Element>) + Sync + Send>,
        on_ok: impl Fn(&mut World, String) + Sync + Send + 'static,
    ) -> Self {
        Self {
            title: title.into(),
            placeholder: None,
            on_ok: cb({
                let set_screen = set_screen.clone();
                move |world, value| {
                    on_ok(world, value);
                    set_screen(None);
                }
            }),
            on_cancel: Some(cb(move |_| set_screen(None))),
        }
    }
    /// Sets the placeholder text to display in the text editor.
    pub fn placeholder(mut self, placeholder: impl Into<String>) -> Self {
        self.placeholder = Some(placeholder.into());
        self
    }
}

#[element_component]
/// A full-screen prompt dialog to edit a value.
pub fn EditorPrompt<T: Editor + std::fmt::Debug + Clone + Sync + Send + 'static>(
    hooks: &mut Hooks,
    /// The title of the prompt.
    title: String,
    /// The initial value to edit.
    value: T,
    /// The callback to set the screen to `None`.
    set_screen: Cb<dyn Fn(Option<Element>) + Sync + Send>,
    /// The callback to run when the user clicks "Ok".
    on_ok: Cb<dyn Fn(&mut World, T) + Sync + Send>,
    /// The callback to run when the user clicks "Cancel".
    on_cancel: Option<Cb<dyn Fn(&mut World) + Sync + Send>>,
    /// The validator to run on the value. If the validator returns `false`, the "Ok" button will be disabled.
    validator: Option<Cb<dyn Fn(&T) -> bool + Sync + Send>>,
) -> Element {
    let (value, set_value) = use_state(hooks, value);
    DialogScreen(ScrollArea::el(
        ScrollAreaSizing::FitParentWidth,
        FlowColumn::el([
            Text::el(title).header_style(),
            value.clone().editor(set_value, Default::default()),
            FlowRow(vec![
                Button::new("Ok", {
                    let set_screen = set_screen.clone();
                    let value = value.clone();
                    move |world| {
                        set_screen(None);
                        on_ok(world, value.clone());
                    }
                })
                .disabled(validator.map(|vv| !vv(&value)).unwrap_or(false))
                .style(ButtonStyle::Primary)
                .el(),
                if let Some(on_cancel) = on_cancel {
                    Button::new("Cancel", move |world| {
                        set_screen(None);
                        on_cancel(world);
                    })
                    .style(ButtonStyle::Flat)
                    .el()
                } else {
                    Element::new()
                },
            ])
            .el()
            .with(align_vertical(), Align::Center)
            .with(space_between_items(), STREET),
        ])
        .with(space_between_items(), STREET),
    ))
    .el()
}

impl<T: Editor + std::fmt::Debug + Clone + Sync + Send + 'static> EditorPrompt<T> {
    /// Creates a new `EditorPrompt` with the given title, value and callback.
    pub fn new(
        title: impl Into<String>,
        value: T,
        set_screen: Cb<dyn Fn(Option<Element>) + Sync + Send>,
        on_ok: impl Fn(&mut World, T) + Sync + Send + 'static,
    ) -> Self {
        Self {
            title: title.into(),
            value,
            set_screen,
            on_ok: cb(on_ok),
            on_cancel: None,
            validator: None,
        }
    }
}