controls_panel layout, variables lazy-loading, concurrent waveform parts loading

This commit is contained in:
Martin Kavík 2024-05-28 23:07:28 +02:00
parent 95b4cab739
commit 71adee772b
2 changed files with 59 additions and 13 deletions

View file

@ -1,12 +1,16 @@
use crate::tauri_bridge; use crate::tauri_bridge;
use crate::HierarchyAndTimeTable; use crate::HierarchyAndTimeTable;
use std::mem;
use std::rc::Rc; use std::rc::Rc;
use futures_util::join;
use wellen::GetItem; use wellen::GetItem;
use zoon::*; use zoon::*;
#[derive(Clone, Copy)] const SCOPE_VAR_ROW_MAX_WIDTH: u32 = 480;
struct VarForUI<'a> {
name: &'a str, #[derive(Clone)]
struct VarForUI {
name: Rc<String>,
var_type: wellen::VarType, var_type: wellen::VarType,
var_direction: wellen::VarDirection, var_direction: wellen::VarDirection,
var_ref: wellen::VarRef, var_ref: wellen::VarRef,
@ -58,8 +62,8 @@ impl ControlsPanel {
let triggers = self.triggers(); let triggers = self.triggers();
Column::new() Column::new()
.after_remove(move |_| drop(triggers)) .after_remove(move |_| drop(triggers))
.s(Scrollbars::y_and_clip_x())
.s(Height::fill()) .s(Height::fill())
.s(Scrollbars::y_and_clip_x())
.s(Padding::all(20)) .s(Padding::all(20))
.s(Gap::new().y(40)) .s(Gap::new().y(40))
.s(Align::new().top()) .s(Align::new().top())
@ -113,8 +117,7 @@ impl ControlsPanel {
let hierarchy_and_time_table = hierarchy_and_time_table.clone(); let hierarchy_and_time_table = hierarchy_and_time_table.clone();
Task::start(async move { Task::start(async move {
tauri_bridge::load_waveform(test_file_name).await; tauri_bridge::load_waveform(test_file_name).await;
let hierarchy = tauri_bridge::get_hierarchy().await; let (hierarchy, time_table) = join!(tauri_bridge::get_hierarchy(), tauri_bridge::get_time_table());
let time_table = tauri_bridge::get_time_table().await;
hierarchy_and_time_table.set(Some((Rc::new(hierarchy), Rc::new(time_table)))) hierarchy_and_time_table.set(Some((Rc::new(hierarchy), Rc::new(time_table))))
}) })
}) })
@ -122,6 +125,8 @@ impl ControlsPanel {
fn scopes_panel(&self, hierarchy: Rc<wellen::Hierarchy>) -> impl Element { fn scopes_panel(&self, hierarchy: Rc<wellen::Hierarchy>) -> impl Element {
Column::new() Column::new()
.s(Height::fill().min(150))
.s(Scrollbars::y_and_clip_x())
.s(Gap::new().y(20)) .s(Gap::new().y(20))
.item(El::new().child("Scopes")) .item(El::new().child("Scopes"))
.item(self.scopes_list(hierarchy)) .item(self.scopes_list(hierarchy))
@ -153,6 +158,8 @@ impl ControlsPanel {
Column::new() Column::new()
.s(Align::new().left()) .s(Align::new().left())
.s(Gap::new().y(10)) .s(Gap::new().y(10))
.s(Height::fill())
.s(Scrollbars::y_and_clip_x())
.items( .items(
scopes_for_ui scopes_for_ui
.into_iter() .into_iter()
@ -196,7 +203,8 @@ impl ControlsPanel {
El::new() El::new()
// @TODO Add `Display` Style to MoonZoon? Merge with `Visible` Style? // @TODO Add `Display` Style to MoonZoon? Merge with `Visible` Style?
.update_raw_el(|raw_el| raw_el.style_signal("display", display)) .update_raw_el(|raw_el| raw_el.style_signal("display", display))
.s(Padding::new().left(scope_for_ui.level * 30)) .s(Padding::new().left(scope_for_ui.level * 30).right(15))
.s(Width::default().max(SCOPE_VAR_ROW_MAX_WIDTH))
.after_remove(move |_| drop(task_collapse)) .after_remove(move |_| drop(task_collapse))
.child( .child(
Row::new() Row::new()
@ -233,6 +241,7 @@ impl ControlsPanel {
) -> impl Element { ) -> impl Element {
Button::new() Button::new()
.s(Padding::new().x(15).y(5)) .s(Padding::new().x(15).y(5))
.s(Font::new().wrap_anywhere())
.on_hovered_change(move |is_hovered| button_hovered.set_neq(is_hovered)) .on_hovered_change(move |is_hovered| button_hovered.set_neq(is_hovered))
.on_press(clone!((self.selected_scope_ref => selected_scope_ref, scope_for_ui.scope_ref => scope_ref) move || selected_scope_ref.set_neq(Some(scope_ref)))) .on_press(clone!((self.selected_scope_ref => selected_scope_ref, scope_for_ui.scope_ref => scope_ref) move || selected_scope_ref.set_neq(Some(scope_ref))))
.label(scope_for_ui.name) .label(scope_for_ui.name)
@ -242,12 +251,15 @@ impl ControlsPanel {
let selected_scope_ref = self.selected_scope_ref.clone(); let selected_scope_ref = self.selected_scope_ref.clone();
Column::new() Column::new()
.s(Gap::new().y(20)) .s(Gap::new().y(20))
.s(Height::fill().min(150))
.s(Scrollbars::y_and_clip_x())
.item(El::new().child("Variables")) .item(El::new().child("Variables"))
.item_signal(selected_scope_ref.signal().map_some( .item_signal(selected_scope_ref.signal().map_some(
clone!((self => s) move |scope_ref| s.vars_list(scope_ref, hierarchy.clone())), clone!((self => s) move |scope_ref| s.vars_list(scope_ref, hierarchy.clone())),
)) ))
} }
// @TODO Group variables
fn vars_list( fn vars_list(
&self, &self,
selected_scope_ref: wellen::ScopeRef, selected_scope_ref: wellen::ScopeRef,
@ -259,26 +271,58 @@ impl ControlsPanel {
.map(|var_ref| { .map(|var_ref| {
let var = hierarchy.get(var_ref); let var = hierarchy.get(var_ref);
VarForUI { VarForUI {
name: var.name(&hierarchy), name: Rc::new(var.name(&hierarchy).to_owned()),
var_type: var.var_type(), var_type: var.var_type(),
var_direction: var.direction(), var_direction: var.direction(),
var_ref, var_ref,
signal_type: var.signal_tpe(), signal_type: var.signal_tpe(),
} }
}); });
// Lazy loading to not freeze the main thread
const CHUNK_SIZE: usize = 50;
let mut chunked_vars_for_ui: Vec<Vec<VarForUI>> = <_>::default();
let mut chunk = Vec::with_capacity(CHUNK_SIZE);
for (index, var_for_ui) in vars_for_ui.enumerate() {
chunk.push(var_for_ui);
if index % CHUNK_SIZE == 0 {
chunked_vars_for_ui.push(mem::take(&mut chunk));
}
}
if not(chunk.is_empty()) {
chunked_vars_for_ui.push(chunk);
}
let vars_for_ui_mutable_vec = MutableVec::<VarForUI>::new();
let append_vars_for_ui_task =
Task::start_droppable(clone!((vars_for_ui_mutable_vec) async move {
for chunk in chunked_vars_for_ui {
Task::next_macro_tick().await;
vars_for_ui_mutable_vec.lock_mut().extend(chunk);
}
}));
Column::new() Column::new()
.s(Align::new().left()) .s(Align::new().left())
.s(Gap::new().y(10)) .s(Gap::new().y(10))
.items(vars_for_ui.map(clone!((self => s) move |var_for_ui| s.var_row(var_for_ui)))) .s(Height::fill())
.s(Scrollbars::y_and_clip_x())
.items_signal_vec(
vars_for_ui_mutable_vec
.signal_vec_cloned()
.map(clone!((self => s) move |var_for_ui| s.var_row(var_for_ui))),
)
.after_remove(move |_| drop(append_vars_for_ui_task))
} }
fn var_row(&self, var_for_ui: VarForUI) -> impl Element { fn var_row(&self, var_for_ui: VarForUI) -> impl Element {
Row::new() Row::new()
.s(Gap::new().x(10)) .s(Gap::new().x(10))
.item(self.var_button(var_for_ui)) .s(Padding::new().right(15))
.item(self.var_tag_type(var_for_ui)) .s(Width::default().max(SCOPE_VAR_ROW_MAX_WIDTH))
.item(self.var_tag_index(var_for_ui)) .item(self.var_button(var_for_ui.clone()))
.item(self.var_tag_bit(var_for_ui)) .item(self.var_tag_type(var_for_ui.clone()))
.item(self.var_tag_index(var_for_ui.clone()))
.item(self.var_tag_bit(var_for_ui.clone()))
.item(self.var_tag_direction(var_for_ui)) .item(self.var_tag_direction(var_for_ui))
} }
@ -287,6 +331,7 @@ impl ControlsPanel {
let selected_var_ref = self.selected_var_refs.clone(); let selected_var_ref = self.selected_var_refs.clone();
El::new().child( El::new().child(
Button::new() Button::new()
.s(Font::new().wrap_anywhere())
.s(Padding::new().x(15).y(5)) .s(Padding::new().x(15).y(5))
.s(Background::new().color_signal( .s(Background::new().color_signal(
hovered_signal.map_bool(|| color!("MediumSlateBlue"), || color!("SlateBlue")), hovered_signal.map_bool(|| color!("MediumSlateBlue"), || color!("SlateBlue")),

View file

@ -26,6 +26,7 @@ fn root() -> impl Element {
Row::new() Row::new()
.s(Height::fill()) .s(Height::fill())
.s(Font::new().color(color!("Lavender"))) .s(Font::new().color(color!("Lavender")))
.s(Gap::new().x(15))
.item(ControlsPanel::new( .item(ControlsPanel::new(
hierarchy_and_time_table.clone(), hierarchy_and_time_table.clone(),
selected_var_refs.clone(), selected_var_refs.clone(),