123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- use dioxus_html::EventData;
- use dioxus_native_core::{
- node::{OwnedAttributeDiscription, OwnedAttributeValue, TextNode},
- prelude::*,
- real_dom::{NodeImmutable, NodeTypeMut},
- NodeId,
- };
- use dioxus_tui::{self, render, Config, Renderer};
- use rustc_hash::FxHashSet;
- use std::rc::Rc;
- use std::sync::{Arc, RwLock};
- const SIZE: usize = 10;
- struct Test {
- node_states: [[usize; SIZE]; SIZE],
- dirty: FxHashSet<(usize, usize)>,
- }
- impl Default for Test {
- fn default() -> Self {
- Self {
- node_states: [[0; SIZE]; SIZE],
- dirty: FxHashSet::default(),
- }
- }
- }
- impl Test {
- fn create(mut root: NodeMut) -> Self {
- let myself = Self::default();
- // Set the root node to be a flexbox with a column direction.
- if let NodeTypeMut::Element(mut el) = root.node_type_mut() {
- el.set_attribute(
- OwnedAttributeDiscription {
- name: "display".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("flex".into()),
- );
- el.set_attribute(
- OwnedAttributeDiscription {
- name: "flex-direction".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("column".into()),
- );
- el.set_attribute(
- OwnedAttributeDiscription {
- name: "width".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("100%".into()),
- );
- el.set_attribute(
- OwnedAttributeDiscription {
- name: "height".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("100%".into()),
- );
- }
- let root_id = root.id();
- let rdom = root.real_dom_mut();
- // create the grid
- for (x, row) in myself.node_states.iter().copied().enumerate() {
- let row_node = rdom
- .create_node(NodeType::Element(ElementNode {
- tag: "div".to_string(),
- attributes: [
- (
- OwnedAttributeDiscription {
- name: "display".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("flex".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "flex-direction".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("row".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "width".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("100%".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "height".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("100%".into()),
- ),
- ]
- .into_iter()
- .collect(),
- ..Default::default()
- }))
- .id();
- for (y, count) in row.iter().copied().enumerate() {
- let node = rdom
- .create_node(NodeType::Text(TextNode::new(count.to_string())))
- .id();
- let mut button = rdom.create_node(NodeType::Element(ElementNode {
- tag: "div".to_string(),
- attributes: [
- (
- OwnedAttributeDiscription {
- name: "background-color".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text(format!(
- "rgb({}, {}, {})",
- count * 10,
- 0,
- (x + y) * 10,
- )),
- ),
- (
- OwnedAttributeDiscription {
- name: "width".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("100%".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "height".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("100%".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "display".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("flex".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "flex-direction".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("row".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "justify-content".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("center".into()),
- ),
- (
- OwnedAttributeDiscription {
- name: "align-items".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text("center".into()),
- ),
- ]
- .into_iter()
- .collect(),
- ..Default::default()
- }));
- button.add_event_listener("click");
- button.add_event_listener("wheel");
- button.add_child(node);
- let button_id = button.id();
- rdom.get_mut(row_node).unwrap().add_child(button_id);
- }
- rdom.get_mut(root_id).unwrap().add_child(row_node);
- }
- myself
- }
- }
- impl Renderer for Test {
- fn render(&mut self, rdom: &Arc<RwLock<RealDom>>) {
- let mut rdom = rdom.write().unwrap();
- let root_id = rdom.root_id();
- let mut root = rdom.get_mut(root_id).unwrap();
- for (x, y) in self.dirty.drain() {
- let row_id = root.child_ids()[x];
- let rdom = root.real_dom_mut();
- let row = rdom.get(row_id).unwrap();
- let node_id = row.child_ids()[y];
- let mut node = rdom.get_mut(node_id).unwrap();
- if let NodeTypeMut::Element(mut el) = node.node_type_mut() {
- el.set_attribute(
- OwnedAttributeDiscription {
- name: "background-color".into(),
- namespace: None,
- },
- OwnedAttributeValue::Text(format!(
- "rgb({}, {}, {})",
- self.node_states[x][y] * 10,
- 0,
- (x + y) * 10,
- )),
- );
- }
- let text_id = *node.child_ids().first().unwrap();
- let mut text = rdom.get_mut(text_id).unwrap();
- let type_mut = text.node_type_mut();
- if let NodeTypeMut::Text(mut text) = type_mut {
- *text = self.node_states[x][y].to_string();
- }
- }
- }
- fn handle_event(
- &mut self,
- rdom: &Arc<RwLock<RealDom>>,
- id: NodeId,
- _: &str,
- _: Rc<EventData>,
- _: bool,
- ) {
- let rdom = rdom.read().unwrap();
- let node = rdom.get(id).unwrap();
- if let Some(parent) = node.parent() {
- let child_number = parent
- .child_ids()
- .iter()
- .position(|id| *id == node.id())
- .unwrap();
- if let Some(parents_parent) = parent.parent() {
- let parents_child_number = parents_parent
- .child_ids()
- .iter()
- .position(|id| *id == parent.id())
- .unwrap();
- self.node_states[parents_child_number][child_number] += 1;
- self.dirty.insert((parents_child_number, child_number));
- }
- }
- }
- fn poll_async(&mut self) -> std::pin::Pin<Box<dyn futures::Future<Output = ()> + '_>> {
- Box::pin(async move { tokio::time::sleep(std::time::Duration::from_millis(1000)).await })
- }
- }
- fn main() {
- render(Config::new(), |rdom, _, _| {
- let mut rdom = rdom.write().unwrap();
- let root = rdom.root_id();
- Test::create(rdom.get_mut(root).unwrap())
- })
- .unwrap();
- }
|