hardcoded adresar to general form

This commit is contained in:
filipriec
2025-06-02 10:32:39 +02:00
parent 6e2fc5349b
commit 3488ab4f6b
12 changed files with 636 additions and 375 deletions

View File

@@ -129,8 +129,6 @@ impl EventHandler {
admin_state: &mut AdminState,
buffer_state: &mut BufferState,
app_state: &mut AppState,
total_count: u64,
current_position: &mut u64,
) -> Result<EventOutcome> {
let mut current_mode = ModeManager::derive_mode(app_state, self, admin_state);
@@ -484,8 +482,6 @@ impl EventHandler {
&mut self.auth_client,
terminal,
app_state,
current_position,
total_count,
)
.await;
}
@@ -503,8 +499,8 @@ impl EventHandler {
&mut admin_state.add_table_state,
&mut admin_state.add_logic_state,
&mut self.key_sequence_tracker,
current_position,
total_count,
form_state.current_position,
form_state.total_count,
grpc_client,
&mut self.command_message,
&mut self.edit_mode_cooldown,
@@ -545,8 +541,8 @@ impl EventHandler {
&mut admin_state.add_table_state,
&mut admin_state.add_logic_state,
&mut self.key_sequence_tracker,
current_position,
total_count,
form_state.current_position,
form_state.total_count,
grpc_client,
&mut self.command_message,
&mut self.edit_mode_cooldown,
@@ -570,8 +566,6 @@ impl EventHandler {
&mut self.auth_client,
terminal,
app_state,
current_position,
total_count,
)
.await;
}
@@ -587,8 +581,6 @@ impl EventHandler {
register_state,
admin_state,
&mut self.ideal_cursor_column,
current_position,
total_count,
grpc_client,
app_state,
)
@@ -677,8 +669,6 @@ impl EventHandler {
grpc_client,
command_handler,
terminal,
current_position,
total_count,
)
.await?;
self.command_mode = false;