terminal.rs huge changes

This commit is contained in:
filipriec
2025-03-21 12:05:18 +01:00
parent d3f6296d67
commit 5edc286854
12 changed files with 247 additions and 207 deletions

View File

@@ -1,7 +1,11 @@
// src/modes/handlers/command_mode.rs // src/modes/handlers/command_mode.rs
use crossterm::event::{KeyEvent, KeyCode, KeyModifiers}; use crossterm::event::{KeyEvent, KeyCode, KeyModifiers};
use crate::tui::terminal::AppTerminal; use crate::tui::terminal::{
core::TerminalCore,
grpc_client::GrpcClient,
commands::CommandHandler,
};
use crate::config::config::Config; use crate::config::config::Config;
use crate::ui::handlers::form::FormState; use crate::ui::handlers::form::FormState;
use super::common; use super::common;
@@ -12,7 +16,7 @@ pub async fn handle_command_event(
form_state: &mut FormState, form_state: &mut FormState,
command_input: &mut String, command_input: &mut String,
command_message: &mut String, command_message: &mut String,
app_terminal: &mut AppTerminal, grpc_client: &mut GrpcClient,
is_saved: &mut bool, is_saved: &mut bool,
current_position: &mut u64, current_position: &mut u64,
total_count: u64, total_count: u64,
@@ -65,7 +69,7 @@ async fn process_command(
form_state: &mut FormState, form_state: &mut FormState,
command_input: &mut String, command_input: &mut String,
command_message: &mut String, command_message: &mut String,
app_terminal: &mut AppTerminal, grpc_client: &mut GrpcClient,
is_saved: &mut bool, is_saved: &mut bool,
current_position: &mut u64, current_position: &mut u64,
total_count: u64, total_count: u64,

View File

@@ -1,6 +1,10 @@
// src/modes/handlers/common.rs // src/modes/handlers/common.rs
use crate::tui::terminal::AppTerminal; use crate::tui::terminal::{
core::TerminalCore,
grpc_client::GrpcClient,
commands::CommandHandler,
};
use crate::ui::handlers::form::FormState; use crate::ui::handlers::form::FormState;
use common::proto::multieko2::adresar::{PostAdresarRequest, PutAdresarRequest}; use common::proto::multieko2::adresar::{PostAdresarRequest, PutAdresarRequest};

View File

@@ -1,7 +1,11 @@
// src/modes/handlers/edit.rs // src/modes/handlers/edit.rs
use crossterm::event::{KeyEvent, KeyCode, KeyModifiers}; use crossterm::event::{KeyEvent, KeyCode, KeyModifiers};
use crate::tui::terminal::AppTerminal; use crate::tui::terminal::{
core::TerminalCore,
grpc_client::GrpcClient,
commands::CommandHandler,
};
use crate::config::config::Config; use crate::config::config::Config;
use crate::ui::handlers::form::FormState; use crate::ui::handlers::form::FormState;
use super::common; use super::common;
@@ -13,7 +17,7 @@ pub async fn handle_edit_event_internal(
form_state: &mut FormState, form_state: &mut FormState,
ideal_cursor_column: &mut usize, ideal_cursor_column: &mut usize,
command_message: &mut String, command_message: &mut String,
app_terminal: &mut AppTerminal, // Add these parameters terminal: &mut TerminalCore,
is_saved: &mut bool, is_saved: &mut bool,
current_position: &mut u64, current_position: &mut u64,
total_count: u64, total_count: u64,

View File

@@ -2,7 +2,11 @@
use crossterm::event::Event; use crossterm::event::Event;
use crossterm::cursor::SetCursorStyle; use crossterm::cursor::SetCursorStyle;
use crate::tui::terminal::AppTerminal; use crate::tui::terminal::{
core::TerminalCore,
grpc_client::GrpcClient,
commands::CommandHandler,
};
use crate::config::config::Config; use crate::config::config::Config;
use crate::ui::handlers::form::FormState; use crate::ui::handlers::form::FormState;
use crate::modes::handlers::{edit, command_mode, read_only}; use crate::modes::handlers::{edit, command_mode, read_only};
@@ -36,7 +40,9 @@ impl EventHandler {
&mut self, &mut self,
event: Event, event: Event,
config: &Config, config: &Config,
app_terminal: &mut AppTerminal, terminal: &mut TerminalCore,
grpc_client: &mut GrpcClient,
command_handler: &mut CommandHandler,
form_state: &mut FormState, form_state: &mut FormState,
is_saved: &mut bool, is_saved: &mut bool,
total_count: u64, total_count: u64,
@@ -52,7 +58,7 @@ impl EventHandler {
"save" => { "save" => {
let message = common::save( let message = common::save(
form_state, form_state,
app_terminal, grpc_client,
is_saved, is_saved,
current_position, current_position,
total_count, total_count,
@@ -60,22 +66,17 @@ impl EventHandler {
return Ok((false, message)); return Ok((false, message));
}, },
"force_quit" => { "force_quit" => {
let (should_exit, message) = common::force_quit(); let (should_exit, message) = command_handler.handle_command("force_quit", terminal).await?;
return Ok((should_exit, message)); return Ok((should_exit, message));
}, },
"save_and_quit" => { "save_and_quit" => {
let (should_exit, message) = common::save_and_quit( let (should_exit, message) = command_handler.handle_command("save_and_quit", terminal).await?;
form_state,
app_terminal,
current_position,
total_count,
).await?;
return Ok((should_exit, message)); return Ok((should_exit, message));
}, },
"revert" => { "revert" => {
let message = common::revert( let message = common::revert(
form_state, form_state,
app_terminal, grpc_client,
current_position, current_position,
total_count, total_count,
).await?; ).await?;
@@ -93,7 +94,7 @@ impl EventHandler {
form_state, form_state,
&mut self.command_input, &mut self.command_input,
&mut self.command_message, &mut self.command_message,
app_terminal, grpc_client,
is_saved, is_saved,
current_position, current_position,
total_count, total_count,
@@ -124,7 +125,7 @@ impl EventHandler {
self.is_edit_mode = false; self.is_edit_mode = false;
self.edit_mode_cooldown = true; self.edit_mode_cooldown = true;
self.command_message = "Read-only mode".to_string(); self.command_message = "Read-only mode".to_string();
app_terminal.set_cursor_style(SetCursorStyle::SteadyBlock)?; terminal.set_cursor_style(SetCursorStyle::SteadyBlock)?;
let current_input = form_state.get_current_input(); let current_input = form_state.get_current_input();
if !current_input.is_empty() && form_state.current_cursor_pos >= current_input.len() { if !current_input.is_empty() && form_state.current_cursor_pos >= current_input.len() {
@@ -141,7 +142,8 @@ impl EventHandler {
form_state, form_state,
&mut self.ideal_cursor_column, &mut self.ideal_cursor_column,
&mut self.command_message, &mut self.command_message,
app_terminal, terminal,
grpc_client,
is_saved, is_saved,
current_position, current_position,
total_count, total_count,
@@ -152,7 +154,6 @@ impl EventHandler {
} else { } else {
// In READ-ONLY mode, we DO want to check for entering command mode // In READ-ONLY mode, we DO want to check for entering command mode
// Check for entering command mode (only in read-only mode) // Check for entering command mode (only in read-only mode)
// Use get_read_only_action_for_key instead of is_enter_command_mode
if let Some(action) = config.get_read_only_action_for_key(key.code, key.modifiers) { if let Some(action) = config.get_read_only_action_for_key(key.code, key.modifiers) {
if action == "enter_command_mode" { if action == "enter_command_mode" {
self.command_mode = true; self.command_mode = true;
@@ -167,7 +168,7 @@ impl EventHandler {
self.is_edit_mode = true; self.is_edit_mode = true;
self.edit_mode_cooldown = true; self.edit_mode_cooldown = true;
self.command_message = "Edit mode".to_string(); self.command_message = "Edit mode".to_string();
app_terminal.set_cursor_style(SetCursorStyle::BlinkingBar)?; terminal.set_cursor_style(SetCursorStyle::BlinkingBar)?;
return Ok((false, self.command_message.clone())); return Ok((false, self.command_message.clone()));
} }
@@ -180,7 +181,7 @@ impl EventHandler {
self.is_edit_mode = true; self.is_edit_mode = true;
self.edit_mode_cooldown = true; self.edit_mode_cooldown = true;
self.command_message = "Edit mode (after cursor)".to_string(); self.command_message = "Edit mode (after cursor)".to_string();
app_terminal.set_cursor_style(SetCursorStyle::BlinkingBar)?; terminal.set_cursor_style(SetCursorStyle::BlinkingBar)?;
return Ok((false, self.command_message.clone())); return Ok((false, self.command_message.clone()));
} }
@@ -192,7 +193,8 @@ impl EventHandler {
&mut self.key_sequence_tracker, &mut self.key_sequence_tracker,
current_position, current_position,
total_count, total_count,
app_terminal, terminal,
grpc_client,
&mut self.command_message, &mut self.command_message,
&mut self.edit_mode_cooldown, &mut self.edit_mode_cooldown,
&mut self.ideal_cursor_column, &mut self.ideal_cursor_column,

View File

@@ -4,7 +4,11 @@ use crossterm::event::{KeyEvent};
use crate::config::config::Config; use crate::config::config::Config;
use crate::ui::handlers::form::FormState; use crate::ui::handlers::form::FormState;
use crate::config::key_sequences::KeySequenceTracker; use crate::config::key_sequences::KeySequenceTracker;
use crate::tui::terminal::AppTerminal; use crate::tui::terminal::{
core::TerminalCore,
grpc_client::GrpcClient,
commands::CommandHandler,
};
#[derive(PartialEq)] #[derive(PartialEq)]
enum CharType { enum CharType {

View File

View File

@@ -1,174 +1,11 @@
// src/client/terminal.rs // src/tui/terminal.rs
use crossterm::event::{self, Event};
use crossterm::{
execute,
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen},
};
use crossterm::cursor::{SetCursorStyle, EnableBlinking};
use ratatui::{backend::CrosstermBackend, Terminal};
use std::io::{self, stdout, Write};
use tonic::transport::Channel;
use ratatui::backend::Backend;
// Import the correct clients and proto messages from their respective modules pub mod core;
use common::proto::multieko2::adresar::adresar_client::AdresarClient; pub mod grpc_client;
use common::proto::multieko2::adresar::{AdresarResponse, PostAdresarRequest, PutAdresarRequest}; pub mod commands;
use common::proto::multieko2::common::{CountResponse, PositionRequest, Empty}; pub mod events;
use common::proto::multieko2::table_structure::table_structure_service_client::TableStructureServiceClient;
use common::proto::multieko2::table_structure::TableStructureResponse;
pub struct AppTerminal { pub use core::TerminalCore;
terminal: Terminal<CrosstermBackend<io::Stdout>>, pub use grpc_client::GrpcClient;
adresar_client: AdresarClient<Channel>, pub use commands::CommandHandler;
table_structure_client: TableStructureServiceClient<Channel>, pub use events::EventHandler;
}
impl Drop for AppTerminal {
fn drop(&mut self) {
let _ = self.cleanup(); // Best-effort cleanup during drop
}
}
impl AppTerminal {
pub fn set_cursor_style(
&mut self,
style: SetCursorStyle,
) -> Result<(), Box<dyn std::error::Error>> {
execute!(
self.terminal.backend_mut(),
style,
EnableBlinking,
)?;
Ok(())
}
pub async fn new() -> Result<Self, Box<dyn std::error::Error>> {
enable_raw_mode()?;
let mut stdout = stdout();
execute!(
stdout,
EnterAlternateScreen,
SetCursorStyle::SteadyBlock
)?;
let backend = CrosstermBackend::new(stdout);
let terminal = Terminal::new(backend)?;
// Initialize both gRPC clients
let adresar_client = AdresarClient::connect("http://[::1]:50051").await?;
let table_structure_client = TableStructureServiceClient::connect("http://[::1]:50051").await?;
Ok(Self { terminal, adresar_client, table_structure_client })
}
pub fn draw<F>(&mut self, f: F) -> Result<(), Box<dyn std::error::Error>>
where
F: FnOnce(&mut ratatui::Frame),
{
self.terminal.draw(f)?;
Ok(())
}
pub fn read_event(&self) -> Result<Event, Box<dyn std::error::Error>> {
Ok(event::read()?)
}
pub fn cleanup(&mut self) -> Result<(), Box<dyn std::error::Error>> {
// Get a separate stdout handle for cleanup operations
let mut stdout = stdout();
// Step 1: Show cursor first (most important for user experience)
execute!(stdout, crossterm::cursor::Show)?;
// Step 2: Reset cursor style to default
execute!(stdout, crossterm::cursor::SetCursorStyle::DefaultUserShape)?;
// Step 3: Leave alternate screen mode
execute!(stdout, crossterm::terminal::LeaveAlternateScreen)?;
// Step 4: Disable raw mode
disable_raw_mode()?;
// Step 5: Flush all pending changes to ensure they're applied
stdout.flush()?;
// Step 6: Final reset - clear screen and move cursor to home position
// This ensures terminal is in a known good state
execute!(
stdout,
crossterm::terminal::Clear(crossterm::terminal::ClearType::All),
crossterm::cursor::MoveTo(0, 0)
)?;
Ok(())
}
pub async fn handle_command(
&mut self,
action: &str,
is_saved: &mut bool,
) -> Result<(bool, String), Box<dyn std::error::Error>> {
match action {
"quit" => {
if *is_saved {
self.cleanup()?;
Ok((true, "Exiting.".to_string()))
} else {
Ok((false, "No changes saved. Use :q! to force quit.".to_string()))
}
}
"force_quit" => {
self.cleanup()?;
Ok((true, "Force exiting without saving.".to_string()))
}
"save_and_quit" => {
*is_saved = true;
self.cleanup()?;
Ok((true, "State saved. Exiting.".to_string()))
}
_ => Ok((false, format!("Action not recognized: {}", action))),
}
}
// Adresar service methods use adresar_client
pub async fn get_adresar_count(&mut self) -> Result<u64, Box<dyn std::error::Error>> {
let request = tonic::Request::new(Empty::default());
let response: CountResponse = self.adresar_client.get_adresar_count(request).await?.into_inner();
Ok(response.count as u64)
}
pub async fn get_adresar_by_position(&mut self, position: u64) -> Result<AdresarResponse, Box<dyn std::error::Error>> {
let request = tonic::Request::new(PositionRequest { position: position as i64 });
let response: AdresarResponse = self.adresar_client.get_adresar_by_position(request).await?.into_inner();
Ok(response)
}
pub async fn post_adresar(
&mut self,
request: PostAdresarRequest,
) -> Result<tonic::Response<AdresarResponse>, Box<dyn std::error::Error>> {
let request = tonic::Request::new(request);
let response = self.adresar_client.post_adresar(request).await?;
Ok(response)
}
pub async fn put_adresar(
&mut self,
request: PutAdresarRequest,
) -> Result<tonic::Response<AdresarResponse>, Box<dyn std::error::Error>> {
let request = tonic::Request::new(request);
let response = self.adresar_client.put_adresar(request).await?;
Ok(response)
}
// Table structure method uses table_structure_client
pub async fn get_table_structure(
&mut self,
) -> Result<TableStructureResponse, Box<dyn std::error::Error>> {
let request = tonic::Request::new(Empty::default());
let response = self.table_structure_client
.get_adresar_table_structure(request)
.await?;
Ok(response.into_inner())
}
}

View File

@@ -0,0 +1,48 @@
// src/tui/terminal/commands.rs
use crate::tui::terminal::core::TerminalCore;
use crate::tui::terminal::grpc_client::GrpcClient;
pub struct CommandHandler {
grpc_client: GrpcClient,
is_saved: bool,
}
impl CommandHandler {
pub fn new(grpc_client: GrpcClient) -> Self {
Self { grpc_client, is_saved: false }
}
pub async fn handle_command(
&mut self,
action: &str,
terminal: &mut TerminalCore
) -> Result<(bool, String), Box<dyn std::error::Error>> {
match action {
"quit" => self.handle_quit(terminal).await,
"force_quit" => self.handle_force_quit(terminal).await,
"save_and_quit" => self.handle_save_quit(terminal).await,
_ => Ok((false, format!("Unknown command: {}", action))),
}
}
async fn handle_quit(&self, terminal: &mut TerminalCore) -> Result<(bool, String), Box<dyn std::error::Error>> {
if self.is_saved {
terminal.cleanup()?;
Ok((true, "Exiting.".into()))
} else {
Ok((false, "No changes saved. Use :q! to force quit.".into()))
}
}
async fn handle_force_quit(&self, terminal: &mut TerminalCore) -> Result<(bool, String), Box<dyn std::error::Error>> {
terminal.cleanup()?;
Ok((true, "Force exiting without saving.".into()))
}
async fn handle_save_quit(&mut self, terminal: &mut TerminalCore) -> Result<(bool, String), Box<dyn std::error::Error>> {
self.is_saved = true;
terminal.cleanup()?;
Ok((true, "State saved. Exiting.".into()))
}
}

View File

@@ -0,0 +1,65 @@
// src/tui/terminal/core.rs
use crossterm::{
execute,
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
cursor::{SetCursorStyle, EnableBlinking, Show, MoveTo},
event::Event,
};
use ratatui::{backend::CrosstermBackend, Terminal};
use std::io::{self, stdout, Write};
pub struct TerminalCore {
terminal: Terminal<CrosstermBackend<io::Stdout>>,
}
impl TerminalCore {
pub fn new() -> Result<Self, Box<dyn std::error::Error>> {
enable_raw_mode()?;
let mut stdout = stdout();
execute!(
stdout,
EnterAlternateScreen,
SetCursorStyle::SteadyBlock,
EnableBlinking
)?;
let backend = CrosstermBackend::new(stdout);
let terminal = Terminal::new(backend)?;
Ok(Self { terminal })
}
pub fn draw<F>(&mut self, f: F) -> Result<(), Box<dyn std::error::Error>>
where
F: FnOnce(&mut ratatui::Frame),
{
self.terminal.draw(f)?;
Ok(())
}
pub fn cleanup(&mut self) -> Result<(), Box<dyn std::error::Error>> {
let mut stdout = stdout();
execute!(stdout, Show)?;
execute!(stdout, SetCursorStyle::DefaultUserShape)?;
execute!(stdout, LeaveAlternateScreen)?;
disable_raw_mode()?;
stdout.flush()?;
execute!(
stdout,
crossterm::terminal::Clear(crossterm::terminal::ClearType::All),
MoveTo(0, 0)
)?;
Ok(())
}
pub fn set_cursor_style(
&mut self,
style: SetCursorStyle,
) -> Result<(), Box<dyn std::error::Error>> {
execute!(
self.terminal.backend_mut(),
style,
EnableBlinking,
)?;
Ok(())
}
}

View File

@@ -0,0 +1,15 @@
// src/tui/terminal/events.rs
use crossterm::event::{self, Event};
pub struct EventHandler;
impl EventHandler {
pub fn new() -> Self {
Self
}
pub fn read_event(&self) -> Result<Event, Box<dyn std::error::Error>> {
Ok(event::read()?)
}
}

View File

@@ -0,0 +1,51 @@
// src/tui/terminal/grpc_client.rs
use tonic::transport::Channel;
use common::proto::multieko2::adresar::adresar_client::AdresarClient;
use common::proto::multieko2::adresar::{AdresarResponse, PostAdresarRequest, PutAdresarRequest};
use common::proto::multieko2::common::{CountResponse, PositionRequest, Empty};
use common::proto::multieko2::table_structure::table_structure_service_client::TableStructureServiceClient;
use common::proto::multieko2::table_structure::TableStructureResponse;
pub struct GrpcClient {
adresar_client: AdresarClient<Channel>,
table_structure_client: TableStructureServiceClient<Channel>,
}
impl GrpcClient {
pub async fn new() -> Result<Self, Box<dyn std::error::Error>> {
let adresar_client = AdresarClient::connect("http://[::1]:50051").await?;
let table_structure_client = TableStructureServiceClient::connect("http://[::1]:50051").await?;
Ok(Self { adresar_client, table_structure_client })
}
pub async fn get_adresar_count(&mut self) -> Result<u64, Box<dyn std::error::Error>> {
let request = tonic::Request::new(Empty::default());
let response: CountResponse = self.adresar_client.get_adresar_count(request).await?.into_inner();
Ok(response.count as u64)
}
pub async fn get_adresar_by_position(&mut self, position: u64) -> Result<AdresarResponse, Box<dyn std::error::Error>> {
let request = tonic::Request::new(PositionRequest { position: position as i64 });
let response: AdresarResponse = self.adresar_client.get_adresar_by_position(request).await?.into_inner();
Ok(response)
}
pub async fn post_adresar(&mut self, request: PostAdresarRequest) -> Result<tonic::Response<AdresarResponse>, Box<dyn std::error::Error>> {
let request = tonic::Request::new(request);
let response = self.adresar_client.post_adresar(request).await?;
Ok(response)
}
pub async fn put_adresar(&mut self, request: PutAdresarRequest) -> Result<tonic::Response<AdresarResponse>, Box<dyn std::error::Error>> {
let request = tonic::Request::new(request);
let response = self.adresar_client.put_adresar(request).await?;
Ok(response)
}
pub async fn get_table_structure(&mut self) -> Result<TableStructureResponse, Box<dyn std::error::Error>> {
let request = tonic::Request::new(Empty::default());
let response = self.table_structure_client.get_adresar_table_structure(request).await?;
Ok(response.into_inner())
}
}

View File

@@ -1,6 +1,8 @@
// src/client/ui/handlers/ui.rs // src/client/ui/handlers/ui.rs
use crate::tui::terminal::AppTerminal; use crate::tui::terminal::TerminalCore;
use crate::tui::terminal::GrpcClient;
use crate::tui::terminal::CommandHandler;
use crate::config::colors::Theme; use crate::config::colors::Theme;
use crate::config::config::Config; use crate::config::config::Config;
use crate::ui::handlers::{form::FormState, render::render_ui}; use crate::ui::handlers::{form::FormState, render::render_ui};
@@ -10,12 +12,14 @@ use crate::state::state::AppState;
pub async fn run_ui() -> Result<(), Box<dyn std::error::Error>> { pub async fn run_ui() -> Result<(), Box<dyn std::error::Error>> {
let config = Config::load()?; let config = Config::load()?;
let mut app_terminal = AppTerminal::new().await?; let mut terminal = TerminalCore::new()?; // Remove .await
let mut grpc_client = GrpcClient::new().await?;
let mut command_handler = CommandHandler::new(grpc_client);
let theme = Theme::from_str(&config.colors.theme); let theme = Theme::from_str(&config.colors.theme);
// Fetch table structure at startup (one-time) // Fetch table structure at startup (one-time)
// TODO: Later, consider implementing a live update for table structure changes. // TODO: Later, consider implementing a live update for table structure changes.
let table_structure = app_terminal.get_table_structure().await?; let table_structure = grpc_client.get_table_structure().await?; // Changed
// Extract the column names from the response // Extract the column names from the response
let column_names: Vec<String> = table_structure let column_names: Vec<String> = table_structure
@@ -32,16 +36,16 @@ pub async fn run_ui() -> Result<(), Box<dyn std::error::Error>> {
let mut app_state = AppState::new()?; let mut app_state = AppState::new()?;
// Fetch the total count of Adresar entries // Fetch the total count of Adresar entries
let total_count = app_terminal.get_adresar_count().await?; let total_count = grpc_client.get_adresar_count().await?;
app_state.update_total_count(total_count); app_state.update_total_count(total_count);
app_state.update_current_position(total_count.saturating_add(1)); // Start in new entry mode app_state.update_current_position(total_count.saturating_add(1)); // Start in new entry mode
form_state.reset_to_empty(); form_state.reset_to_empty();
loop { loop {
let total_count = app_terminal.get_adresar_count().await?; let total_count = grpc_client.get_adresar_count().await?;
app_state.update_total_count(total_count); app_state.update_total_count(total_count);
app_terminal.draw(|f| { terminal.draw(|f| {
render_ui( render_ui(
f, f,
&mut form_state, &mut form_state,
@@ -56,11 +60,13 @@ pub async fn run_ui() -> Result<(), Box<dyn std::error::Error>> {
); );
})?; })?;
let event = app_terminal.read_event()?; let event = event_handler.read_event()?;
let (should_exit, message) = event_handler.handle_event( let (should_exit, message) = event_handler.handle_event(
event, event,
&config, &config,
&mut app_terminal, &mut terminal,
&mut grpc_client,
&mut command_handler,
&mut form_state, &mut form_state,
&mut app_state.is_saved, &mut app_state.is_saved,
app_state.total_count, app_state.total_count,
@@ -88,7 +94,7 @@ pub async fn run_ui() -> Result<(), Box<dyn std::error::Error>> {
form_state.current_field = 0; form_state.current_field = 0;
} else if app_state.current_position >= 1 && app_state.current_position <= total_count { } else if app_state.current_position >= 1 && app_state.current_position <= total_count {
// Existing entry - load data // Existing entry - load data
match app_terminal.get_adresar_by_position(app_state.current_position).await { match grpc_client.get_adresar_by_position(app_state.current_position).await {
Ok(response) => { Ok(response) => {
// Set the ID properly // Set the ID properly
form_state.id = response.id; form_state.id = response.id;