1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! # Yewdux
//!
//! Simple state management for [Yew](https://yew.rs) applications.
//!
//! See the [book](https://intendednull.github.io/yewdux/) for more details.
//!
//! ## Example
//!
//! ```rust
//! use yew::prelude::*;
//! use yewdux::prelude::*;
//!
//! #[derive(Default, Clone, PartialEq, Eq, Store)]
//! struct State {
//!     count: u32,
//! }
//!
//! #[function_component]
//! fn App() -> Html {
//!     let (state, dispatch) = use_store::<State>();
//!     let onclick = dispatch.reduce_mut_callback(|state| state.count += 1);
//!
//!     html! {
//!         <>
//!         <p>{ state.count }</p>
//!         <button {onclick}>{"+1"}</button>
//!         </>
//!     }
//! }
//! ```
#![allow(clippy::needless_doctest_main)]

pub mod context;
pub mod context_provider;
pub mod dispatch;
pub mod functional;
pub mod listener;
pub mod mrc;
#[cfg(target_arch = "wasm32")]
pub mod storage;
pub mod store;
mod subscriber;

// Used by macro.
#[doc(hidden)]
pub use log;

// Allow shorthand, like `yewdux::Dispatch`
pub use context::Context;
pub use prelude::*;

pub mod prelude {
    //! Default exports

    pub use crate::{
        context_provider::YewduxRoot,
        dispatch::Dispatch,
        functional::{
            use_dispatch, use_selector, use_selector_eq, use_selector_eq_with_deps,
            use_selector_with_deps, use_store, use_store_value,
        },
        listener::{init_listener, Listener},
        store::{Reducer, Store},
    };
}