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
use std::time::Duration;

use leptos::{
    ev::{click, focus, keydown},
    html::Div,
    *,
};
use leptos_use::use_event_listener;
use wasm_bindgen::JsCast;
use web_sys::{HtmlAnchorElement, HtmlButtonElement};

use crate::{
    cn,
    components::menubar::context::ItemData,
    custom_animated_show::CustomAnimatedShow,
    items::{Focus, GetIndex, ManageFocus, NavigateItems, Toggle},
};

use super::context::{MenuContext, RootContext};

#[component]
pub fn Item(
    #[prop(default = false)] disabled: bool,
    #[prop(into, optional)] class: String,
    children: Children,
) -> impl IntoView {
    let menu_ctx = expect_context::<MenuContext>();

    let item_ctx = use_context::<ItemData>();

    let trigger_ref = create_node_ref::<Div>();

    let index = menu_ctx.next_index();

    let item_ctx = ItemData::Item {
        index,
        disabled,
        trigger_ref,
        is_submenu: item_ctx.is_some(),
    };

    menu_ctx.upsert_item(index, item_ctx);

    on_cleanup(move || {
        menu_ctx.remove_item(index);
    });

    view! {
        <Provider value={item_ctx}>
            <ItemTriggerEvents>
                <div
                    node_ref={trigger_ref}
                    class={class}
                    tabindex=0
                    data-state={item_ctx.get_index()}
                    data-disabled={item_ctx.get_disabled()}
                    data-highlighted={move || menu_ctx.item_in_focus(item_ctx.get_index())}
                >
                    {children()}
                </div>
            </ItemTriggerEvents>
        </Provider>
    }
}

#[component]
pub fn ItemTriggerEvents(children: Children) -> impl IntoView {
    let root_ctx = expect_context::<RootContext>();
    let menu_ctx = expect_context::<MenuContext>();
    let item_ctx = expect_context::<ItemData>();

    let _ = use_event_listener(item_ctx.get_trigger_ref(), keydown, move |evt| {
        let key = evt.key();

        match key.as_str() {
            "ArrowDown" => {
                evt.prevent_default();
                if let Some(item) = menu_ctx.navigate_next_item() {
                    item.focus();
                }
            }
            "ArrowUp" => {
                evt.prevent_default();
                if let Some(item) = menu_ctx.navigate_previous_item() {
                    item.focus();
                }
            }
            "ArrowRight" => {
                evt.prevent_default();
                match item_ctx {
                    ItemData::Item { .. } => {
                        if let Some(item) = root_ctx.navigate_next_item() {
                            root_ctx.close_all();
                            item.focus();
                            item.open();
                        }
                    }
                    ItemData::SubMenuItem { child_context, .. } => {
                        child_context.open();
                        if let Some(item) = child_context.navigate_first_item() {
                            item.focus();
                        } else {
                            menu_ctx.close();
                        }
                    }
                };
            }
            "ArrowLeft" => {
                evt.prevent_default();
                if item_ctx.is_submenu() {
                    menu_ctx.close();
                    menu_ctx.focus();
                } else {
                    if let Some(item) = root_ctx.navigate_previous_item() {
                        item.focus();
                        item.open();
                        menu_ctx.close();
                    }
                }
            }
            "Enter" => {
                if let Some(trigger_ref) = item_ctx.get_trigger_ref().get() {
                    if let Some(child) = trigger_ref.children().get_with_index(0) {
                        if let Ok(child) = child.clone().dyn_into::<HtmlButtonElement>() {
                            let _ = child.click();
                        } else if let Ok(child) = child.dyn_into::<HtmlAnchorElement>() {
                            let _ = child.click();
                        }
                    }
                    match item_ctx {
                        ItemData::Item { .. } => {
                            root_ctx.close_all();
                            root_ctx.focus_active_item();
                        }
                        _ => {}
                    };
                }
            }
            "Escape" => {
                menu_ctx.close();
                menu_ctx.focus();
            }
            _ => {}
        };
    });

    match item_ctx {
        ItemData::Item { trigger_ref, .. } => {
            let _ = use_event_listener(trigger_ref, click, move |_| {
                root_ctx.close_all();
                root_ctx.focus_active_item();
            });
        }
        _ => {}
    }

    let _ = use_event_listener(item_ctx.get_trigger_ref(), focus, move |_| {
        menu_ctx.set_focus(Some(item_ctx.get_index()));
    });

    children()
}

#[component]
pub fn SubMenuItem(
    #[prop(default = false)] disabled: bool,
    #[prop(into, optional)] class: String,
    children: Children,
) -> impl IntoView {
    let menu_ctx = expect_context::<MenuContext>();

    let item_ctx = use_context::<ItemData>();

    let index = menu_ctx.next_index();

    let sub_menu_ctx = MenuContext {
        index,
        disabled,
        allow_loop: menu_ctx.allow_loop,
        ..Default::default()
    };

    let item_ctx = ItemData::SubMenuItem {
        index,
        disabled,
        is_submenu: item_ctx.is_some(),
        parent_context: menu_ctx,
        child_context: sub_menu_ctx,
    };

    menu_ctx.upsert_item(index, item_ctx);

    on_cleanup(move || {
        menu_ctx.remove_item(index);
    });

    view! {
        <Provider value={item_ctx}>
            <div class={class}>
                <ItemTriggerEvents>
                    <Provider value={sub_menu_ctx}>{children()}</Provider>
                </ItemTriggerEvents>
            </div>
        </Provider>
    }
}

#[component]
pub fn SubMenuItemTrigger(
    #[prop(into, optional)] class: String,
    children: Children,
) -> impl IntoView {
    let item_ctx = expect_context::<MenuContext>();
    let sub_menu_ctx = expect_context::<ItemData>();

    let trigger_ref = item_ctx.trigger_ref;

    view! {
        <SubMenuItemTriggerEvents>
            <div
                node_ref={trigger_ref}
                class={class}
                tabindex=0
                data-state={item_ctx.index}
                data-disabled={item_ctx.disabled}
                data-highlighted={move || match sub_menu_ctx {
                    ItemData::SubMenuItem { parent_context, .. } => {
                        parent_context.item_in_focus(item_ctx.index)
                    }
                    _ => false,
                }}
            >

                {children()}
            </div>
        </SubMenuItemTriggerEvents>
    }
}

#[component]
pub fn SubMenuItemTriggerEvents(children: Children) -> impl IntoView {
    let menu_ctx = expect_context::<MenuContext>();
    let item_ctx = expect_context::<ItemData>();

    let _ = use_event_listener(menu_ctx.trigger_ref, click, move |_| {
        menu_ctx.toggle();
    });

    let _ = use_event_listener(menu_ctx.trigger_ref, keydown, move |evt| {
        if evt.key() == "Enter" {
            menu_ctx.toggle();
            match item_ctx {
                ItemData::SubMenuItem { child_context, .. } => {
                    if let Some(item) = child_context.navigate_first_item() {
                        item.focus();
                    }
                }
                _ => {}
            };
        }
    });

    children()
}

#[component]
pub fn SubMenuItemContent(
    children: ChildrenFn,
    /// Optional CSS class to apply to both show and hide classes
    #[prop(into, optional)]
    class: String,
    /// Optional CSS class to apply if `when == true`
    #[prop(into, optional)]
    show_class: String,
    /// Optional CSS class to apply if `when == false`
    #[prop(into, optional)]
    hide_class: String,
    /// The timeout after which the component will be unmounted if `when == false`
    hide_delay: Duration,
) -> impl IntoView {
    let item_ctx = expect_context::<MenuContext>();

    let children = store_value(children);
    view! {
        <CustomAnimatedShow
            when={item_ctx.open}
            show_class={cn!(class, show_class)}
            hide_class={cn!(class, hide_class)}
            hide_delay={hide_delay}
        >
            {children()}
        </CustomAnimatedShow>
    }
}