dioxus/packages/core/src/lib.rs

100 lines
3 KiB
Rust
Raw Normal View History

#![allow(non_snake_case)]
2021-07-29 18:04:09 -04:00
#![doc = include_str!("../README.md")]
2021-01-14 02:56:41 -05:00
pub(crate) mod diff;
pub(crate) mod lazynodes;
pub(crate) mod mutations;
pub(crate) mod nodes;
2021-12-20 22:33:13 -05:00
pub(crate) mod scopes;
pub(crate) mod virtual_dom;
2021-02-03 02:26:04 -05:00
2021-02-12 16:11:33 -05:00
pub(crate) mod innerlude {
2021-12-12 19:47:13 -05:00
pub(crate) use crate::diff::*;
2021-11-01 02:41:23 -04:00
pub use crate::lazynodes::*;
2021-08-22 17:08:25 -04:00
pub use crate::mutations::*;
2021-05-15 12:03:08 -04:00
pub use crate::nodes::*;
2021-12-20 22:33:13 -05:00
pub use crate::scopes::*;
2021-05-15 12:03:08 -04:00
pub use crate::virtual_dom::*;
2021-11-01 02:41:23 -04:00
/// An [`Element`] is a possibly-none [`VNode`] created by calling `render` on [`Scope`] or [`ScopeState`].
///
/// Any [`None`] [`Element`] will automatically be coerced into a placeholder [`VNode`] with the [`VNode::Placeholder`] variant.
pub type Element<'a> = Option<VNode<'a>>;
/// A [`Component`] is a function that takes a [`Scope`] and returns an [`Element`].
///
/// Components can be used in other components with two syntax options:
/// - lowercase as a function call with named arguments (rust style)
/// - uppercase as an element (react style)
///
/// ## Rust-Style
///
2022-01-03 01:12:39 -05:00
/// ```rust, ignore
/// fn example(cx: Scope<Props>) -> Element {
/// // ...
/// }
///
/// rsx!(
/// example()
/// )
/// ```
/// ## React-Style
2022-01-03 01:12:39 -05:00
/// ```rust, ignore
/// fn Example(cx: Scope<Props>) -> Element {
/// // ...
/// }
///
/// rsx!(
/// Example {}
/// )
/// ```
///
/// ## As a closure
/// This particular type alias lets you even use static closures for pure/static components:
///
2022-01-03 01:12:39 -05:00
/// ```rust, ignore
/// static Example: Component<Props> = |cx| {
/// // ...
/// };
/// ```
pub type Component<P = ()> = fn(Scope<P>) -> Element;
/// A list of attributes
///
pub type Attributes<'a> = Option<&'a [Attribute<'a>]>;
2021-07-11 19:31:07 -04:00
}
2021-02-12 00:29:46 -05:00
2021-08-31 12:28:44 -04:00
pub use crate::innerlude::{
Attribute, Component, DioxusElement, DomEdit, Element, ElementId, ElementIdIterator, Event,
EventHandler, EventPriority, IntoVNode, LazyNodes, Listener, Mutations, NodeFactory,
Properties, SchedulerMsg, Scope, ScopeId, ScopeState, TaskId, UserEvent, VComponent, VElement,
VFragment, VNode, VPlaceholder, VText, VirtualDom,
2021-08-31 12:28:44 -04:00
};
pub mod prelude {
pub use crate::innerlude::Scope;
2021-12-09 21:19:31 -05:00
pub use crate::innerlude::{
Attributes, Component, DioxusElement, Element, EventHandler, LazyNodes, NodeFactory,
ScopeState,
2021-12-09 21:19:31 -05:00
};
2021-08-31 12:28:44 -04:00
pub use crate::nodes::VNode;
2021-12-21 01:11:27 -05:00
pub use crate::virtual_dom::{fc_to_builder, Fragment, Properties};
2021-08-31 12:28:44 -04:00
pub use crate::VirtualDom;
}
2021-07-11 19:31:07 -04:00
pub mod exports {
2021-08-25 15:54:33 -04:00
//! Important dependencies that are used by the rest of the library
2021-12-14 22:48:20 -05:00
//! Feel free to just add the dependencies in your own Crates.toml
pub use bumpalo;
2021-10-04 01:28:04 -04:00
pub use futures_channel;
2021-01-14 20:56:28 -05:00
}
2021-12-20 22:33:13 -05:00
/// Functions that wrap unsafe functionality to prevent us from misusing it at the callsite
pub(crate) mod unsafe_utils {
use crate::VNode;
pub unsafe fn extend_vnode<'a, 'b>(node: &'a VNode<'a>) -> &'b VNode<'b> {
std::mem::transmute(node)
}
}