mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
cab573eefd
* add prevent default methods to the event * sync prevent default almost working * sync prevent default working * Move event handling into the runtime * update core tests * restore desktop file dialog * implement prevent default on web * add a hint about the new prevent default method * fix web prevent default * Fix CTRL+click on links * fix values memorize in place test * Fix a few more tests * Add a playwright test for sync prevent default * Fix core doc tests * create a deprecated VirtualDom::handle_event * fix macos imports in desktop * Fix onmounted event * Fix liveview support * switch to RefCell for metadata * Remove println * remove prevent default attribute * remove web specific link behavior * Fix liveview links * more liveview fixes for link * Fix merge conflicts * Fix clippy * use the new prevent default in the file upload example
100 lines
3.4 KiB
Markdown
100 lines
3.4 KiB
Markdown
# dioxus-core
|
|
|
|
`dioxus-core` provides a fast and featureful VirtualDom implementation for Rust.
|
|
|
|
```rust, no_run
|
|
# tokio::runtime::Runtime::new().unwrap().block_on(async {
|
|
use dioxus_core::prelude::*;
|
|
use dioxus_core::*;
|
|
|
|
let mut vdom = VirtualDom::new(app);
|
|
let real_dom = SomeRenderer::new();
|
|
|
|
loop {
|
|
tokio::select! {
|
|
evt = real_dom.event() => {
|
|
let evt = Event::new(evt, true);
|
|
vdom.runtime().handle_event("onclick", evt, ElementId(0))
|
|
},
|
|
_ = vdom.wait_for_work() => {}
|
|
}
|
|
vdom.render_immediate(&mut real_dom.apply())
|
|
}
|
|
|
|
# fn app() -> Element { VNode::empty() }
|
|
# struct SomeRenderer; impl SomeRenderer { fn new() -> SomeRenderer { SomeRenderer } async fn event(&self) -> std::rc::Rc<dyn std::any::Any> { unimplemented!() } fn apply(&self) -> Mutations { Mutations::default() } }
|
|
# });
|
|
```
|
|
|
|
## Features
|
|
|
|
A virtualdom is an efficient and flexible tree data structure 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 provide 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:
|
|
|
|
- The [`VirtualDom`]
|
|
- The [`Component`] and its [`Properties`]
|
|
- Handling events
|
|
- Working with async
|
|
- Suspense
|
|
|
|
## Usage
|
|
|
|
The `dioxus` crate exports the `rsx` macro which transforms a helpful, simpler syntax of Rust.
|
|
|
|
First, start with your app:
|
|
|
|
```rust
|
|
# 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
|
|
|
|
- Check out the website [section on contributing](https://dioxuslabs.com/learn/0.5/contributing).
|
|
- Report issues on our [issue tracker](https://github.com/dioxuslabs/dioxus/issues).
|
|
- [Join](https://discord.gg/XgGxMSkvUM) the discord and ask questions!
|
|
|
|
<a href="https://github.com/dioxuslabs/dioxus/graphs/contributors">
|
|
<img src="https://contrib.rocks/image?repo=dioxuslabs/dioxus&max=30&columns=10" />
|
|
</a>
|
|
|
|
## License
|
|
|
|
This project is licensed under the [MIT license].
|
|
|
|
[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT
|
|
|
|
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.
|