Use upstream versions of ratatui crates

This commit is contained in:
itsjunetime
2026-06-06 19:45:27 -05:00
parent 06f737b1fe
commit d5abc4bae5
7 changed files with 448 additions and 213 deletions
Generated
+426 -172
View File
File diff suppressed because it is too large Load Diff
+2 -10
View File
@@ -22,14 +22,9 @@ path = "src/main.rs"
name = "tdf" name = "tdf"
[dependencies] [dependencies]
# we're using this branch because it has significant performance fixes that I'm waiting on responses from the upstream devs to get upstreamed. See https://github.com/ratatui-org/ratatui/issues/1116 ratatui = { version = "^0.30.1", default-features = false, features = [ "crossterm", "layout-cache" ] }
ratatui = { git = "https://github.com/itsjunetime/ratatui.git", rev = "720ac2d0cad1ac6424364fea74856fec9c100cb1", default-features = false, features = [ "crossterm", "layout-cache" ] } ratatui-image = { version = "11.0", default-features = false }
# ratatui = { path = "./ratatui/ratatui/" }
# We're using this to have the vb64 feature (for faster base64 encoding, since that does take up a good bit of time when converting images to the `Protocol`. It also just includes a few more features that I'm waiting on main to upstream
ratatui-image = { git = "https://github.com/itsjunetime/ratatui-image.git", rev = "a276a87cb8e2976442c6cc59db831db81551da89", default-features = false }
# ratatui-image = { path = "./ratatui-image", default-features = false }
crossterm = { version = "0.29.0", features = ["event-stream"] } crossterm = { version = "0.29.0", features = ["event-stream"] }
# crossterm = { path = "../crossterm", features = ["event-stream"] }
image = { version = "0.25.1", features = ["pnm", "rayon", "png"], default-features = false } image = { version = "0.25.1", features = ["pnm", "rayon", "png"], default-features = false }
notify = { version = "8.0.0", features = ["crossbeam-channel"] } notify = { version = "8.0.0", features = ["crossbeam-channel"] }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] } tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] }
@@ -54,9 +49,6 @@ flexi_logger = "0.31"
# for tracing with tokio-console # for tracing with tokio-console
console-subscriber = { version = "0.5.0", optional = true } console-subscriber = { version = "0.5.0", optional = true }
[patch.crates-io]
pathfinder_simd = { git = "https://github.com/itsjunetime/pathfinder.git", rev = "814671e162a1829e074521446317b915311d3d4d" }
[profile.production] [profile.production]
inherits = "release" inherits = "release"
lto = "fat" lto = "fat"
+4 -4
View File
@@ -4,7 +4,7 @@ use crossterm::terminal::WindowSize;
use flume::{Sender, r#async::RecvStream, unbounded}; use flume::{Sender, r#async::RecvStream, unbounded};
use futures_util::stream::StreamExt as _; use futures_util::stream::StreamExt as _;
use ratatui::layout::Rect; use ratatui::layout::Rect;
use ratatui_image::picker::{Picker, ProtocolType}; use ratatui_image::{FontSize, picker::{Picker, ProtocolType}};
use tdf::{ use tdf::{
converter::{ConvertedPage, ConverterMsg, run_conversion_loop}, converter::{ConvertedPage, ConverterMsg, run_conversion_loop},
renderer::{RenderError, RenderInfo, RenderNotif, fill_default, start_rendering} renderer::{RenderError, RenderInfo, RenderNotif, fill_default, start_rendering}
@@ -54,7 +54,7 @@ pub struct RenderState {
pub to_render_tx: Sender<RenderNotif> pub to_render_tx: Sender<RenderNotif>
} }
const FONT_SIZE: (u16, u16) = (8, 14); const FONT_SIZE: FontSize = FontSize { width: 8, height: 14 };
pub fn start_rendering_loop( pub fn start_rendering_loop(
path: impl AsRef<Path>, path: impl AsRef<Path>,
@@ -74,8 +74,8 @@ pub fn start_rendering_loop(
let size = WindowSize { let size = WindowSize {
columns, columns,
rows, rows,
height: rows * FONT_SIZE.1, height: rows * FONT_SIZE.height,
width: columns * FONT_SIZE.0 width: columns * FONT_SIZE.width
}; };
let main_area = Rect { let main_area = Rect {
+6 -8
View File
@@ -8,7 +8,7 @@ use flume::{Receiver, SendError, Sender, TryRecvError};
use futures_util::stream::StreamExt as _; use futures_util::stream::StreamExt as _;
use image::{DynamicImage, codecs::pnm::PnmDecoder}; use image::{DynamicImage, codecs::pnm::PnmDecoder};
use kittage::NumberOrId; use kittage::NumberOrId;
use ratatui::layout::Rect; use ratatui::prelude::Size;
use ratatui_image::{ use ratatui_image::{
Resize, Resize,
picker::{Picker, ProtocolType}, picker::{Picker, ProtocolType},
@@ -27,7 +27,7 @@ pub enum MaybeTransferred {
Transferred(kittage::ImageId) Transferred(kittage::ImageId)
} }
#[derive(Debug)] // #[derive(Debug)]
pub enum ConvertedImage { pub enum ConvertedImage {
Generic(Protocol), Generic(Protocol),
Kitty { Kitty {
@@ -42,8 +42,8 @@ impl ConvertedImage {
pub fn w_h(&self) -> (u16, u16) { pub fn w_h(&self) -> (u16, u16) {
match self { match self {
Self::Generic(prot) => { Self::Generic(prot) => {
let a = prot.area(); let Size { width, height } = prot.size();
(a.width, a.height) (width, height)
} }
Self::Kitty { Self::Kitty {
img: _, img: _,
@@ -134,11 +134,9 @@ pub async fn run_conversion_loop(
.for_each(|(_, _, px)| px.0[2] = px.0[2].saturating_sub(u8::MAX / 2)); .for_each(|(_, _, px)| px.0[2] = px.0[2].saturating_sub(u8::MAX / 2));
} }
let img_area = Rect { let img_size = Size {
width: page_info.img_data.cell_w, width: page_info.img_data.cell_w,
height: page_info.img_data.cell_h, height: page_info.img_data.cell_h,
x: 0,
y: 0
}; };
let dyn_img = DynamicImage::ImageRgb8(dyn_img); let dyn_img = DynamicImage::ImageRgb8(dyn_img);
@@ -174,7 +172,7 @@ pub async fn run_conversion_loop(
} }
_ => ConvertedImage::Generic( _ => ConvertedImage::Generic(
picker picker
.new_protocol(dyn_img, img_area, Resize::None) .new_protocol(dyn_img, img_size, Resize::Crop(None))
.map_err(|e| { .map_err(|e| {
RenderError::Converting(format!( RenderError::Converting(format!(
"Couldn't convert DynamicImage to ratatui image: {e}" "Couldn't convert DynamicImage to ratatui image: {e}"
+2 -2
View File
@@ -260,7 +260,7 @@ async fn inner_main() -> Result<(), WrappedErr> {
// the 'equivalent' that is suggested instead is not the same. We need to keep // the 'equivalent' that is suggested instead is not the same. We need to keep
// calling this. // calling this.
#[expect(deprecated)] #[expect(deprecated)]
Ok(Picker::from_fontsize((cell_width_px, cell_height_px))) Ok(Picker::from_fontsize(FontSize { width: cell_width_px, height: cell_height_px }))
}, },
ratatui_image::errors::Errors::NoFontSize => Err(WrappedErr( ratatui_image::errors::Errors::NoFontSize => Err(WrappedErr(
"Unable to detect your terminal's font size; this is an issue with your terminal emulator.\nPlease use a different terminal emulator or report this bug to tdf.".into() "Unable to detect your terminal's font size; this is an issue with your terminal emulator.\nPlease use a different terminal emulator or report this bug to tdf.".into()
@@ -315,7 +315,7 @@ async fn inner_main() -> Result<(), WrappedErr> {
let mut term = Terminal::new(backend).map_err(|e| { let mut term = Terminal::new(backend).map_err(|e| {
WrappedErr(format!("Couldn't set up crossterm's terminal backend: {e}").into()) WrappedErr(format!("Couldn't set up crossterm's terminal backend: {e}").into())
})?; })?;
term.skip_diff(true); // term.skip_diff(true);
enable_raw_mode().map_err(|e| { enable_raw_mode().map_err(|e| {
WrappedErr( WrappedErr(
+3 -12
View File
@@ -1,23 +1,14 @@
use std::num::NonZeroUsize; use std::num::NonZeroUsize;
use ratatui::widgets::Widget; use ratatui::{prelude::buffer::CellDiffOption, widgets::Widget};
pub struct Skip { pub struct Skip;
skip: bool
}
impl Skip {
#[must_use]
pub fn new(skip: bool) -> Self {
Self { skip }
}
}
impl Widget for Skip { impl Widget for Skip {
fn render(self, area: ratatui::prelude::Rect, buf: &mut ratatui::prelude::Buffer) { fn render(self, area: ratatui::prelude::Rect, buf: &mut ratatui::prelude::Buffer) {
for x in area.x..(area.x + area.width) { for x in area.x..(area.x + area.width) {
for y in area.y..(area.y + area.height) { for y in area.y..(area.y + area.height) {
buf[(x, y)].skip = self.skip; buf[(x, y)].diff_option = CellDiffOption::Skip;
} }
} }
} }
+5 -5
View File
@@ -349,8 +349,8 @@ impl Tui {
} }
} }
let width = (img_section_w * f32::from(font_size.0)) as u32; let width = (img_section_w * f32::from(font_size.width)) as u32;
let height = (img_section_h * f32::from(font_size.1)) as u32; let height = (img_section_h * f32::from(font_size.height)) as u32;
zoom.cell_pan_from_left = zoom zoom.cell_pan_from_left = zoom
.cell_pan_from_left .cell_pan_from_left
@@ -367,8 +367,8 @@ impl Tui {
y: img_area.y y: img_area.y
}, },
display_loc: DisplayLocation { display_loc: DisplayLocation {
x: u32::from(zoom.cell_pan_from_left) * u32::from(font_size.0), x: u32::from(zoom.cell_pan_from_left) * u32::from(font_size.width),
y: u32::from(zoom.cell_pan_from_top) * u32::from(font_size.1), y: u32::from(zoom.cell_pan_from_top) * u32::from(font_size.height),
width, width,
height, height,
columns: img_area.width, columns: img_area.width,
@@ -409,7 +409,7 @@ impl Tui {
// resize this time), then go through every element in the buffer where any Image would // resize this time), then go through every element in the buffer where any Image would
// be written and set to skip it so that ratatui doesn't spend a lot of time diffing it // be written and set to skip it so that ratatui doesn't spend a lot of time diffing it
// each re-render // each re-render
frame.render_widget(Skip::new(true), img_area); frame.render_widget(Skip, img_area);
return KittyDisplay::NoChange; return KittyDisplay::NoChange;
} }