| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  | /*
 | 
					
						
							|  |  |  |  |  * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org> | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  |  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org> | 
					
						
							| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  |  */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-25 16:15:49 -06:00
										 |  |  |  | #include <LibJS/Runtime/Realm.h>
 | 
					
						
							|  |  |  |  | #include <LibWeb/Bindings/Intrinsics.h>
 | 
					
						
							| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  | #include <LibWeb/DOM/CustomEvent.h>
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | namespace Web::DOM { | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-06 12:54:03 +02:00
										 |  |  |  | WebIDL::ExceptionOr<JS::NonnullGCPtr<CustomEvent>> CustomEvent::create(JS::Realm& realm, FlyString const& event_name, CustomEventInit const& event_init) | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-02-14 21:27:42 +01:00
										 |  |  |  |     return MUST_OR_THROW_OOM(realm.heap().allocate<CustomEvent>(realm, realm, event_name, event_init)); | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-06 12:54:03 +02:00
										 |  |  |  | WebIDL::ExceptionOr<JS::NonnullGCPtr<CustomEvent>> CustomEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, CustomEventInit const& event_init) | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-25 16:15:49 -06:00
										 |  |  |  |     return create(realm, event_name, event_init); | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-06 12:54:03 +02:00
										 |  |  |  | CustomEvent::CustomEvent(JS::Realm& realm, FlyString const& event_name, CustomEventInit const& event_init) | 
					
						
							| 
									
										
										
										
											2023-04-06 16:12:33 +02:00
										 |  |  |  |     : Event(realm, event_name, event_init) | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  |     , m_detail(event_init.detail) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | CustomEvent::~CustomEvent() = default; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |  | void CustomEvent::initialize(JS::Realm& realm) | 
					
						
							| 
									
										
										
										
											2023-01-10 06:28:20 -05:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |  |     Base::initialize(realm); | 
					
						
							| 
									
										
										
										
											2023-01-10 06:28:20 -05:00
										 |  |  |  |     set_prototype(&Bindings::ensure_web_prototype<Bindings::CustomEventPrototype>(realm, "CustomEvent")); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  | void CustomEvent::visit_edges(JS::Cell::Visitor& visitor) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-08-08 22:29:40 +02:00
										 |  |  |  |     Base::visit_edges(visitor); | 
					
						
							| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  |     visitor.visit(m_detail); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // https://dom.spec.whatwg.org/#dom-customevent-initcustomevent
 | 
					
						
							| 
									
										
										
										
											2023-04-06 12:54:03 +02:00
										 |  |  |  | void CustomEvent::init_custom_event(String const& type, bool bubbles, bool cancelable, JS::Value detail) | 
					
						
							| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |     // 1. If this’s dispatch flag is set, then return.
 | 
					
						
							|  |  |  |  |     if (dispatched()) | 
					
						
							|  |  |  |  |         return; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 2. Initialize this with type, bubbles, and cancelable.
 | 
					
						
							| 
									
										
										
										
											2023-04-06 16:12:33 +02:00
										 |  |  |  |     initialize_event(type, bubbles, cancelable); | 
					
						
							| 
									
										
										
										
											2021-09-27 16:10:56 +01:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     // 3. Set this’s detail attribute to detail.
 | 
					
						
							|  |  |  |  |     m_detail = detail; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | } |