Global and local state management for GTK apps which implements the flux pattern. This crate targets apps written with gtk-rust-app framework.
A State can be any kind of data structure an application is based on. For a 'counter' app it might be a struct with a single u32 field. Actions are enums which represent the possible features of the app affecting the state.
```rust // src/store.rs
pub const INCREMENT: &str = "increment";
// Given you have a global state
pub struct State { pub count: u128 }
// Using the store macro a 'store' for this state
store!(State);
// The following public interface will be generated:
pub type Store = gstore::Store
```rust // main.rs
mod store;
// Initialize the store pub fn main() { init_store( State::default(), |action, state| { match action.name() { crate::store::INCREMENT => { let amount: u128 = action.arg().unwrap(); state.count += amount; } } }, vec![ MyMiddleware::new() ] ) }
// Implement a middleware
struct MyMiddleware;
impl MyMiddleware {
pub fn new() -> Box
fn post_reduce(action: &Action, state: &State) {
//...
}
}
// Then in your GTK app you can dispatch actions to the store
let button: gtk::Button = gtk::Button::builder().build(); button.connect_clicked(|b| { b.dispatch(crate::store::INCREMENT, 2) });
```
gstore can print basic performance information via the environment variabl GSTORE_PERF=1
;
gstore is distributed under the terms of the GPL-3.0 license. See LICENSE for details.