#dom #ui #react #gui #ui-elements

dioxus-core

Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences

24 releases

0.5.1 Apr 5, 2024
0.5.0 Mar 28, 2024
0.5.0-alpha.0 Feb 23, 2024
0.4.3 Dec 7, 2023
0.1.2 Feb 28, 2021

#7 in #ui-elements

Download history 1718/week @ 2023-12-23 2106/week @ 2023-12-30 2267/week @ 2024-01-06 2505/week @ 2024-01-13 2214/week @ 2024-01-20 2257/week @ 2024-01-27 1568/week @ 2024-02-03 1652/week @ 2024-02-10 2439/week @ 2024-02-17 4264/week @ 2024-02-24 4734/week @ 2024-03-02 4383/week @ 2024-03-09 4404/week @ 2024-03-16 5663/week @ 2024-03-23 5325/week @ 2024-03-30 4212/week @ 2024-04-06

19,996 downloads per month
Used in 113 crates (34 directly)

MIT/Apache

295KB
5.5K SLoC

dioxus-core

dioxus-core provides a fast and featureful VirtualDom implementation for Rust.

use dioxus_core::prelude::*;

let vdom = VirtualDom::new(app);
let real_dom = SomeRenderer::new();

loop {
    select! {
        evt = real_dom.event() => vdom.handle_event(evt),
        _ = vdom.wait_for_work() => {}
    }
    vdom.render(&mut real_dom)
}

# fn app() -> Element { None }
# struct SomeRenderer; impl SomeRenderer { fn new() -> SomeRenderer { SomeRenderer; } async fn event() -> () { unimplemented!() } }

Features

A virtualdom is an efficient and flexible tree datastructure that allows you to manage state for a graphical user interface. The Dioxus VirtualDom is perhaps the most fully-featured virtualdom implementation in Rust and powers renderers running across Web, Desktop, Mobile, SSR, TUI, LiveView, and more. When you use the Dioxus VirtualDom, you immediately enable users of your renderer to leverage the wide ecosystem of Dioxus components, hooks, and associated tooling.

Some features of dioxus-core include:

  • UI components are just functions
  • State is provided by hooks
  • Deep integration with async
  • Strong focus on performance
  • Integrated hotreloading support
  • Extensible system for UI elements and their attributes

If you are just starting, check out the Guides first.

Understanding the implementation

dioxus-core is designed to be a lightweight crate that. It exposes a number of flexible primitives without being deeply concerned about the intracices of state management itself. We proivde a number of useful abstractions built on these primitives in the dioxus-hooks crate as well as the dioxus-signals crate.

The important abstractions to understand are:

Usage

The dioxus crate exports the rsx macro which transforms a helpful, simpler syntax of Rust.

First, start with your app:

# use dioxus::dioxus_core::Mutations;
use dioxus::prelude::*;

// First, declare a root component
fn app() -> Element {
    rsx!{
        div { "hello world" }
    }
}

fn main() {
    // Next, create a new VirtualDom using this app as the root component.
    let mut dom = VirtualDom::new(app);

    // The initial render of the dom will generate a stream of edits for the real dom to apply
    let mutations = dom.rebuild_to_vec();
}

Contributing

License

This project is licensed under the MIT license.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you, shall be licensed as MIT, without any additional terms or conditions.

Dependencies

~2.1–9.5MB
~50K SLoC