use dom_struct::dom_struct;
use crate::dom::bindings::codegen::Bindings::TouchListBinding::TouchListMethods;
use crate::dom::bindings::reflector::{reflect_dom_object, Reflector};
use crate::dom::bindings::root::{Dom, DomRoot};
use crate::dom::touch::Touch;
use crate::dom::window::Window;
#[dom_struct]
pub struct TouchList {
reflector_: Reflector,
touches: Vec<Dom<Touch>>,
}
impl TouchList {
fn new_inherited(touches: &[&Touch]) -> TouchList {
TouchList {
reflector_: Reflector::new(),
touches: touches.iter().map(|touch| Dom::from_ref(*touch)).collect(),
}
}
pub fn new(window: &Window, touches: &[&Touch]) -> DomRoot<TouchList> {
reflect_dom_object(Box::new(TouchList::new_inherited(touches)), window)
}
}
impl TouchListMethods for TouchList {
fn Length(&self) -> u32 {
self.touches.len() as u32
}
fn Item(&self, index: u32) -> Option<DomRoot<Touch>> {
self.touches
.get(index as usize)
.map(|js| DomRoot::from_ref(&**js))
}
fn IndexedGetter(&self, index: u32) -> Option<DomRoot<Touch>> {
self.Item(index)
}
}