Skip to content

Commit

Permalink
refactor: Split core render functions (#937)
Browse files Browse the repository at this point in the history
* refactor: Split core render functions

* lint
  • Loading branch information
marc2332 authored Oct 6, 2024
1 parent 0cb934f commit 1317488
Show file tree
Hide file tree
Showing 11 changed files with 638 additions and 566 deletions.
6 changes: 3 additions & 3 deletions crates/core/src/elements/label.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use torin::prelude::{
};

use super::utils::ElementUtils;
use crate::prelude::{
align_main_align_paragraph,
DioxusNode,
use crate::{
prelude::DioxusNode,
render::align_main_align_paragraph,
};

pub struct LabelElement;
Expand Down
86 changes: 5 additions & 81 deletions crates/core/src/elements/paragraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ use torin::{
use super::utils::ElementUtils;
use crate::{
dom::DioxusNode,
prelude::{
align_highlights_and_cursor_paragraph,
prelude::TextGroupMeasurement,
render::{
align_main_align_paragraph,
TextGroupMeasurement,
create_paragraph,
draw_cursor,
draw_cursor_highlights,
},
render::create_paragraph,
};

pub struct ParagraphElement;
Expand Down Expand Up @@ -230,80 +231,3 @@ impl ElementUtils for ParagraphElement {
area
}
}

fn draw_cursor_highlights(
area: &Area,
paragraph: &Paragraph,
canvas: &Canvas,
node_ref: &DioxusNode,
) -> Option<()> {
let node_cursor_state = &*node_ref.get::<CursorState>().unwrap();

let highlights = node_cursor_state.highlights.as_ref()?;
let highlight_color = node_cursor_state.highlight_color;

for (from, to) in highlights.iter() {
let (from, to) = {
if from < to {
(from, to)
} else {
(to, from)
}
};
let cursor_rects = paragraph.get_rects_for_range(
*from..*to,
RectHeightStyle::Tight,
RectWidthStyle::Tight,
);
for cursor_rect in cursor_rects {
let rect = align_highlights_and_cursor_paragraph(
node_ref,
area,
paragraph,
&cursor_rect,
None,
);

let mut paint = Paint::default();
paint.set_anti_alias(true);
paint.set_style(PaintStyle::Fill);
paint.set_color(highlight_color);

canvas.draw_rect(rect, &paint);
}
}

Some(())
}

fn draw_cursor(
area: &Area,
paragraph: &Paragraph,
canvas: &Canvas,
node_ref: &DioxusNode,
) -> Option<()> {
let node_cursor_state = &*node_ref.get::<CursorState>().unwrap();

let cursor = node_cursor_state.position?;
let cursor_color = node_cursor_state.color;
let cursor_position = cursor as usize;

let cursor_rects = paragraph.get_rects_for_range(
cursor_position..cursor_position + 1,
RectHeightStyle::Tight,
RectWidthStyle::Tight,
);
let cursor_rect = cursor_rects.first()?;

let rect =
align_highlights_and_cursor_paragraph(node_ref, area, paragraph, cursor_rect, Some(1.0));

let mut paint = Paint::default();
paint.set_anti_alias(true);
paint.set_style(PaintStyle::Fill);
paint.set_color(cursor_color);

canvas.draw_rect(rect, &paint);

Some(())
}
Loading

0 comments on commit 1317488

Please sign in to comment.