|
4 lat temu | |
---|---|---|
.vscode | 4 lat temu | |
docs | 4 lat temu | |
examples | 4 lat temu | |
packages | 4 lat temu | |
.gitignore | 4 lat temu | |
CHANGELOG.md | 4 lat temu | |
Cargo.toml | 4 lat temu | |
README.md | 4 lat temu | |
SOLVEDPROBLEMS.md | 4 lat temu |
A concurrent, functional, virtual DOM for Rust
Dioxus is a new approach for creating performant cross platform user experiences in Rust. In Dioxus, the UI is represented as a tree of Virtual Nodes not bound to any specific renderer. Instead, external renderers can leverage Dioxus' virtual DOM and event system as a source of truth for rendering to a medium of their choice. Developers experienced with building react-based experiences should feel comfortable with Dioxus.
Dioxus was built in a way to facilitate powerful external renderers - especially designed for the web, servers, desktop, and hybrid approaches like Dioxus Liveview.
Dioxus is supported by Dioxus Labs, a company providing end-to-end services for building, testing, deploying, and managing Dioxus apps on all supported platforms.
Dioxus' goal is to be the most advanced UI system for Rust, targeting isomorphism and hybrid approaches. Our goal is to eliminate context-switching for cross-platform development - both in UI patterns and programming language. Hooks and components should work everywhere without compromise.
Dioxus Core supports:
On top of these, we have several projects you can find in the packages
folder.
dioxus-cli
: Testing, development, and packaging tools for Dioxus appsdioxus-router
: A hook-based router implementation for Dioxus web appsdioxus-vscode
: Syntax highlighting, code formatting, and hints for Dioxus html! blocksredux-rs
: Redux-style global state managementrecoil-rs
: Recoil-style global state managementdioxus-iso
: Hybrid apps (SSR + Web)dioxus-live
: Live viewdioxus-webview
: Desktop Applicationsdioxus-ios
: iOS appsdioxus-android
: Android appsdioxus-magic
: AR/VR AppsDioxus should look and feel just like writing functional React components. In Dioxus, there are no class components with lifecycles. All state management is done via hooks. This encourages logic reusability and lessens the burden on Dioxus to maintain a non-breaking lifecycle API.
#[derive(Properties, PartialEq)]
struct MyProps {
name: String
}
async fn Example(ctx: &Context<MyProps>) -> VNode {
html! { <div> "Hello {ctx.props.name}!" </div> }
}
Here, the Context
object is used to access hook state, create subscriptions, and interact with the built-in context API. Props, children, and component APIs are accessible via the Context
object. The functional component macro makes life more productive by inlining props directly as function arguments, similar to how Rocket parses URIs.
// A very terse component!
#[fc]
fn Example(ctx: &Context, name: String) -> VNode {
html! { <div> "Hello {name}!" </div> }
}
// or
#[functional_component]
static Example: FC = |ctx, name: String| html! { <div> "Hello {name}!" </div> };
The final output of components must be a tree of VNodes. We provide an html macro for using JSX-style syntax to write these, though, you could use any macro, DSL, templating engine, or the constructors directly.
In Dioxus, VNodes are asynchronous and can their rendering can be paused at any time by awaiting a future. Hooks can combine this functionality with the Context and Subscription APIs to craft dynamic and efficient user experiences.
fn user_data(ctx: &Context<()>) -> VNode {
// Register this future as a task
use_suspense(ctx, async {
// Continue on with the component as usual, waiting for data to arrive
let Profile { name, birthday, .. } = fetch_data().await;
html! {
<div>
{"Hello, {name}!"}
{if birthday === std::Instant::now() {html! {"Happy birthday!"}}}
</div>
}
})
}
Asynchronous components are powerful but can also be easy to misuse as they pause rendering for the component and its children. Refer to the concurrent guide for information on how to best use async components.
With the Context, Subscription, and Asynchronous APIs, we've built Dioxus Liveview: a coupling of frontend and backend to deliver user experiences that do not require dedicated API development. Instead of building and maintaining frontend-specific API endpoints, components can directly access databases, server caches, and other services directly from the component.
These set of features are still experimental. Currently, we're still working on making these components more ergonomic
async fn live_component(ctx: &Context<()>) -> VNode {
use_live_component(
ctx,
// Rendered via the client
#[cfg(target_arch = "wasm32")]
|| html! { <div> {"Loading data from server..."} </div> },
// Renderered on the server
#[cfg(not(target_arch = "wasm32"))]
|| html! { <div> {"Server Data Loaded!"} </div> },
)
}
Dioxus LiveHost is a paid service dedicated to hosting your Dioxus Apps - whether they be server-rendered, wasm-only, or a liveview. LiveHost enables a wide set of features:
For small teams, LiveHost is free. Check out the pricing page to see if Dioxus LiveHost is good your team.
We use the dedicated dioxus-cli
to build and test dioxus web-apps. This can run examples, tests, build web workers, launch development servers, bundle, and more. It's general purpose, but currently very tailored to Dioxus for liveview and bundling. If you've not used it before, cargo install --path pacakages/dioxus-cli
will get it installed. This CLI tool should feel like using cargo
but with 1st party support for assets, bundling, and other important dioxus-specific features.
Alternatively, trunk
works but can't run examples.
cargo run --example tide_ssr
cargo run --example doc_generator
cargo run --example fc_macro
cargo run --example hello
cargo run --example router
cargo run --example tide_ssr
cargo run --example webview
cargo run --example twitter