41 lines
819 B
Rust
41 lines
819 B
Rust
use yewdux::prelude::*;
|
|
|
|
#[derive(Clone)]
|
|
pub(crate) struct Room {
|
|
pub room_id: String,
|
|
pub display_name: String,
|
|
}
|
|
|
|
#[derive(Default, Clone)]
|
|
pub(crate) struct WebUiState {
|
|
pub jwt_token: Option<String>,
|
|
pub rooms: Vec<Room>,
|
|
}
|
|
|
|
pub(crate) enum Action {
|
|
UpdateJwt(String),
|
|
AddRoom(Room),
|
|
}
|
|
|
|
impl Reducer for WebUiState {
|
|
type Action = Action;
|
|
|
|
fn new() -> Self {
|
|
Self {
|
|
jwt_token: None,
|
|
rooms: vec![],
|
|
}
|
|
}
|
|
|
|
fn reduce(&mut self, action: Self::Action) -> bool {
|
|
match action {
|
|
Action::UpdateJwt(jwt_token) => self.jwt_token = Some(jwt_token),
|
|
Action::AddRoom(room) => self.rooms.push(room.clone()),
|
|
};
|
|
|
|
true
|
|
}
|
|
}
|
|
|
|
pub(crate) type WebUiDispatcher = DispatchProps<ReducerStore<WebUiState>>;
|