use owning_ref::{OwningHandle, RcRef}; use std::any::Any; use std::cell::{RefCell, RefMut}; use std::ops::DerefMut; use std::rc::Rc; use view::{Selector, View, ViewWrapper}; /// Wrapper around a view to provide interior mutability. pub struct IdView { view: Rc>, id: String, } /// Mutable reference to a view. /// /// This behaves like a [`RefMut`], but without being tied to a lifetime. /// /// [`RefMut`]: https://doc.rust-lang.org/std/cell/struct.RefMut.html pub type ViewRef = OwningHandle>, RefMut<'static, V>>; impl IdView { /// Wraps `view` in a new `IdView`. pub fn new>(id: S, view: V) -> Self { IdView { view: Rc::new(RefCell::new(view)), id: id.into(), } } /// Gets mutable access to the inner view. /// /// This returns a `ViewRef`, which implement `DerefMut`. /// /// # Panics /// /// Panics if another reference for this view already exists. pub fn get_mut(&mut self) -> ViewRef { let cell_ref = RcRef::new(Rc::clone(&self.view)); OwningHandle::new_mut(cell_ref) } } // Shortcut for a boxed callback (for the wrap_call_on_any method). type BoxedCallback<'a> = Box FnMut(&'b mut Any) + 'a>; impl ViewWrapper for IdView { type V = T; fn with_view(&self, f: F) -> Option where F: FnOnce(&Self::V) -> R, { self.view.try_borrow().ok().map(|v| f(&*v)) } fn with_view_mut(&mut self, f: F) -> Option where F: FnOnce(&mut Self::V) -> R, { self.view.try_borrow_mut().ok().map(|mut v| f(&mut *v)) } fn into_inner(mut self) -> Result where Self::V: Sized, { match Rc::try_unwrap(self.view) { Err(rc) => { // Whoops! Abort! Undo! self.view = rc; Err(self) } Ok(cell) => Ok(cell.into_inner()), } } // Some for<'b> weirdness here to please the borrow checker gods... fn wrap_call_on_any<'a>( &mut self, selector: &Selector, mut callback: BoxedCallback<'a> ) { match selector { &Selector::Id(id) if id == self.id => callback(self), s => { self.view .try_borrow_mut() .ok() .map(|mut v| v.deref_mut().call_on_any(s, callback)); } } } fn wrap_focus_view(&mut self, selector: &Selector) -> Result<(), ()> { match selector { &Selector::Id(id) if id == self.id => Ok(()), s => self.view .try_borrow_mut() .map_err(|_| ()) .and_then(|mut v| v.deref_mut().focus_view(s)), } } }