Skip to content

Commit 2f2f196

Browse files
committed
on-err: use promkit-{core, widgets} and need to fix to use ContentStyle instead of StyleBuilder
1 parent f0911d2 commit 2f2f196

14 files changed

+82
-103
lines changed

Cargo.lock

+19-39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ async-trait = "0.1.88"
1515
clap = { version = "4.5.34", features = ["derive"] }
1616
duration-string = { version = "0.5.2", features = ["serde"] }
1717
derive_builder = "0.20.2"
18-
# See https://github.com/crossterm-rs/crossterm/issues/935
19-
crossterm = { version = "0.28.1", features = ["use-dev-tty", "event-stream", "libc", "serde"] }
2018
dirs = "6.0.0"
2119
futures = "0.3.30"
2220
jaq-core = "1.2.1"
2321
jaq-interpret = "1.2.1"
2422
jaq-parse = "1.0.2"
2523
jaq-std = "1.2.1"
26-
promkit = "0.8.0"
24+
promkit-core = { path = "../promkit/promkit-core", version = "0.1.0" }
25+
promkit-widgets = { path = "../promkit/promkit-widgets", version = "0.1.0", features = ["jsonstream", "listbox", "text", "texteditor"] }
2726
serde = "1.0.219"
2827
tokio = { version = "1.44.1", features = ["full"] }
2928
tokio-stream = "0.1.16"

src/config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
use std::collections::HashSet;
22

3-
use crossterm::{
3+
use promkit_core::crossterm::{
44
event::{KeyCode, KeyModifiers},
55
style::{Attribute, Attributes, Color, ContentStyle},
66
};
7-
use promkit::{style::StyleBuilder, text_editor::Mode};
7+
use promkit_widgets::text_editor::Mode;
88
use serde::{Deserialize, Serialize};
99
use tokio::time::Duration;
1010

src/config/content_style.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crossterm::style::{Attribute, Attributes, Color, ContentStyle};
1+
use promkit_core::crossterm::style::{Attribute, Attributes, Color, ContentStyle};
22
use serde::{Deserialize, Serialize};
33

44
#[derive(Serialize, Deserialize)]

src/config/event.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
use std::collections::HashSet;
22

3-
use crossterm::event::{Event, KeyCode, KeyEvent, KeyModifiers, MouseEvent, MouseEventKind};
3+
use promkit_core::crossterm::event::{
4+
Event, KeyCode, KeyEvent, KeyModifiers, MouseEvent, MouseEventKind,
5+
};
46
use serde::{Deserialize, Serialize};
57

68
pub trait Matcher<T> {

src/config/text_editor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use promkit::text_editor::Mode;
1+
use promkit_widgets::text_editor::Mode;
22
use serde::{Deserialize, Deserializer, Serialize, Serializer};
33

44
pub mod text_editor_mode_serde {

src/editor.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
use std::{future::Future, pin::Pin};
22

3-
use crossterm::{
4-
event::{Event, KeyCode, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers},
5-
style::Color,
3+
use promkit_core::{
4+
crossterm::{
5+
event::{Event, KeyCode, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers},
6+
style::Color,
7+
},
8+
Pane, PaneFactory,
69
};
7-
use promkit::{
8-
pane::Pane,
9-
style::StyleBuilder,
10+
use promkit_widgets::{
1011
text::{self, Text},
11-
text_editor, PaneFactory,
12+
text_editor,
1213
};
1314

1415
use crate::{

src/json.rs

+20-18
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
use crossterm::{
2-
event::Event,
3-
style::{Attribute, Attributes},
4-
};
51
use jaq_interpret::{Ctx, FilterT, ParseCtx, RcIter, Val};
6-
use promkit::{
7-
crossterm::style::Color,
8-
jsonstream::{self, JsonStream},
9-
jsonz::{self, format::RowFormatter},
2+
use promkit_core::{
3+
crossterm::{
4+
event::Event,
5+
style::{Attribute, Attributes, Color, ContentStyle},
6+
},
107
pane::Pane,
8+
PaneFactory,
9+
};
10+
11+
use promkit_widgets::{
12+
jsonstream::{self, format::RowFormatter, jsonz, JsonStream},
1113
serde_json::{self, Deserializer, Value},
12-
style::StyleBuilder,
1314
text::{self, Text},
14-
PaneFactory,
1515
};
1616

1717
use crate::{
@@ -112,10 +112,11 @@ impl Visualizer for Json {
112112
if ret.iter().all(|val| *val == Value::Null) {
113113
guide = Some(text::State {
114114
text: Text::from(format!("jq returned 'null', which may indicate a typo or incorrect filter: `{}`", input)),
115-
style: StyleBuilder::new()
116-
.fgc(Color::Yellow)
117-
.attrs(Attributes::from(Attribute::Bold))
118-
.build(),
115+
style: ContentStyle {
116+
foreground_color: Some(Color::Yellow),
117+
attributes: Attributes::from(Attribute::Bold),
118+
..Default::default()
119+
},
119120
..Default::default()
120121
}.create_pane(area.0, area.1));
121122
}
@@ -128,10 +129,11 @@ impl Visualizer for Json {
128129
Some(
129130
text::State {
130131
text: Text::from(format!("jq failed: `{}`", e)),
131-
style: StyleBuilder::new()
132-
.fgc(Color::Red)
133-
.attrs(Attributes::from(Attribute::Bold))
134-
.build(),
132+
style: ContentStyle {
133+
foreground_color: Some(Color::Red),
134+
attributes: Attributes::from(Attribute::Bold),
135+
..Default::default()
136+
},
135137
..Default::default()
136138
}
137139
.create_pane(area.0, area.1),

src/main.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ use std::{
77
use anyhow::anyhow;
88
use clap::Parser;
99
use config::Config;
10-
use crossterm::style::Attribute;
11-
use promkit::{
12-
jsonz::format::RowFormatter,
10+
use promkit_core::crossterm::style::Attribute;
11+
use promkit_widgets::{
12+
jsonstream::format::RowFormatter,
1313
listbox::{self, Listbox},
1414
text_editor::{self, TextEditor},
1515
};

src/processor.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
use std::sync::Arc;
22

33
use async_trait::async_trait;
4-
use crossterm::event::Event;
5-
use promkit::pane::Pane;
4+
use promkit_core::{crossterm::event::Event, pane::Pane};
65
use tokio::{sync::Mutex, task::JoinHandle};
76

87
use crate::{PaneIndex, Renderer, EMPTY_PANE};

src/processor/spinner.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::sync::Arc;
22

3-
use promkit::pane::Pane;
3+
use promkit_core::{grapheme::StyledGraphemes, Pane};
44
use tokio::{sync::Mutex, task::JoinHandle, time::Duration};
55

66
use super::{Context, State};
@@ -38,12 +38,7 @@ impl SpinnerSpawner {
3838

3939
frame_index = (frame_index + 1) % LOADING_FRAMES.len();
4040

41-
let pane = Pane::new(
42-
vec![promkit::grapheme::StyledGraphemes::from(
43-
LOADING_FRAMES[frame_index],
44-
)],
45-
0,
46-
);
41+
let pane = Pane::new(vec![StyledGraphemes::from(LOADING_FRAMES[frame_index])], 0);
4742
{
4843
// TODO: error handling
4944
let _ = shared_renderer

src/prompt.rs

+17-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
use std::{io, sync::Arc, time::Duration};
22

33
use arboard::Clipboard;
4-
use crossterm::{
5-
self, cursor,
6-
event::{Event, EventStream, KeyCode, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers},
7-
execute,
8-
style::Color,
9-
terminal::{self, disable_raw_mode, enable_raw_mode},
10-
};
114
use futures::StreamExt;
12-
use promkit::{
13-
style::StyleBuilder,
14-
text::{self, Text},
5+
use promkit_core::{
6+
crossterm::{
7+
cursor,
8+
event::{Event, EventStream, KeyCode, KeyEvent, KeyEventKind, KeyEventState, KeyModifiers},
9+
execute,
10+
style::{Color, ContentStyle},
11+
terminal::{self, disable_raw_mode, enable_raw_mode},
12+
},
1513
PaneFactory,
1614
};
15+
use promkit_widgets::text::{self, Text};
1716
use tokio::{
1817
sync::{mpsc, Mutex, RwLock},
1918
task::JoinHandle,
@@ -57,12 +56,18 @@ fn copy_to_clipboard(content: &str) -> text::State {
5756
Ok(mut clipboard) => match clipboard.set_text(content) {
5857
Ok(_) => text::State {
5958
text: Text::from("Copied to clipboard"),
60-
style: StyleBuilder::new().fgc(Color::Green).build(),
59+
style: ContentStyle {
60+
foreground_color: Some(Color::Green),
61+
..Default::default()
62+
},
6163
..Default::default()
6264
},
6365
Err(e) => text::State {
6466
text: Text::from(format!("Failed to copy to clipboard: {}", e)),
65-
style: StyleBuilder::new().fgc(Color::Red).build(),
67+
style: ContentStyle {
68+
foreground_color: Some(Color::Red),
69+
..Default::default()
70+
},
6671
..Default::default()
6772
},
6873
},

src/render.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use std::sync::LazyLock;
22

3-
use crossterm::{self, cursor};
4-
use promkit::{pane::Pane, terminal::Terminal};
3+
use promkit_core::{crossterm::cursor, pane::Pane, terminal::Terminal};
54

65
// TODO: One Guide is sufficient.
76
#[derive(Debug, PartialEq)]

src/search.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ use std::{collections::BTreeSet, sync::Arc};
22

33
use anyhow::anyhow;
44
use async_trait::async_trait;
5-
use promkit::{
6-
listbox::{self, Listbox},
7-
pane::Pane,
8-
PaneFactory,
9-
};
5+
use promkit_core::{pane::Pane, PaneFactory};
6+
use promkit_widgets::listbox::{self, Listbox};
107
use tokio::{
118
sync::{Mutex, RwLock},
129
task::JoinHandle,

0 commit comments

Comments
 (0)