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
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
use crate::props::{Props, PropsData, PropsError};
use std::sync::mpsc::Sender;

#[derive(Debug, Clone)]
pub enum StateError {
    Props(PropsError),
    CouldNotWriteData,
}

#[derive(Clone)]
pub struct StateUpdate(Sender<Props>);

impl StateUpdate {
    pub fn new(sender: Sender<Props>) -> Self {
        Self(sender)
    }

    pub fn write<T>(&self, data: T) -> Result<(), StateError>
    where
        T: Into<Props>,
    {
        if self.0.send(data.into()).is_err() {
            Err(StateError::CouldNotWriteData)
        } else {
            Ok(())
        }
    }
}

pub struct State<'a> {
    data: &'a Props,
    update: StateUpdate,
}

impl<'a> State<'a> {
    pub fn new(data: &'a Props, update: StateUpdate) -> Self {
        Self { data, update }
    }

    pub fn has<T>(&self) -> bool
    where
        T: 'static + PropsData,
    {
        self.data.has::<T>()
    }

    pub fn read<T>(&self) -> Result<&'a T, StateError>
    where
        T: 'static + PropsData,
    {
        match self.data.read() {
            Ok(v) => Ok(v),
            Err(e) => Err(StateError::Props(e)),
        }
    }

    pub fn map_or_default<T, R, F>(&self, f: F) -> R
    where
        T: 'static + PropsData,
        R: Default,
        F: FnMut(&T) -> R,
    {
        self.data.map_or_default(f)
    }

    pub fn map_or_else<T, R, F, E>(&self, f: F, e: E) -> R
    where
        T: 'static + PropsData,
        F: FnMut(&T) -> R,
        E: FnMut() -> R,
    {
        self.data.map_or_else(f, e)
    }

    pub fn read_cloned<T>(&self) -> Result<T, StateError>
    where
        T: 'static + PropsData + Clone,
    {
        match self.data.read_cloned() {
            Ok(v) => Ok(v),
            Err(e) => Err(StateError::Props(e)),
        }
    }

    pub fn read_cloned_or_default<T>(&self) -> T
    where
        T: 'static + PropsData + Clone + Default,
    {
        self.data.read_cloned_or_default()
    }

    pub fn write<T>(&self, data: T) -> Result<(), StateError>
    where
        T: 'static + PropsData + Send + Sync,
    {
        self.update().write(data)
    }

    pub fn update(&self) -> &StateUpdate {
        &self.update
    }
}