lib-nested/nested/src/product/element.rs

58 lines
1.9 KiB
Rust
Raw Normal View History

2022-05-08 23:30:49 +02:00
use {
crate::{
2022-06-19 23:13:21 +02:00
core::{OuterViewPort, TypeLadder, Context},
2022-05-08 23:30:49 +02:00
terminal::{
2022-06-19 23:13:21 +02:00
TerminalEditor, TerminalStyle, TerminalView,
2022-05-08 23:30:49 +02:00
make_label
},
2022-06-19 23:13:21 +02:00
tree_nav::{TerminalTreeEditor},
color::{bg_style_from_depth, fg_style_from_depth}
2022-05-08 23:30:49 +02:00
},
std::{sync::{Arc, RwLock}, ops::{Deref, DerefMut}},
termion::event::{Event, Key},
};
#[derive(Clone)]
pub enum ProductEditorElement {
2022-06-19 23:13:21 +02:00
T( String, usize ),
2022-05-08 23:30:49 +02:00
N {
t: TypeLadder,
editor: Option<Arc<RwLock<dyn TerminalTreeEditor + Send + Sync>>>,
2022-06-19 23:13:21 +02:00
cur_depth: usize
2022-05-08 23:30:49 +02:00
}
}
impl ProductEditorElement {
pub fn get_view(&self, ctx: Arc<RwLock<Context>>) -> OuterViewPort<dyn TerminalView> {
match self {
2022-06-19 23:13:21 +02:00
ProductEditorElement::T(t, depth) =>
2022-05-08 23:30:49 +02:00
make_label(t.as_str())
2022-06-19 23:13:21 +02:00
.map_item({
let depth = *depth;
move |i, x|
x.add_style_back(fg_style_from_depth(depth))
}
),
2022-05-08 23:30:49 +02:00
2022-06-19 23:13:21 +02:00
ProductEditorElement::N { t: _, editor: Some(e), cur_depth } =>
2022-05-08 23:30:49 +02:00
e.read().unwrap()
.get_term_view()
2022-06-19 23:13:21 +02:00
.map_item({ let cur_depth = *cur_depth;//e.read().unwrap().get_cursor().tree_addr.len()+1;
2022-05-08 23:30:49 +02:00
move |i, x| x
2022-06-19 23:13:21 +02:00
.add_style_back(fg_style_from_depth(cur_depth))//fg_color((250,210,0)))
.add_style_back(bg_style_from_depth(cur_depth))
2022-05-08 23:30:49 +02:00
}),
2022-06-19 23:13:21 +02:00
ProductEditorElement::N{ t, editor: None, cur_depth } =>
2022-05-08 23:30:49 +02:00
make_label(&ctx.read().unwrap().type_term_to_str(&t[0]))
2022-06-19 23:13:21 +02:00
.map_item({
let cur_depth = *cur_depth;
move |i, x| x
2022-05-08 23:30:49 +02:00
.add_style_back(TerminalStyle::fg_color((130,90,40)))
2022-06-19 23:13:21 +02:00
.add_style_back(bg_style_from_depth(cur_depth))
2022-05-08 23:30:49 +02:00
})
}
}
}