use dom_struct::dom_struct;
use js::jsapi::Heap;
use js::jsval::JSVal;
use js::rust::{HandleObject, HandleValue, MutableHandleValue};
use servo_atoms::Atom;
use crate::dom::bindings::codegen::Bindings::EventBinding::EventMethods;
use crate::dom::bindings::codegen::Bindings::PopStateEventBinding;
use crate::dom::bindings::codegen::Bindings::PopStateEventBinding::PopStateEventMethods;
use crate::dom::bindings::error::Fallible;
use crate::dom::bindings::inheritance::Castable;
use crate::dom::bindings::reflector::reflect_dom_object_with_proto;
use crate::dom::bindings::root::DomRoot;
use crate::dom::bindings::str::DOMString;
use crate::dom::bindings::trace::RootedTraceableBox;
use crate::dom::event::Event;
use crate::dom::eventtarget::EventTarget;
use crate::dom::window::Window;
use crate::script_runtime::{CanGc, JSContext};
#[dom_struct]
pub struct PopStateEvent {
event: Event,
#[ignore_malloc_size_of = "Defined in rust-mozjs"]
state: Heap<JSVal>,
}
impl PopStateEvent {
fn new_inherited() -> PopStateEvent {
PopStateEvent {
event: Event::new_inherited(),
state: Heap::default(),
}
}
fn new_uninitialized(
window: &Window,
proto: Option<HandleObject>,
can_gc: CanGc,
) -> DomRoot<PopStateEvent> {
reflect_dom_object_with_proto(
Box::new(PopStateEvent::new_inherited()),
window,
proto,
can_gc,
)
}
fn new(
window: &Window,
proto: Option<HandleObject>,
type_: Atom,
bubbles: bool,
cancelable: bool,
state: HandleValue,
can_gc: CanGc,
) -> DomRoot<PopStateEvent> {
let ev = PopStateEvent::new_uninitialized(window, proto, can_gc);
ev.state.set(state.get());
{
let event = ev.upcast::<Event>();
event.init_event(type_, bubbles, cancelable);
}
ev
}
pub fn dispatch_jsval(
target: &EventTarget,
window: &Window,
state: HandleValue,
can_gc: CanGc,
) {
let event =
PopStateEvent::new(window, None, atom!("popstate"), false, false, state, can_gc);
event.upcast::<Event>().fire(target, can_gc);
}
}
impl PopStateEventMethods for PopStateEvent {
fn Constructor(
window: &Window,
proto: Option<HandleObject>,
can_gc: CanGc,
type_: DOMString,
init: RootedTraceableBox<PopStateEventBinding::PopStateEventInit>,
) -> Fallible<DomRoot<PopStateEvent>> {
Ok(PopStateEvent::new(
window,
proto,
Atom::from(type_),
init.parent.bubbles,
init.parent.cancelable,
init.state.handle(),
can_gc,
))
}
fn State(&self, _cx: JSContext, mut retval: MutableHandleValue) {
retval.set(self.state.get())
}
fn IsTrusted(&self) -> bool {
self.event.IsTrusted()
}
}