use gpui::{ div, prelude::FluentBuilder, px, AnyElement, Context, EventEmitter, FocusHandle, FocusableView, InteractiveElement, IntoElement, KeyDownEvent, Model, MouseButton, MouseDownEvent, ParentElement as _, Render, SharedString, Styled as _, ViewContext, }; use crate::{h_flex, theme::ActiveTheme, v_flex, Icon, IconName, Sizable, Size}; use super::{blink_cursor::BlinkCursor, InputEvent}; pub enum InputOptEvent { /// When all OTP input have filled, this event will be triggered. Change(SharedString), } pub struct OtpInput { focus_handle: FocusHandle, length: usize, number_of_groups: usize, masked: bool, value: SharedString, blink_cursor: Model, size: Size, } impl OtpInput { pub fn new(length: usize, cx: &mut ViewContext) -> Self { let focus_handle = cx.focus_handle(); let blink_cursor = cx.new_model(|_| BlinkCursor::new()); let input = Self { focus_handle: focus_handle.clone(), length, number_of_groups: 2, value: SharedString::default(), masked: false, blink_cursor: blink_cursor.clone(), size: Size::Medium, }; // Observe the blink cursor to repaint the view when it changes. cx.observe(&blink_cursor, |_, _, cx| cx.notify()).detach(); // Blink the cursor when the window is active, pause when it's not. cx.observe_window_activation(|this, cx| { if cx.is_window_active() { let focus_handle = this.focus_handle.clone(); if focus_handle.is_focused(cx) { this.blink_cursor.update(cx, |blink_cursor, cx| { blink_cursor.start(cx); }); } } }) .detach(); cx.on_focus(&focus_handle, Self::on_focus).detach(); cx.on_blur(&focus_handle, Self::on_blur).detach(); input } /// Set number of groups in the OTP Input. pub fn groups(mut self, n: usize) -> Self { self.number_of_groups = n; self } /// Set default value of the OTP Input. pub fn default_value(mut self, value: impl Into) -> Self { self.value = value.into(); self } /// Set value of the OTP Input. pub fn set_value(&mut self, value: impl Into, cx: &mut ViewContext) { self.value = value.into(); cx.notify(); } /// Return the value of the OTP Input. pub fn value(&self) -> SharedString { self.value.clone() } /// Set masked to true use masked input. pub fn masked(mut self, masked: bool) -> Self { self.masked = masked; self } /// Set masked to true use masked input. pub fn set_masked(&mut self, masked: bool, cx: &mut ViewContext) { self.masked = masked; cx.notify(); } pub fn focus(&self, cx: &mut ViewContext) { self.focus_handle.focus(cx); } fn on_input_mouse_down(&mut self, _: &MouseDownEvent, cx: &mut ViewContext) { cx.focus(&self.focus_handle); } fn on_key_down(&mut self, event: &KeyDownEvent, cx: &mut ViewContext) { let mut chars: Vec = self.value.chars().collect(); let ix = chars.len(); let key = event.keystroke.key.as_str(); match key { "backspace" => { if ix > 0 { let ix = ix - 1; chars.remove(ix); } } _ => { let c = key.chars().next().unwrap(); if !matches!(c, '0'..='9') { return; } if ix >= self.length { return; } chars.push(c); } } self.pause_blink_cursor(cx); self.value = SharedString::from(chars.iter().collect::()); if self.value.chars().count() == self.length { cx.emit(InputEvent::Change(self.value.clone())); } cx.notify() } fn on_focus(&mut self, cx: &mut ViewContext) { self.blink_cursor.update(cx, |cursor, cx| { cursor.start(cx); }); cx.emit(InputEvent::Focus); } fn on_blur(&mut self, cx: &mut ViewContext) { self.blink_cursor.update(cx, |cursor, cx| { cursor.stop(cx); }); cx.emit(InputEvent::Blur); } fn pause_blink_cursor(&mut self, cx: &mut ViewContext) { self.blink_cursor.update(cx, |cursor, cx| { cursor.pause(cx); }); } } impl Sizable for OtpInput { fn with_size(mut self, size: impl Into) -> Self { self.size = size.into(); self } } impl FocusableView for OtpInput { fn focus_handle(&self, _: &gpui::AppContext) -> FocusHandle { self.focus_handle.clone() } } impl EventEmitter for OtpInput {} impl Render for OtpInput { fn render(&mut self, cx: &mut ViewContext) -> impl IntoElement { let blink_show = self.blink_cursor.read(cx).visible(); let is_focused = self.focus_handle.is_focused(cx); let text_size = match self.size { Size::XSmall => px(14.), Size::Small => px(14.), Size::Medium => px(16.), Size::Large => px(18.), Size::Size(v) => v * 0.5, }; let mut groups: Vec> = Vec::with_capacity(self.number_of_groups); let mut group_ix = 0; let group_items_count = self.length / self.number_of_groups; for _ in 0..self.number_of_groups { groups.push(vec![]); } for i in 0..self.length { let c = self.value.chars().nth(i); if i % group_items_count == 0 && i != 0 { group_ix += 1; } let is_input_focused = i == self.value.chars().count() && is_focused; groups[group_ix].push( h_flex() .id(("input-otp", i)) .border_1() .border_color(cx.theme().input) .bg(cx.theme().background) .when(is_input_focused, |this| this.border_color(cx.theme().ring)) .shadow_sm() .items_center() .justify_center() .rounded_md() .text_size(text_size) .map(|this| match self.size { Size::XSmall => this.w_6().h_6(), Size::Small => this.w_6().h_6(), Size::Medium => this.w_8().h_8(), Size::Large => this.w_11().h_11(), Size::Size(px) => this.w(px).h(px), }) .on_mouse_down(MouseButton::Left, cx.listener(Self::on_input_mouse_down)) .map(|this| match c { Some(c) => { if self.masked { this.child( Icon::new(IconName::Asterisk) .text_color(cx.theme().secondary_foreground) .with_size(text_size), ) } else { this.child(c.to_string()) } } None => this.when(is_input_focused && blink_show, |this| { this.child( div() .h_4() .w_0() .border_l_3() .border_color(crate::blue_500()), ) }), }) .into_any_element(), ); } v_flex() .track_focus(&self.focus_handle) .on_key_down(cx.listener(Self::on_key_down)) .items_center() .child( h_flex().items_center().gap_5().children( groups .into_iter() .map(|inputs| h_flex().items_center().gap_1().children(inputs)), ), ) } }