kael_ui 0.2.0

Professional shadcn-inspired UI component library for Kael. 100+ accessible components for building beautiful, performant desktop applications.
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
//! Command palette component with fuzzy search.

use crate::{
    components::{
        icon::Icon,
        icon_source::IconSource,
        input::Input,
        input_state::InputState,
        scrollable::scrollable_vertical,
        text::{body, caption, label_small},
    },
    theme::use_theme,
};
use kael::{prelude::FluentBuilder as _, InteractiveElement, *};
use std::rc::Rc;

actions!(
    command_palette,
    [NavigateUp, NavigateDown, SelectCommand, CloseCommand]
);

#[derive(Clone)]
pub struct Command {
    pub id: SharedString,
    pub name: SharedString,
    pub description: Option<SharedString>,
    pub icon: Option<IconSource>,
    pub category: Option<SharedString>,
    pub shortcut: Option<SharedString>,
    pub on_select: Option<Rc<dyn Fn(&mut Window, &mut App)>>,
    search_text: String,
}

impl Command {
    pub fn new(id: impl Into<SharedString>, name: impl Into<SharedString>) -> Self {
        let id = id.into();
        let name = name.into();
        let search_text = name.to_string().to_lowercase();

        Self {
            id,
            name,
            description: None,
            icon: None,
            category: None,
            shortcut: None,
            on_select: None,
            search_text,
        }
    }

    pub fn description(mut self, description: impl Into<SharedString>) -> Self {
        let desc = description.into();
        self.search_text = format!("{} {}", self.name, desc).to_lowercase();
        self.description = Some(desc);
        self
    }

    pub fn icon(mut self, icon: impl Into<IconSource>) -> Self {
        self.icon = Some(icon.into());
        self
    }

    pub fn category(mut self, category: impl Into<SharedString>) -> Self {
        self.category = Some(category.into());
        self
    }

    pub fn shortcut(mut self, shortcut: impl Into<SharedString>) -> Self {
        self.shortcut = Some(shortcut.into());
        self
    }

    pub fn on_select<F>(mut self, handler: F) -> Self
    where
        F: Fn(&mut Window, &mut App) + 'static,
    {
        self.on_select = Some(Rc::new(handler));
        self
    }

    pub fn matches(&self, query: &str) -> bool {
        if query.is_empty() {
            return true;
        }

        let query = query.to_lowercase();
        self.search_text.contains(&query)
    }

    pub fn match_score(&self, query: &str) -> i32 {
        if query.is_empty() {
            return 0;
        }

        let query = query.to_lowercase();
        let name_lower = self.name.to_string().to_lowercase();

        if name_lower == query {
            return 1000;
        }

        if name_lower.starts_with(&query) {
            return 500;
        }

        if name_lower.contains(&query) {
            return 100;
        }

        if self.search_text.contains(&query) {
            return 50;
        }

        0
    }
}

pub struct CommandPaletteState {
    commands: Vec<Command>,
    search_query: String,
    filtered_commands: Vec<Command>,
    selected_index: usize,
    recent_commands: Vec<SharedString>,
}

impl CommandPaletteState {
    pub fn new(commands: Vec<Command>) -> Self {
        let filtered_commands = commands.clone();

        Self {
            commands,
            search_query: String::new(),
            filtered_commands,
            selected_index: 0,
            recent_commands: Vec::new(),
        }
    }

    pub fn update_search(&mut self, query: String) {
        self.search_query = query.clone();

        if query.is_empty() {
            self.filtered_commands = self.commands.clone();
        } else {
            let mut matches: Vec<(Command, i32)> = self
                .commands
                .iter()
                .filter(|cmd| cmd.matches(&query))
                .map(|cmd| (cmd.clone(), cmd.match_score(&query)))
                .collect();

            matches.sort_by_key(|m| std::cmp::Reverse(m.1));
            self.filtered_commands = matches.into_iter().map(|(cmd, _)| cmd).collect();
        }

        self.selected_index = 0;
    }

    pub fn select_previous(&mut self) {
        if self.selected_index > 0 {
            self.selected_index -= 1;
        }
    }

    pub fn select_next(&mut self) {
        if self.selected_index < self.filtered_commands.len().saturating_sub(1) {
            self.selected_index += 1;
        }
    }

    pub fn execute_selected(&mut self, window: &mut Window, cx: &mut App) -> bool {
        if let Some(command) = self.filtered_commands.get(self.selected_index) {
            if let Some(handler) = &command.on_select {
                handler(window, cx);
                self.recent_commands.push(command.id.clone());
                if self.recent_commands.len() > 10 {
                    self.recent_commands.remove(0);
                }
                return true;
            }
        }
        false
    }

    pub fn filtered_commands(&self) -> &[Command] {
        &self.filtered_commands
    }

    pub fn selected_index(&self) -> usize {
        self.selected_index
    }
}

pub struct CommandPalette {
    state: Entity<CommandPaletteState>,
    search_input: Entity<InputState>,
    on_close: Option<Rc<dyn Fn(&mut Window, &mut App)>>,
    focus_handle: FocusHandle,
    style: StyleRefinement,
}

impl CommandPalette {
    pub fn new(_window: &mut Window, cx: &mut Context<Self>, commands: Vec<Command>) -> Self {
        let state = cx.new(|_| CommandPaletteState::new(commands));
        let search_input =
            cx.new(|cx| InputState::new(cx).placeholder("Type a command or search..."));
        let focus_handle = cx.focus_handle();

        cx.subscribe(&search_input, |this, _input, event, cx| {
            use crate::components::input_state::InputEvent;
            if let InputEvent::Change = event {
                let query = this.search_input.read(cx).content().to_string();
                this.state.update(cx, |state, _cx| {
                    state.update_search(query);
                });
                cx.notify();
            }
        })
        .detach();

        Self {
            state,
            search_input,
            on_close: None,
            focus_handle,
            style: StyleRefinement::default(),
        }
    }

    pub fn on_close<F>(mut self, handler: F) -> Self
    where
        F: Fn(&mut Window, &mut App) + 'static,
    {
        self.on_close = Some(Rc::new(handler));
        self
    }
}

impl Styled for CommandPalette {
    fn style(&mut self) -> &mut StyleRefinement {
        &mut self.style
    }
}

impl Focusable for CommandPalette {
    fn focus_handle(&self, _cx: &App) -> FocusHandle {
        self.focus_handle.clone()
    }
}

impl Render for CommandPalette {
    fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
        let theme = use_theme();
        let state = self.state.read(cx);
        let filtered = state.filtered_commands();
        let selected_idx = state.selected_index();
        let user_style = self.style.clone();

        div()
            .absolute()
            .inset_0()
            .flex()
            .items_center()
            .justify_center()
            .bg(kael::rgba(0x00000088))
            .on_mouse_down(
                MouseButton::Left,
                cx.listener(|this, _event, window, cx| {
                    if let Some(handler) = &this.on_close {
                        handler(window, cx);
                    }
                }),
            )
            .on_scroll_wheel(|_, _, _| {})
            .key_context("CommandPalette")
            .track_focus(&self.focus_handle)
            .on_action(cx.listener(|this, _: &NavigateUp, _window, cx| {
                this.state.update(cx, |state, _cx| {
                    state.select_previous();
                });
                cx.notify();
            }))
            .on_action(cx.listener(|this, _: &NavigateDown, _window, cx| {
                this.state.update(cx, |state, _cx| {
                    state.select_next();
                });
                cx.notify();
            }))
            .on_action(cx.listener(|this, _: &SelectCommand, window, cx| {
                let executed = this
                    .state
                    .update(cx, |state, app_cx| state.execute_selected(window, app_cx));
                if executed {
                    if let Some(handler) = &this.on_close {
                        handler(window, cx);
                    }
                }
            }))
            .on_action(cx.listener(|this, _: &CloseCommand, window, cx| {
                if let Some(handler) = &this.on_close {
                    handler(window, cx);
                }
            }))
            .child(
                div()
                    .w(px(600.0))
                    .max_h(px(500.0))
                    .flex()
                    .flex_col()
                    .bg(theme.tokens.card)
                    .border_1()
                    .border_color(theme.tokens.border)
                    .rounded(theme.tokens.radius_lg)
                    .shadow_lg()
                    .overflow_hidden()
                    .on_mouse_down(MouseButton::Left, |_event, _window, _cx| {})
                    .map(|this| {
                        let mut div = this;
                        div.style().refine(&user_style);
                        div
                    })
                    .child(
                        div()
                            .flex()
                            .items_center()
                            .px(px(16.0))
                            .py(px(12.0))
                            .border_b_1()
                            .border_color(theme.tokens.border)
                            .child(
                                Input::new(&self.search_input)
                                    .placeholder("Type a command or search..."),
                            ),
                    )
                    .child(
                        div().flex_1().overflow_hidden().child(scrollable_vertical(
                            div()
                                .flex()
                                .flex_col()
                                .p(px(8.0))
                                .children(filtered.is_empty().then(|| {
                                    div()
                                        .flex()
                                        .items_center()
                                        .justify_center()
                                        .h(px(200.0))
                                        .child(
                                            caption("No commands found")
                                                .color(theme.tokens.muted_foreground),
                                        )
                                        .into_any_element()
                                }))
                                .children(filtered.iter().enumerate().map(|(idx, command)| {
                                    let is_selected = idx == selected_idx;
                                    render_command_item(command.clone(), is_selected, cx)
                                })),
                        )),
                    )
                    .child(
                        div()
                            .flex()
                            .items_center()
                            .justify_between()
                            .px(px(16.0))
                            .py(px(8.0))
                            .border_t_1()
                            .border_color(theme.tokens.border)
                            .bg(theme.tokens.muted.opacity(0.3))
                            .child(
                                div()
                                    .flex()
                                    .gap(px(16.0))
                                    .child(
                                        label_small("↑↓ Navigate")
                                            .color(theme.tokens.muted_foreground),
                                    )
                                    .child(
                                        label_small("↵ Select")
                                            .color(theme.tokens.muted_foreground),
                                    )
                                    .child(
                                        label_small("Esc Close")
                                            .color(theme.tokens.muted_foreground),
                                    ),
                            ),
                    ),
            )
    }
}

fn render_command_item(command: Command, selected: bool, _cx: &App) -> impl IntoElement {
    let theme = use_theme();

    div()
        .flex()
        .items_center()
        .gap(px(12.0))
        .px(px(12.0))
        .py(px(10.0))
        .rounded(theme.tokens.radius_sm)
        .cursor(CursorStyle::PointingHand)
        .when(selected, |div| div.bg(theme.tokens.accent))
        .when(!selected, |div| {
            div.hover(|style| style.bg(theme.tokens.muted))
        })
        .when_some(command.on_select, |div, handler| {
            div.on_mouse_down(MouseButton::Left, move |_event, window, cx| {
                handler(window, cx);
            })
        })
        .when_some(command.icon, |div, icon| {
            div.child(Icon::new(icon).size(px(18.0)).color(if selected {
                theme.tokens.accent_foreground
            } else {
                theme.tokens.foreground
            }))
        })
        .child(
            div()
                .flex_1()
                .flex()
                .flex_col()
                .gap(px(2.0))
                .child(body(command.name).color(if selected {
                    theme.tokens.accent_foreground
                } else {
                    theme.tokens.foreground
                }))
                .when_some(command.description, |div, desc| {
                    div.child(caption(desc).color(if selected {
                        theme.tokens.accent_foreground.opacity(0.8)
                    } else {
                        theme.tokens.muted_foreground
                    }))
                }),
        )
        .children(command.shortcut.map(|shortcut| {
            div()
                .px(px(8.0))
                .py(px(4.0))
                .rounded(theme.tokens.radius_sm)
                .bg(if selected {
                    theme.tokens.accent_foreground.opacity(0.2)
                } else {
                    theme.tokens.muted
                })
                .child(caption(shortcut).color(if selected {
                    theme.tokens.accent_foreground
                } else {
                    theme.tokens.muted_foreground
                }))
                .into_any_element()
        }))
}