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
//! Yewdux state management stores
//!
//! Global state management using Redux-like patterns.
//!
//! ## Available Stores
//!
//! - **SkillsStore**: Installed skills, filtering, sorting, selected skill
//! - **ExecutionsStore**: Execution history, active execution, streaming output
//! - **SettingsStore**: User preferences, persisted to localStorage
//! - **UiStore**: Transient UI state (sidebar, notifications, modals)
//!
//! ## Usage
//!
//! ```ignore
//! use yewdux::prelude::*;
//! use crate::store::{SkillsStore, SkillsAction};
//!
//! #[function_component(MyComponent)]
//! fn my_component() -> Html {
//! let (skills, dispatch) = use_store::<SkillsStore>();
//!
//! let on_search = {
//! let dispatch = dispatch.clone();
//! Callback::from(move |query: String| {
//! dispatch.apply(SkillsAction::SetSearchQuery(query));
//! })
//! };
//!
//! html! {
//! // ...
//! }
//! }
//! ```
// Re-export stores
pub use ;
pub use ;
pub use ;
pub use ;