more fixes
This commit is contained in:
@@ -1,11 +1,7 @@
|
|||||||
// 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::{
|
use crate::tui::terminal::grpc_client::GrpcClient;
|
||||||
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;
|
||||||
@@ -38,7 +34,7 @@ pub async fn handle_command_event(
|
|||||||
form_state,
|
form_state,
|
||||||
command_input,
|
command_input,
|
||||||
command_message,
|
command_message,
|
||||||
app_terminal,
|
grpc_client,
|
||||||
is_saved,
|
is_saved,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
@@ -85,14 +81,11 @@ async fn process_command(
|
|||||||
let action = config.get_action_for_command(&command)
|
let action = config.get_action_for_command(&command)
|
||||||
.unwrap_or("unknown");
|
.unwrap_or("unknown");
|
||||||
|
|
||||||
// TODO remove in the future this comment. For debugging to instantly output action
|
|
||||||
// eprintln!("Command: '{}', Action: '{}'", command, action);
|
|
||||||
|
|
||||||
match action {
|
match action {
|
||||||
"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,
|
||||||
@@ -108,7 +101,7 @@ async fn process_command(
|
|||||||
"save_and_quit" => {
|
"save_and_quit" => {
|
||||||
let (should_exit, message) = common::save_and_quit(
|
let (should_exit, message) = common::save_and_quit(
|
||||||
form_state,
|
form_state,
|
||||||
app_terminal,
|
grpc_client,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
).await?;
|
).await?;
|
||||||
@@ -118,7 +111,7 @@ async fn process_command(
|
|||||||
"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?;
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
use crate::tui::terminal::{
|
use crate::tui::terminal::{
|
||||||
core::TerminalCore,
|
core::TerminalCore,
|
||||||
grpc_client::GrpcClient,
|
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};
|
||||||
@@ -11,7 +10,7 @@ use common::proto::multieko2::adresar::{PostAdresarRequest, PutAdresarRequest};
|
|||||||
/// Shared logic for saving the current form state
|
/// Shared logic for saving the current form state
|
||||||
pub async fn save(
|
pub async fn save(
|
||||||
form_state: &mut FormState,
|
form_state: &mut FormState,
|
||||||
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,
|
||||||
@@ -36,8 +35,8 @@ pub async fn save(
|
|||||||
skladu: form_state.values[13].clone(),
|
skladu: form_state.values[13].clone(),
|
||||||
fax: form_state.values[14].clone(),
|
fax: form_state.values[14].clone(),
|
||||||
};
|
};
|
||||||
let response = app_terminal.post_adresar(post_request).await?;
|
let response = grpc_client.post_adresar(post_request).await?;
|
||||||
let new_total = app_terminal.get_adresar_count().await?;
|
let new_total = grpc_client.get_adresar_count().await?;
|
||||||
*current_position = new_total;
|
*current_position = new_total;
|
||||||
form_state.id = response.into_inner().id;
|
form_state.id = response.into_inner().id;
|
||||||
"New entry created".to_string()
|
"New entry created".to_string()
|
||||||
@@ -60,7 +59,7 @@ pub async fn save(
|
|||||||
skladu: form_state.values[13].clone(),
|
skladu: form_state.values[13].clone(),
|
||||||
fax: form_state.values[14].clone(),
|
fax: form_state.values[14].clone(),
|
||||||
};
|
};
|
||||||
let _ = app_terminal.put_adresar(put_request).await?;
|
let _ = grpc_client.put_adresar(put_request).await?;
|
||||||
"Entry updated".to_string()
|
"Entry updated".to_string()
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -77,7 +76,7 @@ pub fn force_quit() -> (bool, String) {
|
|||||||
/// Shared logic for saving and quitting
|
/// Shared logic for saving and quitting
|
||||||
pub async fn save_and_quit(
|
pub async fn save_and_quit(
|
||||||
form_state: &mut FormState,
|
form_state: &mut FormState,
|
||||||
app_terminal: &mut AppTerminal,
|
grpc_client: &mut GrpcClient,
|
||||||
current_position: &mut u64,
|
current_position: &mut u64,
|
||||||
total_count: u64,
|
total_count: u64,
|
||||||
) -> Result<(bool, String), Box<dyn std::error::Error>> {
|
) -> Result<(bool, String), Box<dyn std::error::Error>> {
|
||||||
@@ -101,7 +100,7 @@ pub async fn save_and_quit(
|
|||||||
skladu: form_state.values[13].clone(),
|
skladu: form_state.values[13].clone(),
|
||||||
fax: form_state.values[14].clone(),
|
fax: form_state.values[14].clone(),
|
||||||
};
|
};
|
||||||
let _ = app_terminal.post_adresar(post_request).await?;
|
let _ = grpc_client.post_adresar(post_request).await?;
|
||||||
} else {
|
} else {
|
||||||
let put_request = PutAdresarRequest {
|
let put_request = PutAdresarRequest {
|
||||||
id: form_state.id,
|
id: form_state.id,
|
||||||
@@ -121,7 +120,7 @@ pub async fn save_and_quit(
|
|||||||
skladu: form_state.values[13].clone(),
|
skladu: form_state.values[13].clone(),
|
||||||
fax: form_state.values[14].clone(),
|
fax: form_state.values[14].clone(),
|
||||||
};
|
};
|
||||||
let _ = app_terminal.put_adresar(put_request).await?;
|
let _ = grpc_client.put_adresar(put_request).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok((true, "Saved and exiting application".to_string()))
|
Ok((true, "Saved and exiting application".to_string()))
|
||||||
@@ -130,7 +129,7 @@ pub async fn save_and_quit(
|
|||||||
/// Discard changes since last save
|
/// Discard changes since last save
|
||||||
pub async fn revert(
|
pub async fn revert(
|
||||||
form_state: &mut FormState,
|
form_state: &mut FormState,
|
||||||
app_terminal: &mut AppTerminal,
|
grpc_client: &mut GrpcClient,
|
||||||
current_position: &mut u64,
|
current_position: &mut u64,
|
||||||
total_count: u64,
|
total_count: u64,
|
||||||
) -> Result<String, Box<dyn std::error::Error>> {
|
) -> Result<String, Box<dyn std::error::Error>> {
|
||||||
@@ -143,7 +142,7 @@ pub async fn revert(
|
|||||||
return Ok("New entry cleared".to_string());
|
return Ok("New entry cleared".to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
let data = app_terminal.get_adresar_by_position(*current_position).await?;
|
let data = grpc_client.get_adresar_by_position(*current_position).await?;
|
||||||
|
|
||||||
// Update form fields with saved values
|
// Update form fields with saved values
|
||||||
form_state.values = vec![
|
form_state.values = vec![
|
||||||
|
|||||||
@@ -4,13 +4,11 @@ use crossterm::event::{KeyEvent, KeyCode, KeyModifiers};
|
|||||||
use crate::tui::terminal::{
|
use crate::tui::terminal::{
|
||||||
core::TerminalCore,
|
core::TerminalCore,
|
||||||
grpc_client::GrpcClient,
|
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;
|
||||||
|
|
||||||
// This function is called from event.rs and doesn't need to handle mode transitions anymore
|
|
||||||
pub async fn handle_edit_event_internal(
|
pub async fn handle_edit_event_internal(
|
||||||
key: KeyEvent,
|
key: KeyEvent,
|
||||||
config: &Config,
|
config: &Config,
|
||||||
@@ -21,20 +19,20 @@ pub async fn handle_edit_event_internal(
|
|||||||
is_saved: &mut bool,
|
is_saved: &mut bool,
|
||||||
current_position: &mut u64,
|
current_position: &mut u64,
|
||||||
total_count: u64,
|
total_count: u64,
|
||||||
|
grpc_client: &mut GrpcClient, // Changed from AppTerminal
|
||||||
) -> Result<String, Box<dyn std::error::Error>> {
|
) -> Result<String, Box<dyn std::error::Error>> {
|
||||||
if let Some(action) = config.get_edit_action_for_key(key.code, key.modifiers) {
|
if let Some(action) = config.get_edit_action_for_key(key.code, key.modifiers) {
|
||||||
return execute_edit_action(
|
return execute_edit_action(
|
||||||
action,
|
action,
|
||||||
form_state,
|
form_state,
|
||||||
ideal_cursor_column,
|
ideal_cursor_column,
|
||||||
app_terminal, // Pass them here
|
grpc_client, // Changed from AppTerminal
|
||||||
is_saved,
|
is_saved,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
).await;
|
).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If no Edit mode action is found, handle fallback behavior
|
|
||||||
handle_edit_specific_input(
|
handle_edit_specific_input(
|
||||||
key,
|
key,
|
||||||
form_state,
|
form_state,
|
||||||
@@ -44,16 +42,13 @@ pub async fn handle_edit_event_internal(
|
|||||||
Ok(command_message.clone())
|
Ok(command_message.clone())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle edit-specific key input as a fallback (character input, backspace, delete)
|
|
||||||
fn handle_edit_specific_input(
|
fn handle_edit_specific_input(
|
||||||
key: KeyEvent,
|
key: KeyEvent,
|
||||||
form_state: &mut FormState,
|
form_state: &mut FormState,
|
||||||
ideal_cursor_column: &mut usize,
|
ideal_cursor_column: &mut usize,
|
||||||
) {
|
) {
|
||||||
// This is now explicitly a fallback function for default edit behavior
|
|
||||||
match key.code {
|
match key.code {
|
||||||
KeyCode::Char(c) => {
|
KeyCode::Char(c) => {
|
||||||
// Character input
|
|
||||||
let cursor_pos = form_state.current_cursor_pos;
|
let cursor_pos = form_state.current_cursor_pos;
|
||||||
let field_value = form_state.get_current_input_mut();
|
let field_value = form_state.get_current_input_mut();
|
||||||
let mut chars: Vec<char> = field_value.chars().collect();
|
let mut chars: Vec<char> = field_value.chars().collect();
|
||||||
@@ -66,7 +61,6 @@ fn handle_edit_specific_input(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
KeyCode::Backspace => {
|
KeyCode::Backspace => {
|
||||||
// Delete character backward
|
|
||||||
if form_state.current_cursor_pos > 0 {
|
if form_state.current_cursor_pos > 0 {
|
||||||
let cursor_pos = form_state.current_cursor_pos;
|
let cursor_pos = form_state.current_cursor_pos;
|
||||||
let field_value = form_state.get_current_input_mut();
|
let field_value = form_state.get_current_input_mut();
|
||||||
@@ -81,7 +75,6 @@ fn handle_edit_specific_input(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
KeyCode::Delete => {
|
KeyCode::Delete => {
|
||||||
// Delete character forward
|
|
||||||
let cursor_pos = form_state.current_cursor_pos;
|
let cursor_pos = form_state.current_cursor_pos;
|
||||||
let field_value = form_state.get_current_input_mut();
|
let field_value = form_state.get_current_input_mut();
|
||||||
let chars: Vec<char> = field_value.chars().collect();
|
let chars: Vec<char> = field_value.chars().collect();
|
||||||
@@ -93,7 +86,6 @@ fn handle_edit_specific_input(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
KeyCode::Tab => {
|
KeyCode::Tab => {
|
||||||
// Tab key special handling
|
|
||||||
if key.modifiers.contains(KeyModifiers::SHIFT) {
|
if key.modifiers.contains(KeyModifiers::SHIFT) {
|
||||||
if form_state.current_field == 0 {
|
if form_state.current_field == 0 {
|
||||||
form_state.current_field = form_state.fields.len() - 1;
|
form_state.current_field = form_state.fields.len() - 1;
|
||||||
@@ -108,13 +100,12 @@ fn handle_edit_specific_input(
|
|||||||
form_state.current_cursor_pos = (*ideal_cursor_column).min(max_cursor_pos);
|
form_state.current_cursor_pos = (*ideal_cursor_column).min(max_cursor_pos);
|
||||||
}
|
}
|
||||||
KeyCode::Enter => {
|
KeyCode::Enter => {
|
||||||
// Enter key moves to next field
|
|
||||||
form_state.current_field = (form_state.current_field + 1) % form_state.fields.len();
|
form_state.current_field = (form_state.current_field + 1) % form_state.fields.len();
|
||||||
let current_input = form_state.get_current_input();
|
let current_input = form_state.get_current_input();
|
||||||
let max_cursor_pos = current_input.len();
|
let max_cursor_pos = current_input.len();
|
||||||
form_state.current_cursor_pos = (*ideal_cursor_column).min(max_cursor_pos);
|
form_state.current_cursor_pos = (*ideal_cursor_column).min(max_cursor_pos);
|
||||||
}
|
}
|
||||||
_ => {} // Ignore other keys
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -122,7 +113,7 @@ async fn execute_edit_action(
|
|||||||
action: &str,
|
action: &str,
|
||||||
form_state: &mut FormState,
|
form_state: &mut FormState,
|
||||||
ideal_cursor_column: &mut usize,
|
ideal_cursor_column: &mut usize,
|
||||||
app_terminal: &mut AppTerminal,
|
grpc_client: &mut GrpcClient, // Changed from AppTerminal
|
||||||
is_saved: &mut bool,
|
is_saved: &mut bool,
|
||||||
current_position: &mut u64,
|
current_position: &mut u64,
|
||||||
total_count: u64,
|
total_count: u64,
|
||||||
@@ -131,13 +122,12 @@ async fn execute_edit_action(
|
|||||||
"save" => {
|
"save" => {
|
||||||
common::save(
|
common::save(
|
||||||
form_state,
|
form_state,
|
||||||
app_terminal,
|
grpc_client, // Changed from AppTerminal
|
||||||
is_saved,
|
is_saved,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
).await
|
).await
|
||||||
},
|
},
|
||||||
// Navigation actions
|
|
||||||
"move_left" => {
|
"move_left" => {
|
||||||
form_state.current_cursor_pos = form_state.current_cursor_pos.saturating_sub(1);
|
form_state.current_cursor_pos = form_state.current_cursor_pos.saturating_sub(1);
|
||||||
*ideal_cursor_column = form_state.current_cursor_pos;
|
*ideal_cursor_column = form_state.current_cursor_pos;
|
||||||
|
|||||||
@@ -86,7 +86,6 @@ impl EventHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle command mode with highest priority
|
|
||||||
if self.command_mode {
|
if self.command_mode {
|
||||||
let (should_exit, message, exit_command_mode) = command_mode::handle_command_event(
|
let (should_exit, message, exit_command_mode) = command_mode::handle_command_event(
|
||||||
key,
|
key,
|
||||||
@@ -104,19 +103,10 @@ impl EventHandler {
|
|||||||
self.command_mode = false;
|
self.command_mode = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if !message.is_empty() || should_exit {
|
return Ok((should_exit, message));
|
||||||
return Ok((should_exit, message));
|
|
||||||
}
|
|
||||||
|
|
||||||
return Ok((false, String::new()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mode transitions and mode-specific handling
|
|
||||||
if self.is_edit_mode {
|
if self.is_edit_mode {
|
||||||
// When in EDIT mode, we DON'T want to check for entering command mode
|
|
||||||
// as ':' should just be a normal character input
|
|
||||||
|
|
||||||
// Check for exiting edit mode
|
|
||||||
if config.is_exit_edit_mode(key.code, key.modifiers) {
|
if config.is_exit_edit_mode(key.code, key.modifiers) {
|
||||||
if form_state.has_unsaved_changes {
|
if form_state.has_unsaved_changes {
|
||||||
self.command_message = "Unsaved changes! Use :w to save or :q! to discard".to_string();
|
self.command_message = "Unsaved changes! Use :w to save or :q! to discard".to_string();
|
||||||
@@ -135,7 +125,6 @@ impl EventHandler {
|
|||||||
return Ok((false, self.command_message.clone()));
|
return Ok((false, self.command_message.clone()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle edit mode events
|
|
||||||
let result = edit::handle_edit_event_internal(
|
let result = edit::handle_edit_event_internal(
|
||||||
key,
|
key,
|
||||||
config,
|
config,
|
||||||
@@ -143,17 +132,15 @@ impl EventHandler {
|
|||||||
&mut self.ideal_cursor_column,
|
&mut self.ideal_cursor_column,
|
||||||
&mut self.command_message,
|
&mut self.command_message,
|
||||||
terminal,
|
terminal,
|
||||||
grpc_client,
|
|
||||||
is_saved,
|
is_saved,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
|
grpc_client, // Moved to end to match parameter order
|
||||||
).await?;
|
).await?;
|
||||||
|
|
||||||
self.key_sequence_tracker.reset();
|
self.key_sequence_tracker.reset();
|
||||||
return Ok((false, result));
|
return Ok((false, result));
|
||||||
} else {
|
} else {
|
||||||
// In READ-ONLY mode, we DO want to check for entering command mode
|
|
||||||
// Check for entering command mode (only in read-only 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;
|
||||||
@@ -163,7 +150,6 @@ impl EventHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for entering edit mode from read-only mode
|
|
||||||
if config.is_enter_edit_mode_before(key.code, key.modifiers) {
|
if config.is_enter_edit_mode_before(key.code, key.modifiers) {
|
||||||
self.is_edit_mode = true;
|
self.is_edit_mode = true;
|
||||||
self.edit_mode_cooldown = true;
|
self.edit_mode_cooldown = true;
|
||||||
@@ -185,7 +171,6 @@ impl EventHandler {
|
|||||||
return Ok((false, self.command_message.clone()));
|
return Ok((false, self.command_message.clone()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle read-only mode events
|
|
||||||
return read_only::handle_read_only_event(
|
return read_only::handle_read_only_event(
|
||||||
key,
|
key,
|
||||||
config,
|
config,
|
||||||
@@ -194,10 +179,10 @@ impl EventHandler {
|
|||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
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,
|
||||||
|
grpc_client, // Moved to end
|
||||||
).await;
|
).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ use crate::config::key_sequences::KeySequenceTracker;
|
|||||||
use crate::tui::terminal::{
|
use crate::tui::terminal::{
|
||||||
core::TerminalCore,
|
core::TerminalCore,
|
||||||
grpc_client::GrpcClient,
|
grpc_client::GrpcClient,
|
||||||
commands::CommandHandler,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(PartialEq)]
|
#[derive(PartialEq)]
|
||||||
@@ -24,7 +23,8 @@ pub async fn handle_read_only_event(
|
|||||||
key_sequence_tracker: &mut KeySequenceTracker,
|
key_sequence_tracker: &mut KeySequenceTracker,
|
||||||
current_position: &mut u64,
|
current_position: &mut u64,
|
||||||
total_count: u64,
|
total_count: u64,
|
||||||
app_terminal: &mut AppTerminal,
|
terminal: &mut TerminalCore,
|
||||||
|
grpc_client: &mut GrpcClient,
|
||||||
command_message: &mut String,
|
command_message: &mut String,
|
||||||
edit_mode_cooldown: &mut bool,
|
edit_mode_cooldown: &mut bool,
|
||||||
ideal_cursor_column: &mut usize,
|
ideal_cursor_column: &mut usize,
|
||||||
@@ -62,7 +62,7 @@ pub async fn handle_read_only_event(
|
|||||||
command_message,
|
command_message,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
app_terminal,
|
grpc_client,
|
||||||
).await?;
|
).await?;
|
||||||
key_sequence_tracker.reset();
|
key_sequence_tracker.reset();
|
||||||
return Ok((false, result));
|
return Ok((false, result));
|
||||||
@@ -84,7 +84,7 @@ pub async fn handle_read_only_event(
|
|||||||
command_message,
|
command_message,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
app_terminal,
|
grpc_client,
|
||||||
).await?;
|
).await?;
|
||||||
key_sequence_tracker.reset();
|
key_sequence_tracker.reset();
|
||||||
return Ok((false, result));
|
return Ok((false, result));
|
||||||
@@ -103,7 +103,7 @@ pub async fn handle_read_only_event(
|
|||||||
command_message,
|
command_message,
|
||||||
current_position,
|
current_position,
|
||||||
total_count,
|
total_count,
|
||||||
app_terminal,
|
grpc_client,
|
||||||
).await?;
|
).await?;
|
||||||
return Ok((false, result));
|
return Ok((false, result));
|
||||||
}
|
}
|
||||||
@@ -129,14 +129,14 @@ async fn execute_action(
|
|||||||
command_message: &mut String,
|
command_message: &mut String,
|
||||||
current_position: &mut u64,
|
current_position: &mut u64,
|
||||||
total_count: u64,
|
total_count: u64,
|
||||||
app_terminal: &mut AppTerminal,
|
grpc_client: &mut GrpcClient,
|
||||||
) -> Result<String, Box<dyn std::error::Error>> {
|
) -> Result<String, Box<dyn std::error::Error>> {
|
||||||
match action {
|
match action {
|
||||||
"previous_entry" => {
|
"previous_entry" => {
|
||||||
let new_position = current_position.saturating_sub(1);
|
let new_position = current_position.saturating_sub(1);
|
||||||
if new_position >= 1 {
|
if new_position >= 1 {
|
||||||
*current_position = new_position;
|
*current_position = new_position;
|
||||||
match app_terminal.get_adresar_by_position(*current_position).await {
|
match grpc_client.get_adresar_by_position(*current_position).await {
|
||||||
Ok(response) => {
|
Ok(response) => {
|
||||||
form_state.id = response.id;
|
form_state.id = response.id;
|
||||||
form_state.values = vec![
|
form_state.values = vec![
|
||||||
@@ -166,7 +166,7 @@ async fn execute_action(
|
|||||||
if *current_position <= total_count {
|
if *current_position <= total_count {
|
||||||
*current_position += 1;
|
*current_position += 1;
|
||||||
if *current_position <= total_count {
|
if *current_position <= total_count {
|
||||||
match app_terminal.get_adresar_by_position(*current_position).await {
|
match grpc_client.get_adresar_by_position(*current_position).await {
|
||||||
Ok(response) => {
|
Ok(response) => {
|
||||||
form_state.id = response.id;
|
form_state.id = response.id;
|
||||||
form_state.values = vec![
|
form_state.values = vec![
|
||||||
|
|||||||
Reference in New Issue
Block a user