Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: enable to set default filter #74

Merged
merged 1 commit into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 16 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crossterm::style::Attribute;
use promkit::{
jsonz::format::RowFormatter,
listbox::{self, Listbox},
text_editor,
text_editor::{self, TextEditor},
};

mod editor;
Expand Down Expand Up @@ -64,6 +64,16 @@ pub struct Args {

#[arg(short = 'c', long = "config", help = "Path to the configuration file.")]
pub config_file: Option<PathBuf>,

#[arg(
long = "default-filter",
help = "Default jq filter to apply to the input data",
long_help = "
Sets the default jq filter to apply to the input data.
The filter is applied when the interface is first loaded.
"
)]
default_filter: Option<String>,
}

/// Parses the input based on the provided arguments.
Expand Down Expand Up @@ -163,7 +173,11 @@ async fn main() -> anyhow::Result<()> {
IncrementalSearcher::new(listbox_state, config.completion.search_result_chunk_size);

let text_editor_state = text_editor::State {
texteditor: Default::default(),
texteditor: if let Some(filter) = args.default_filter {
TextEditor::new(filter)
} else {
Default::default()
},
history: Default::default(),
prefix: config.editor.theme_on_focus.prefix.clone(),
mask: Default::default(),
Expand Down
3 changes: 3 additions & 0 deletions src/prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ pub async fn run<T: ViewProvider + SearchProvider>(
last_query_tx,
reactivity_control.query_debounce_duration,
);
if !editor.text().is_empty() {
debounce_query_tx.send(editor.text()).await?;
}

let (last_resize_tx, mut last_resize_rx) = mpsc::channel::<(u16, u16)>(1);
let (debounce_resize_tx, debounce_resize_rx) = mpsc::channel(1);
Expand Down
Loading