2021-09-27 12:10:56 -03:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
2024-10-04 08:19:50 -03:00
|
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2021-09-27 12:10:56 -03:00
|
|
|
|
*
|
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2022-09-25 19:15:49 -03:00
|
|
|
|
#include <LibJS/Runtime/Realm.h>
|
2024-04-26 21:09:58 -03:00
|
|
|
|
#include <LibWeb/Bindings/CustomEventPrototype.h>
|
2022-09-25 19:15:49 -03:00
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2021-09-27 12:10:56 -03:00
|
|
|
|
#include <LibWeb/DOM/CustomEvent.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
|
GC_DEFINE_ALLOCATOR(CustomEvent);
|
2023-11-19 15:47:52 -03:00
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
|
GC::Ref<CustomEvent> CustomEvent::create(JS::Realm& realm, FlyString const& event_name, CustomEventInit const& event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
|
{
|
2024-11-13 13:50:17 -03:00
|
|
|
|
return realm.create<CustomEvent>(realm, event_name, event_init);
|
2022-08-08 17:29:40 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<CustomEvent>> CustomEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, CustomEventInit const& event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
|
{
|
2022-09-25 19:15:49 -03:00
|
|
|
|
return create(realm, event_name, event_init);
|
2022-08-08 17:29:40 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-04-06 07:54:03 -03:00
|
|
|
|
CustomEvent::CustomEvent(JS::Realm& realm, FlyString const& event_name, CustomEventInit const& event_init)
|
2023-04-06 11:12:33 -03:00
|
|
|
|
: Event(realm, event_name, event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
|
, m_detail(event_init.detail)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CustomEvent::~CustomEvent() = default;
|
|
|
|
|
|
|
2023-08-07 03:41:28 -03:00
|
|
|
|
void CustomEvent::initialize(JS::Realm& realm)
|
2023-01-10 08:28:20 -03:00
|
|
|
|
{
|
2023-08-07 03:41:28 -03:00
|
|
|
|
Base::initialize(realm);
|
2024-03-16 09:13:08 -03:00
|
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(CustomEvent);
|
2023-01-10 08:28:20 -03:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-09-27 12:10:56 -03:00
|
|
|
|
void CustomEvent::visit_edges(JS::Cell::Visitor& visitor)
|
|
|
|
|
|
{
|
2022-08-08 17:29:40 -03:00
|
|
|
|
Base::visit_edges(visitor);
|
2021-09-27 12:10:56 -03:00
|
|
|
|
visitor.visit(m_detail);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// https://dom.spec.whatwg.org/#dom-customevent-initcustomevent
|
2023-04-06 07:54:03 -03:00
|
|
|
|
void CustomEvent::init_custom_event(String const& type, bool bubbles, bool cancelable, JS::Value detail)
|
2021-09-27 12:10:56 -03: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 11:12:33 -03:00
|
|
|
|
initialize_event(type, bubbles, cancelable);
|
2021-09-27 12:10:56 -03:00
|
|
|
|
|
|
|
|
|
|
// 3. Set this’s detail attribute to detail.
|
|
|
|
|
|
m_detail = detail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|