dioxus/packages/core/src/lib.rs

102 lines
3 KiB
Rust
Raw Normal View History

#![allow(non_snake_case)]
2021-07-29 22:04:09 +00:00
#![doc = include_str!("../README.md")]
2021-01-14 07:56:41 +00:00
pub(crate) mod diff;
2022-01-03 07:06:42 +00:00
pub(crate) mod events;
pub(crate) mod lazynodes;
pub(crate) mod mutations;
pub(crate) mod nodes;
2022-01-03 07:06:42 +00:00
pub(crate) mod properties;
2021-12-21 03:33:13 +00:00
pub(crate) mod scopes;
2022-01-03 07:06:42 +00:00
pub(crate) mod util;
pub(crate) mod virtual_dom;
2021-02-03 07:26:04 +00:00
2021-02-12 21:11:33 +00:00
pub(crate) mod innerlude {
2021-12-13 00:47:13 +00:00
pub(crate) use crate::diff::*;
2022-01-03 07:06:42 +00:00
pub use crate::events::*;
2021-11-01 06:41:23 +00:00
pub use crate::lazynodes::*;
2021-08-22 21:08:25 +00:00
pub use crate::mutations::*;
2021-05-15 16:03:08 +00:00
pub use crate::nodes::*;
2022-01-03 07:06:42 +00:00
pub use crate::properties::*;
2021-12-21 03:33:13 +00:00
pub use crate::scopes::*;
2022-01-03 07:06:42 +00:00
pub use crate::util::*;
2021-05-15 16:03:08 +00:00
pub use crate::virtual_dom::*;
2021-11-01 06:41:23 +00: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 06:12:39 +00:00
/// ```rust, ignore
/// fn example(cx: Scope<Props>) -> Element {
/// // ...
/// }
///
/// rsx!(
/// example()
/// )
/// ```
/// ## React-Style
2022-01-03 06:12:39 +00: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 06:12:39 +00: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 23:31:07 +00:00
}
2021-02-12 05:29:46 +00:00
2021-08-31 16:28:44 +00:00
pub use crate::innerlude::{
2022-01-03 07:06:42 +00:00
AnyEvent, Attribute, Component, DioxusElement, DomEdit, Element, ElementId, ElementIdIterator,
EventHandler, EventPriority, IntoVNode, LazyNodes, Listener, Mutations, NodeFactory,
2022-01-03 07:06:42 +00:00
Properties, SchedulerMsg, Scope, ScopeId, ScopeState, TaskId, UiEvent, UserEvent, VComponent,
VElement, VFragment, VNode, VPlaceholder, VText, VirtualDom,
2021-08-31 16:28:44 +00:00
};
pub mod prelude {
2021-12-10 02:19:31 +00:00
pub use crate::innerlude::{
2022-01-03 07:06:42 +00:00
fc_to_builder, Attributes, Component, DioxusElement, Element, EventHandler, Fragment,
LazyNodes, NodeFactory, Properties, Scope, ScopeState, VNode, VirtualDom,
2021-12-10 02:19:31 +00:00
};
2021-08-31 16:28:44 +00:00
}
2021-07-11 23:31:07 +00:00
pub mod exports {
2021-08-25 19:54:33 +00:00
//! Important dependencies that are used by the rest of the library
2021-12-15 03:48:20 +00:00
//! Feel free to just add the dependencies in your own Crates.toml
pub use bumpalo;
2021-10-04 05:28:04 +00:00
pub use futures_channel;
2021-01-15 01:56:28 +00:00
}
2021-12-21 03:33:13 +00:00
/// Functions that wrap unsafe functionality to prevent us from misusing it at the callsite
pub(crate) mod unsafe_utils {
use crate::VNode;
2022-01-03 07:06:42 +00:00
pub(crate) unsafe fn extend_vnode<'a, 'b>(node: &'a VNode<'a>) -> &'b VNode<'b> {
2021-12-21 03:33:13 +00:00
std::mem::transmute(node)
}
}