use std::rc::Rc; use gpui::{App, Bounds, Hsla, Pixels, SharedString, TextAlign, Window, px}; use gpui_component_macros::IntoPlot; use num_traits::{Num, ToPrimitive}; use crate::{ ActiveTheme, PixelsExt, plot::{ AXIS_GAP, AxisText, Grid, Plot, PlotAxis, label::Text, scale::{Scale, ScaleBand, ScaleLinear, Sealed}, shape::Bar, }, }; #[derive(IntoPlot)] pub struct BarChart where T: 'static, X: PartialEq + Into + 'static, Y: Copy + PartialOrd + Num + ToPrimitive + Sealed + 'static, { data: Vec, x: Option X>>, y: Option Y>>, fill: Option Hsla>>, tick_margin: usize, label: Option SharedString>>, } impl BarChart where X: PartialEq + Into + 'static, Y: Copy + PartialOrd + Num + ToPrimitive + Sealed + 'static, { pub fn new(data: I) -> Self where I: IntoIterator, { Self { data: data.into_iter().collect(), x: None, y: None, fill: None, tick_margin: 1, label: None, } } pub fn x(mut self, x: impl Fn(&T) -> X + 'static) -> Self { self.x = Some(Rc::new(x)); self } pub fn y(mut self, y: impl Fn(&T) -> Y + 'static) -> Self { self.y = Some(Rc::new(y)); self } pub fn fill(mut self, fill: impl Fn(&T) -> H + 'static) -> Self where H: Into + 'static, { self.fill = Some(Rc::new(move |t| fill(t).into())); self } pub fn tick_margin(mut self, tick_margin: usize) -> Self { self.tick_margin = tick_margin; self } pub fn label(mut self, label: impl Fn(&T) -> S + 'static) -> Self where S: Into + 'static, { self.label = Some(Rc::new(move |t| label(t).into())); self } } impl Plot for BarChart where X: PartialEq + Into + 'static, Y: Copy + PartialOrd + Num + ToPrimitive + Sealed + 'static, { fn paint(&mut self, bounds: Bounds, window: &mut Window, cx: &mut App) { let (Some(x_fn), Some(y_fn)) = (self.x.as_ref(), self.y.as_ref()) else { return; }; let width = bounds.size.width.as_f32(); let height = bounds.size.height.as_f32() - AXIS_GAP; // X scale let x = ScaleBand::new(self.data.iter().map(|v| x_fn(v)).collect(), vec![0., width]) .padding_inner(0.4) .padding_outer(0.2); let band_width = x.band_width(); // Y scale, ensure start from 0. let y = ScaleLinear::new( self.data .iter() .map(|v| y_fn(v)) .chain(Some(Y::zero())) .collect(), vec![height, 10.], ); // Draw X axis let x_label = self.data.iter().enumerate().filter_map(|(i, d)| { if (i + 1) % self.tick_margin == 0 { x.tick(&x_fn(d)).map(|x_tick| { AxisText::new( x_fn(d).into(), x_tick + band_width / 2., cx.theme().muted_foreground, ) .align(TextAlign::Center) }) } else { None } }); PlotAxis::new() .x(height) .x_label(x_label) .stroke(cx.theme().border) .paint(&bounds, window, cx); // Draw grid Grid::new() .y((0..=3).map(|i| height * i as f32 / 4.0).collect()) .stroke(cx.theme().border) .dash_array(&[px(4.), px(2.)]) .paint(&bounds, window); // Draw bars let x_fn = x_fn.clone(); let y_fn = y_fn.clone(); let default_fill = cx.theme().chart_2; let fill = self.fill.clone(); let label_color = cx.theme().foreground; let mut bar = Bar::new() .data(&self.data) .band_width(band_width) .x(move |d| x.tick(&x_fn(d))) .y0(move |_| height) .y1(move |d| y.tick(&y_fn(d))) .fill(move |d| fill.as_ref().map(|f| f(d)).unwrap_or(default_fill)); if let Some(label) = self.label.as_ref() { let label = label.clone(); bar = bar.label(move |d, p| { vec![Text::new(label(d), p, label_color).align(TextAlign::Center)] }); } bar.paint(&bounds, window, cx); } }