usage of canvas lib for auth BROKEN
This commit is contained in:
@@ -49,6 +49,7 @@ suggestion_up = ["Up", "Ctrl+p"]
|
|||||||
suggestion_down = ["Down", "Ctrl+n"]
|
suggestion_down = ["Down", "Ctrl+n"]
|
||||||
select_suggestion = ["Enter", "Tab"]
|
select_suggestion = ["Enter", "Tab"]
|
||||||
exit_suggestions = ["Esc"]
|
exit_suggestions = ["Esc"]
|
||||||
|
trigger_autocomplete = ["Tab"]
|
||||||
|
|
||||||
# Global keybindings (work in both modes)
|
# Global keybindings (work in both modes)
|
||||||
[keybindings.global]
|
[keybindings.global]
|
||||||
|
|||||||
@@ -69,11 +69,10 @@ prev_field = ["shift+enter"]
|
|||||||
exit = ["esc", "ctrl+e"]
|
exit = ["esc", "ctrl+e"]
|
||||||
delete_char_forward = ["delete"]
|
delete_char_forward = ["delete"]
|
||||||
delete_char_backward = ["backspace"]
|
delete_char_backward = ["backspace"]
|
||||||
move_left = [""]
|
move_left = ["left"]
|
||||||
move_right = ["right"]
|
move_right = ["right"]
|
||||||
suggestion_down = ["ctrl+n", "tab"]
|
suggestion_down = ["ctrl+n", "tab"]
|
||||||
suggestion_up = ["ctrl+p", "shift+tab"]
|
suggestion_up = ["ctrl+p", "shift+tab"]
|
||||||
trigger_autocomplete = ["left"]
|
|
||||||
|
|
||||||
[keybindings.command]
|
[keybindings.command]
|
||||||
exit_command_mode = ["ctrl+g", "esc"]
|
exit_command_mode = ["ctrl+g", "esc"]
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ use crate::{
|
|||||||
state::pages::auth::LoginState,
|
state::pages::auth::LoginState,
|
||||||
components::common::dialog,
|
components::common::dialog,
|
||||||
state::app::state::AppState,
|
state::app::state::AppState,
|
||||||
|
components::handlers::canvas_bridge::render_canvas_form, // Use our bridge function
|
||||||
};
|
};
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
layout::{Alignment, Constraint, Direction, Layout, Rect, Margin},
|
layout::{Alignment, Constraint, Direction, Layout, Rect, Margin},
|
||||||
@@ -48,14 +49,11 @@ pub fn render_login(
|
|||||||
])
|
])
|
||||||
.split(inner_area);
|
.split(inner_area);
|
||||||
|
|
||||||
// --- FORM RENDERING ---
|
// --- FORM RENDERING (Using bridge function) ---
|
||||||
crate::components::handlers::canvas::render_canvas(
|
render_canvas_form(
|
||||||
f,
|
f,
|
||||||
chunks[0],
|
chunks[0],
|
||||||
login_state,
|
login_state, // LoginState implements CanvasState
|
||||||
&["Username/Email", "Password"],
|
|
||||||
&login_state.current_field,
|
|
||||||
&[&login_state.username, &login_state.password],
|
|
||||||
theme,
|
theme,
|
||||||
is_edit_mode,
|
is_edit_mode,
|
||||||
highlight_state,
|
highlight_state,
|
||||||
@@ -71,7 +69,7 @@ pub fn render_login(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- BUTTONS ---
|
// --- BUTTONS (unchanged) ---
|
||||||
let button_chunks = Layout::default()
|
let button_chunks = Layout::default()
|
||||||
.direction(Direction::Horizontal)
|
.direction(Direction::Horizontal)
|
||||||
.constraints([Constraint::Percentage(50), Constraint::Percentage(50)])
|
.constraints([Constraint::Percentage(50), Constraint::Percentage(50)])
|
||||||
@@ -83,7 +81,7 @@ pub fn render_login(
|
|||||||
app_state.focused_button_index== login_button_index
|
app_state.focused_button_index== login_button_index
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
};
|
};
|
||||||
let mut login_style = Style::default().fg(theme.fg);
|
let mut login_style = Style::default().fg(theme.fg);
|
||||||
let mut login_border = Style::default().fg(theme.border);
|
let mut login_border = Style::default().fg(theme.border);
|
||||||
if login_active {
|
if login_active {
|
||||||
@@ -105,12 +103,12 @@ pub fn render_login(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Return Button
|
// Return Button
|
||||||
let return_button_index = 1; // Assuming Return is the second general element
|
let return_button_index = 1;
|
||||||
let return_active = if app_state.ui.focus_outside_canvas {
|
let return_active = if app_state.ui.focus_outside_canvas {
|
||||||
app_state.focused_button_index== return_button_index
|
app_state.focused_button_index== return_button_index
|
||||||
} else {
|
} else {
|
||||||
false // Not active if focus is in canvas or other modes
|
false
|
||||||
};
|
};
|
||||||
let mut return_style = Style::default().fg(theme.fg);
|
let mut return_style = Style::default().fg(theme.fg);
|
||||||
let mut return_border = Style::default().fg(theme.border);
|
let mut return_border = Style::default().fg(theme.border);
|
||||||
if return_active {
|
if return_active {
|
||||||
@@ -132,17 +130,15 @@ pub fn render_login(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// --- DIALOG ---
|
// --- DIALOG ---
|
||||||
// Check the correct field name for showing the dialog
|
|
||||||
if app_state.ui.dialog.dialog_show {
|
if app_state.ui.dialog.dialog_show {
|
||||||
// Pass all 7 arguments correctly
|
|
||||||
dialog::render_dialog(
|
dialog::render_dialog(
|
||||||
f,
|
f,
|
||||||
f.area(),
|
f.area(),
|
||||||
theme,
|
theme,
|
||||||
&app_state.ui.dialog.dialog_title,
|
&app_state.ui.dialog.dialog_title,
|
||||||
&app_state.ui.dialog.dialog_message,
|
&app_state.ui.dialog.dialog_message,
|
||||||
&app_state.ui.dialog.dialog_buttons, // Pass buttons slice
|
&app_state.ui.dialog.dialog_buttons,
|
||||||
app_state.ui.dialog.dialog_active_button_index,
|
app_state.ui.dialog.dialog_active_button_index,
|
||||||
app_state.ui.dialog.is_loading,
|
app_state.ui.dialog.is_loading,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
config::colors::themes::Theme,
|
config::colors::themes::Theme,
|
||||||
state::pages::auth::RegisterState, // Use RegisterState
|
state::pages::auth::RegisterState,
|
||||||
components::common::{dialog, autocomplete},
|
components::common::dialog,
|
||||||
state::app::state::AppState,
|
state::app::state::AppState,
|
||||||
state::pages::canvas_state::CanvasState,
|
|
||||||
modes::handlers::mode_manager::AppMode,
|
modes::handlers::mode_manager::AppMode,
|
||||||
|
components::handlers::canvas_bridge::render_canvas_form, // Use our bridge function
|
||||||
};
|
};
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
layout::{Alignment, Constraint, Direction, Layout, Rect, Margin},
|
layout::{Alignment, Constraint, Direction, Layout, Rect, Margin},
|
||||||
style::{Style, Modifier, Color},
|
style::{Style, Modifier, Color},
|
||||||
widgets::{Block, BorderType, Borders, Paragraph},
|
widgets::{Block, BorderType, Borders, Paragraph, List, ListItem, ListState},
|
||||||
Frame,
|
Frame,
|
||||||
};
|
};
|
||||||
use crate::state::app::highlight::HighlightState;
|
use crate::state::app::highlight::HighlightState;
|
||||||
@@ -20,7 +20,7 @@ pub fn render_register(
|
|||||||
f: &mut Frame,
|
f: &mut Frame,
|
||||||
area: Rect,
|
area: Rect,
|
||||||
theme: &Theme,
|
theme: &Theme,
|
||||||
state: &RegisterState, // Use RegisterState
|
state: &RegisterState,
|
||||||
app_state: &AppState,
|
app_state: &AppState,
|
||||||
is_edit_mode: bool,
|
is_edit_mode: bool,
|
||||||
highlight_state: &HighlightState,
|
highlight_state: &HighlightState,
|
||||||
@@ -29,7 +29,7 @@ pub fn render_register(
|
|||||||
.borders(Borders::ALL)
|
.borders(Borders::ALL)
|
||||||
.border_type(BorderType::Plain)
|
.border_type(BorderType::Plain)
|
||||||
.border_style(Style::default().fg(theme.border))
|
.border_style(Style::default().fg(theme.border))
|
||||||
.title(" Register ") // Update title
|
.title(" Register ")
|
||||||
.style(Style::default().bg(theme.bg));
|
.style(Style::default().bg(theme.bg));
|
||||||
|
|
||||||
f.render_widget(block, area);
|
f.render_widget(block, area);
|
||||||
@@ -39,7 +39,6 @@ pub fn render_register(
|
|||||||
vertical: 1,
|
vertical: 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Adjust constraints for 4 fields + error + buttons
|
|
||||||
let chunks = Layout::default()
|
let chunks = Layout::default()
|
||||||
.direction(Direction::Vertical)
|
.direction(Direction::Vertical)
|
||||||
.constraints([
|
.constraints([
|
||||||
@@ -50,20 +49,11 @@ pub fn render_register(
|
|||||||
])
|
])
|
||||||
.split(inner_area);
|
.split(inner_area);
|
||||||
|
|
||||||
// --- FORM RENDERING (Using render_canvas) ---
|
// --- FORM RENDERING (Using bridge function) ---
|
||||||
let active_field_rect = crate::components::handlers::canvas::render_canvas(
|
let input_rect = render_canvas_form(
|
||||||
f,
|
f,
|
||||||
chunks[0], // Area for the canvas
|
chunks[0],
|
||||||
state, // The state object (RegisterState)
|
state, // RegisterState implements CanvasState
|
||||||
&[ // Field labels
|
|
||||||
"Username",
|
|
||||||
"Email*",
|
|
||||||
"Password*",
|
|
||||||
"Confirm Password",
|
|
||||||
"Role* (Tab)",
|
|
||||||
],
|
|
||||||
&state.current_field(), // Pass current field index
|
|
||||||
&state.inputs().iter().map(|s| *s).collect::<Vec<&String>>(), // Pass inputs directly
|
|
||||||
theme,
|
theme,
|
||||||
is_edit_mode,
|
is_edit_mode,
|
||||||
highlight_state,
|
highlight_state,
|
||||||
@@ -75,7 +65,6 @@ pub fn render_register(
|
|||||||
.alignment(Alignment::Center);
|
.alignment(Alignment::Center);
|
||||||
f.render_widget(help_text, chunks[1]);
|
f.render_widget(help_text, chunks[1]);
|
||||||
|
|
||||||
|
|
||||||
// --- ERROR MESSAGE ---
|
// --- ERROR MESSAGE ---
|
||||||
if let Some(err) = &state.error_message {
|
if let Some(err) = &state.error_message {
|
||||||
f.render_widget(
|
f.render_widget(
|
||||||
@@ -107,7 +96,7 @@ pub fn render_register(
|
|||||||
}
|
}
|
||||||
|
|
||||||
f.render_widget(
|
f.render_widget(
|
||||||
Paragraph::new("Register") // Update button text
|
Paragraph::new("Register")
|
||||||
.style(register_style)
|
.style(register_style)
|
||||||
.alignment(Alignment::Center)
|
.alignment(Alignment::Center)
|
||||||
.block(
|
.block(
|
||||||
@@ -119,7 +108,7 @@ pub fn render_register(
|
|||||||
button_chunks[0],
|
button_chunks[0],
|
||||||
);
|
);
|
||||||
|
|
||||||
// Return Button (logic remains similar)
|
// Return Button
|
||||||
let return_button_index = 1;
|
let return_button_index = 1;
|
||||||
let return_active = if app_state.ui.focus_outside_canvas {
|
let return_active = if app_state.ui.focus_outside_canvas {
|
||||||
app_state.focused_button_index== return_button_index
|
app_state.focused_button_index== return_button_index
|
||||||
@@ -146,19 +135,18 @@ pub fn render_register(
|
|||||||
button_chunks[1],
|
button_chunks[1],
|
||||||
);
|
);
|
||||||
|
|
||||||
// --- Render Autocomplete Dropdown (Draw AFTER buttons) ---
|
// --- AUTOCOMPLETE DROPDOWN (Simple bridge implementation) ---
|
||||||
if app_state.current_mode == AppMode::Edit {
|
if app_state.current_mode == AppMode::Edit {
|
||||||
if let Some(suggestions) = state.get_suggestions() {
|
if let Some(autocomplete_state) = state.autocomplete_state() {
|
||||||
let selected = state.get_selected_suggestion_index();
|
if autocomplete_state.is_active && !autocomplete_state.suggestions.is_empty() {
|
||||||
if !suggestions.is_empty() {
|
if let Some(field_rect) = input_rect {
|
||||||
if let Some(input_rect) = active_field_rect {
|
render_simple_autocomplete_dropdown(f, field_rect, f.area(), theme, autocomplete_state);
|
||||||
autocomplete::render_autocomplete_dropdown(f, input_rect, f.area(), theme, suggestions, selected);
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- DIALOG --- (Keep dialog logic)
|
// --- DIALOG ---
|
||||||
if app_state.ui.dialog.dialog_show {
|
if app_state.ui.dialog.dialog_show {
|
||||||
dialog::render_dialog(
|
dialog::render_dialog(
|
||||||
f,
|
f,
|
||||||
@@ -172,3 +160,89 @@ pub fn render_register(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Simple autocomplete dropdown renderer (bridge implementation)
|
||||||
|
fn render_simple_autocomplete_dropdown(
|
||||||
|
f: &mut Frame,
|
||||||
|
input_rect: Rect,
|
||||||
|
frame_area: Rect,
|
||||||
|
theme: &Theme,
|
||||||
|
autocomplete_state: &canvas::AutocompleteState<String>,
|
||||||
|
) {
|
||||||
|
if autocomplete_state.is_loading {
|
||||||
|
// Show loading indicator
|
||||||
|
let loading_area = Rect {
|
||||||
|
x: input_rect.x,
|
||||||
|
y: input_rect.y + 1,
|
||||||
|
width: input_rect.width,
|
||||||
|
height: 3,
|
||||||
|
};
|
||||||
|
|
||||||
|
let loading_paragraph = Paragraph::new("Loading suggestions...")
|
||||||
|
.style(Style::default().fg(theme.fg))
|
||||||
|
.block(
|
||||||
|
Block::default()
|
||||||
|
.borders(ratatui::widgets::Borders::ALL)
|
||||||
|
.border_style(Style::default().fg(theme.accent))
|
||||||
|
.style(Style::default().bg(theme.bg)),
|
||||||
|
);
|
||||||
|
|
||||||
|
f.render_widget(loading_paragraph, loading_area);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if autocomplete_state.suggestions.is_empty() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate dropdown position
|
||||||
|
let dropdown_height = (autocomplete_state.suggestions.len() as u16).min(8) + 2;
|
||||||
|
let dropdown_width = input_rect.width.max(20);
|
||||||
|
|
||||||
|
let mut dropdown_area = Rect {
|
||||||
|
x: input_rect.x,
|
||||||
|
y: input_rect.y + 1,
|
||||||
|
width: dropdown_width,
|
||||||
|
height: dropdown_height,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Keep dropdown within bounds
|
||||||
|
if dropdown_area.bottom() > frame_area.height {
|
||||||
|
dropdown_area.y = input_rect.y.saturating_sub(dropdown_height);
|
||||||
|
}
|
||||||
|
if dropdown_area.right() > frame_area.width {
|
||||||
|
dropdown_area.x = frame_area.width.saturating_sub(dropdown_width);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create list items
|
||||||
|
let items: Vec<ListItem> = autocomplete_state
|
||||||
|
.suggestions
|
||||||
|
.iter()
|
||||||
|
.enumerate()
|
||||||
|
.map(|(i, suggestion)| {
|
||||||
|
let is_selected = autocomplete_state.selected_index == Some(i);
|
||||||
|
let style = if is_selected {
|
||||||
|
Style::default()
|
||||||
|
.fg(theme.bg)
|
||||||
|
.bg(theme.highlight)
|
||||||
|
.add_modifier(Modifier::BOLD)
|
||||||
|
} else {
|
||||||
|
Style::default().fg(theme.fg).bg(theme.bg)
|
||||||
|
};
|
||||||
|
|
||||||
|
ListItem::new(suggestion.display_text.as_str()).style(style)
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let list = List::new(items).block(
|
||||||
|
Block::default()
|
||||||
|
.borders(ratatui::widgets::Borders::ALL)
|
||||||
|
.border_style(Style::default().fg(theme.accent))
|
||||||
|
.style(Style::default().bg(theme.bg)),
|
||||||
|
);
|
||||||
|
|
||||||
|
let mut list_state = ListState::default();
|
||||||
|
list_state.select(autocomplete_state.selected_index);
|
||||||
|
|
||||||
|
f.render_stateful_widget(list, dropdown_area, &mut list_state);
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
// src/state/pages/auth.rs
|
// src/state/pages/auth.rs
|
||||||
use crate::state::pages::canvas_state::CanvasState;
|
use canvas::{CanvasState, ActionContext, CanvasAction}; // Import from external library
|
||||||
|
use canvas::{AutocompleteCanvasState, AutocompleteState, SuggestionItem}; // For autocomplete
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
@@ -44,91 +45,50 @@ pub struct RegisterState {
|
|||||||
pub current_field: usize,
|
pub current_field: usize,
|
||||||
pub current_cursor_pos: usize,
|
pub current_cursor_pos: usize,
|
||||||
pub has_unsaved_changes: bool,
|
pub has_unsaved_changes: bool,
|
||||||
pub show_role_suggestions: bool,
|
|
||||||
pub role_suggestions: Vec<String>,
|
// NEW: Replace old autocomplete with external library's system
|
||||||
pub selected_suggestion_index: Option<usize>,
|
pub autocomplete: AutocompleteState<String>,
|
||||||
pub in_suggestion_mode: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AuthState {
|
impl AuthState {
|
||||||
/// Creates a new empty AuthState (unauthenticated)
|
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self::default()
|
||||||
auth_token: None,
|
|
||||||
user_id: None,
|
|
||||||
role: None,
|
|
||||||
decoded_username: None,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl LoginState {
|
impl LoginState {
|
||||||
/// Creates a new empty LoginState
|
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self::default()
|
||||||
username: String::new(),
|
|
||||||
password: String::new(),
|
|
||||||
error_message: None,
|
|
||||||
current_field: 0,
|
|
||||||
current_cursor_pos: 0,
|
|
||||||
has_unsaved_changes: false,
|
|
||||||
login_request_pending: false,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RegisterState {
|
impl RegisterState {
|
||||||
/// Creates a new empty RegisterState
|
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self {
|
||||||
username: String::new(),
|
autocomplete: AutocompleteState::new(),
|
||||||
email: String::new(),
|
..Default::default()
|
||||||
password: String::new(),
|
|
||||||
password_confirmation: String::new(),
|
|
||||||
role: String::new(),
|
|
||||||
error_message: None,
|
|
||||||
current_field: 0,
|
|
||||||
current_cursor_pos: 0,
|
|
||||||
has_unsaved_changes: false,
|
|
||||||
show_role_suggestions: false,
|
|
||||||
role_suggestions: Vec::new(),
|
|
||||||
selected_suggestion_index: None,
|
|
||||||
in_suggestion_mode: false,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Updates role suggestions based on current input
|
|
||||||
pub fn update_role_suggestions(&mut self) {
|
|
||||||
let current_input = self.role.to_lowercase();
|
|
||||||
self.role_suggestions = AVAILABLE_ROLES
|
|
||||||
.iter()
|
|
||||||
.filter(|role| role.to_lowercase().contains(¤t_input))
|
|
||||||
.cloned()
|
|
||||||
.collect();
|
|
||||||
self.show_role_suggestions = !self.role_suggestions.is_empty();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Implement external library's CanvasState for LoginState
|
||||||
impl CanvasState for LoginState {
|
impl CanvasState for LoginState {
|
||||||
fn current_field(&self) -> usize {
|
fn current_field(&self) -> usize {
|
||||||
self.current_field
|
self.current_field
|
||||||
}
|
}
|
||||||
|
|
||||||
fn current_cursor_pos(&self) -> usize {
|
fn current_cursor_pos(&self) -> usize {
|
||||||
let len = match self.current_field {
|
self.current_cursor_pos
|
||||||
0 => self.username.len(),
|
|
||||||
1 => self.password.len(),
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
self.current_cursor_pos.min(len)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn has_unsaved_changes(&self) -> bool {
|
fn set_current_field(&mut self, index: usize) {
|
||||||
self.has_unsaved_changes
|
if index < 2 {
|
||||||
|
self.current_field = index;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn inputs(&self) -> Vec<&String> {
|
fn set_current_cursor_pos(&mut self, pos: usize) {
|
||||||
vec![&self.username, &self.password]
|
self.current_cursor_pos = pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_current_input(&self) -> &str {
|
fn get_current_input(&self) -> &str {
|
||||||
@@ -147,73 +107,55 @@ impl CanvasState for LoginState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn inputs(&self) -> Vec<&String> {
|
||||||
|
vec![&self.username, &self.password]
|
||||||
|
}
|
||||||
|
|
||||||
fn fields(&self) -> Vec<&str> {
|
fn fields(&self) -> Vec<&str> {
|
||||||
vec!["Username/Email", "Password"]
|
vec!["Username/Email", "Password"]
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_current_field(&mut self, index: usize) {
|
|
||||||
if index < 2 {
|
|
||||||
self.current_field = index;
|
|
||||||
let len = match self.current_field {
|
|
||||||
0 => self.username.len(),
|
|
||||||
1 => self.password.len(),
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
self.current_cursor_pos = self.current_cursor_pos.min(len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_current_cursor_pos(&mut self, pos: usize) {
|
|
||||||
let len = match self.current_field {
|
|
||||||
0 => self.username.len(),
|
|
||||||
1 => self.password.len(),
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
self.current_cursor_pos = pos.min(len);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_has_unsaved_changes(&mut self, changed: bool) {
|
|
||||||
self.has_unsaved_changes = changed;
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_suggestions(&self) -> Option<&[String]> {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_selected_suggestion_index(&self) -> Option<usize> {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl CanvasState for RegisterState {
|
|
||||||
fn current_field(&self) -> usize {
|
|
||||||
self.current_field
|
|
||||||
}
|
|
||||||
|
|
||||||
fn current_cursor_pos(&self) -> usize {
|
|
||||||
let len = match self.current_field {
|
|
||||||
0 => self.username.len(),
|
|
||||||
1 => self.email.len(),
|
|
||||||
2 => self.password.len(),
|
|
||||||
3 => self.password_confirmation.len(),
|
|
||||||
4 => self.role.len(),
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
self.current_cursor_pos.min(len)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn has_unsaved_changes(&self) -> bool {
|
fn has_unsaved_changes(&self) -> bool {
|
||||||
self.has_unsaved_changes
|
self.has_unsaved_changes
|
||||||
}
|
}
|
||||||
|
|
||||||
fn inputs(&self) -> Vec<&String> {
|
fn set_has_unsaved_changes(&mut self, changed: bool) {
|
||||||
vec![
|
self.has_unsaved_changes = changed;
|
||||||
&self.username,
|
}
|
||||||
&self.email,
|
|
||||||
&self.password,
|
// Handle custom actions (like submit)
|
||||||
&self.password_confirmation,
|
fn handle_feature_action(&mut self, action: &CanvasAction, _context: &ActionContext) -> Option<String> {
|
||||||
&self.role,
|
match action {
|
||||||
]
|
CanvasAction::Custom(action_str) if action_str == "submit" => {
|
||||||
|
if !self.username.is_empty() && !self.password.is_empty() {
|
||||||
|
Some(format!("Submitting login for: {}", self.username))
|
||||||
|
} else {
|
||||||
|
Some("Please fill in all required fields".to_string())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Implement external library's CanvasState for RegisterState
|
||||||
|
impl CanvasState for RegisterState {
|
||||||
|
fn current_field(&self) -> usize {
|
||||||
|
self.current_field
|
||||||
|
}
|
||||||
|
|
||||||
|
fn current_cursor_pos(&self) -> usize {
|
||||||
|
self.current_cursor_pos
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_current_field(&mut self, index: usize) {
|
||||||
|
if index < 5 {
|
||||||
|
self.current_field = index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_current_cursor_pos(&mut self, pos: usize) {
|
||||||
|
self.current_cursor_pos = pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_current_input(&self) -> &str {
|
fn get_current_input(&self) -> &str {
|
||||||
@@ -238,6 +180,16 @@ impl CanvasState for RegisterState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn inputs(&self) -> Vec<&String> {
|
||||||
|
vec![
|
||||||
|
&self.username,
|
||||||
|
&self.email,
|
||||||
|
&self.password,
|
||||||
|
&self.password_confirmation,
|
||||||
|
&self.role,
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
fn fields(&self) -> Vec<&str> {
|
fn fields(&self) -> Vec<&str> {
|
||||||
vec![
|
vec![
|
||||||
"Username",
|
"Username",
|
||||||
@@ -248,50 +200,41 @@ impl CanvasState for RegisterState {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_current_field(&mut self, index: usize) {
|
fn has_unsaved_changes(&self) -> bool {
|
||||||
if index < 5 {
|
self.has_unsaved_changes
|
||||||
self.current_field = index;
|
|
||||||
let len = match self.current_field {
|
|
||||||
0 => self.username.len(),
|
|
||||||
1 => self.email.len(),
|
|
||||||
2 => self.password.len(),
|
|
||||||
3 => self.password_confirmation.len(),
|
|
||||||
4 => self.role.len(),
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
self.current_cursor_pos = self.current_cursor_pos.min(len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_current_cursor_pos(&mut self, pos: usize) {
|
|
||||||
let len = match self.current_field {
|
|
||||||
0 => self.username.len(),
|
|
||||||
1 => self.email.len(),
|
|
||||||
2 => self.password.len(),
|
|
||||||
3 => self.password_confirmation.len(),
|
|
||||||
4 => self.role.len(),
|
|
||||||
_ => 0,
|
|
||||||
};
|
|
||||||
self.current_cursor_pos = pos.min(len);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_has_unsaved_changes(&mut self, changed: bool) {
|
fn set_has_unsaved_changes(&mut self, changed: bool) {
|
||||||
self.has_unsaved_changes = changed;
|
self.has_unsaved_changes = changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_suggestions(&self) -> Option<&[String]> {
|
fn handle_feature_action(&mut self, action: &CanvasAction, _context: &ActionContext) -> Option<String> {
|
||||||
if self.current_field == 4 && self.in_suggestion_mode && self.show_role_suggestions {
|
match action {
|
||||||
Some(&self.role_suggestions)
|
CanvasAction::Custom(action_str) if action_str == "submit" => {
|
||||||
} else {
|
if !self.username.is_empty() {
|
||||||
None
|
Some(format!("Submitting registration for: {}", self.username))
|
||||||
}
|
} else {
|
||||||
}
|
Some("Username is required".to_string())
|
||||||
|
}
|
||||||
fn get_selected_suggestion_index(&self) -> Option<usize> {
|
}
|
||||||
if self.current_field == 4 && self.in_suggestion_mode && self.show_role_suggestions {
|
_ => None,
|
||||||
self.selected_suggestion_index
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add autocomplete support for RegisterState
|
||||||
|
impl AutocompleteCanvasState for RegisterState {
|
||||||
|
type SuggestionData = String;
|
||||||
|
|
||||||
|
fn supports_autocomplete(&self, field_index: usize) -> bool {
|
||||||
|
field_index == 4 // Only role field supports autocomplete
|
||||||
|
}
|
||||||
|
|
||||||
|
fn autocomplete_state(&self) -> Option<&AutocompleteState<Self::SuggestionData>> {
|
||||||
|
Some(&self.autocomplete)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn autocomplete_state_mut(&mut self) -> Option<&mut AutocompleteState<Self::SuggestionData>> {
|
||||||
|
Some(&mut self.autocomplete)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user