diff options
author | Andreas Kling <kling@serenityos.org> | 2022-02-16 20:43:24 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-16 22:21:45 +0100 |
commit | e76e8e22b524da92b3404747b975f1c985ceff68 (patch) | |
tree | a58efd28af971e327a159a9603009d9e2c97fff3 /Userland/Libraries/LibWeb/DOM/EventTarget.cpp | |
parent | 0e2cd5540a4be6367168fb8d7e0445153486b26c (diff) | |
download | serenity-e76e8e22b524da92b3404747b975f1c985ceff68.zip |
LibWeb: Separate "event listener" from "EventListener"
I can't imagine how this happened, but it seems we've managed to
conflate the "event listener" and "EventListener" concepts from the DOM
specification in some parts of the code.
We previously had two things:
- DOM::EventListener
- DOM::EventTarget::EventListenerRegistration
DOM::EventListener was roughly the "EventListener" IDL type,
and DOM::EventTarget::EventListenerRegistration was roughly the "event
listener" concept. However, they were used interchangeably (and
incorrectly!) in many places.
After this patch, we now have:
- DOM::IDLEventListener
- DOM::DOMEventListener
DOM::IDLEventListener is the "EventListener" IDL type,
and DOM::DOMEventListener is the "event listener" concept.
This patch also updates the addEventListener() and removeEventListener()
functions to follow the spec more closely, along with the "inner invoke"
function in our EventDispatcher.
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/EventTarget.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/EventTarget.cpp | 104 |
1 files changed, 77 insertions, 27 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/EventTarget.cpp b/Userland/Libraries/LibWeb/DOM/EventTarget.cpp index ec32a62227..2c14ab95a0 100644 --- a/Userland/Libraries/LibWeb/DOM/EventTarget.cpp +++ b/Userland/Libraries/LibWeb/DOM/EventTarget.cpp @@ -19,11 +19,12 @@ #include <LibWeb/Bindings/EventWrapperFactory.h> #include <LibWeb/Bindings/IDLAbstractOperations.h> #include <LibWeb/Bindings/MainThreadVM.h> +#include <LibWeb/DOM/AbortSignal.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/DOM/Event.h> #include <LibWeb/DOM/EventDispatcher.h> -#include <LibWeb/DOM/EventListener.h> #include <LibWeb/DOM/EventTarget.h> +#include <LibWeb/DOM/IDLEventListener.h> #include <LibWeb/DOM/Window.h> #include <LibWeb/HTML/ErrorEvent.h> #include <LibWeb/HTML/EventHandler.h> @@ -44,38 +45,87 @@ EventTarget::~EventTarget() { } +// https://dom.spec.whatwg.org/#dom-eventtarget-addeventlistener +void EventTarget::add_event_listener(FlyString const& type, RefPtr<IDLEventListener> callback) +{ + // FIXME: 1. Let capture, passive, once, and signal be the result of flattening more options. + bool capture = false; + bool passive = false; + bool once = false; + RefPtr<AbortSignal> signal = nullptr; + + // 2. Add an event listener with this and an event listener whose type is type, callback is callback, capture is capture, passive is passive, + // once is once, and signal is signal. + auto event_listener = adopt_ref(*new DOMEventListener); + event_listener->type = type; + event_listener->callback = move(callback); + event_listener->signal = move(signal); + event_listener->capture = capture; + event_listener->passive = passive; + event_listener->once = once; + add_an_event_listener(move(event_listener)); +} + // https://dom.spec.whatwg.org/#add-an-event-listener -void EventTarget::add_event_listener(const FlyString& event_name, RefPtr<EventListener> listener) +void EventTarget::add_an_event_listener(NonnullRefPtr<DOMEventListener> listener) { - if (listener.is_null()) + // FIXME: 1. If eventTarget is a ServiceWorkerGlobalScope object, its service workerās script resourceās has ever been evaluated flag is set, + // and listenerās type matches the type attribute value of any of the service worker events, then report a warning to the console + // that this might not give the expected results. [SERVICE-WORKERS] + + // 2. If listenerās signal is not null and is aborted, then return. + if (listener->signal && listener->signal->aborted()) return; - auto existing_listener = m_listeners.first_matching([&](auto& entry) { - return entry.listener->type() == event_name && entry.listener->callback().callback.cell() == listener->callback().callback.cell() && entry.listener->capture() == listener->capture(); - }); - if (existing_listener.has_value()) + + // 3. If listenerās callback is null, then return. + if (listener->callback.is_null()) return; - listener->set_type(event_name); - m_listeners.append({ event_name, listener.release_nonnull() }); + + // 4. If eventTargetās event listener list does not contain an event listener whose type is listenerās type, callback is listenerās callback, + // and capture is listenerās capture, then append listener to eventTargetās event listener list. + auto it = m_event_listener_list.find_if([&](auto& entry) { + return entry->type == listener->type + && entry->callback->callback().callback.cell() == listener->callback->callback().callback.cell() + && entry->capture == listener->capture; + }); + if (it == m_event_listener_list.end()) + m_event_listener_list.append(listener); + + // FIXME: 5. If listenerās signal is not null, then add the following abort steps to it: + // FIXME: 1. Remove an event listener with eventTarget and listener. } -// https://dom.spec.whatwg.org/#remove-an-event-listener -void EventTarget::remove_event_listener(const FlyString& event_name, RefPtr<EventListener> listener) +// https://dom.spec.whatwg.org/#dom-eventtarget-removeeventlistener +void EventTarget::remove_event_listener(FlyString const& type, RefPtr<IDLEventListener> callback) { - if (listener.is_null()) - return; - m_listeners.remove_first_matching([&](auto& entry) { - auto matches = entry.event_name == event_name && entry.listener->callback().callback.cell() == listener->callback().callback.cell() && entry.listener->capture() == listener->capture(); - if (matches) - entry.listener->set_removed(true); - return matches; + // FIXME: 1. Let capture be the result of flattening options. + bool capture = false; + + // 2. If thisās event listener list contains an event listener whose type is type, callback is callback, and capture is capture, + // then remove an event listener with this and that event listener. + auto it = m_event_listener_list.find_if([&](auto& entry) { + return entry->type == type + && entry->callback->callback().callback.cell() == callback->callback().callback.cell() + && entry->capture == capture; }); + if (it != m_event_listener_list.end()) + remove_an_event_listener(*it); } -void EventTarget::remove_from_event_listener_list(NonnullRefPtr<EventListener> listener) +// https://dom.spec.whatwg.org/#remove-an-event-listener +void EventTarget::remove_an_event_listener(DOMEventListener& listener) { - m_listeners.remove_first_matching([&](auto& entry) { - return entry.listener->type() == listener->type() && &entry.listener->callback() == &listener->callback() && entry.listener->capture() == listener->capture(); - }); + // FIXME: 1. If eventTarget is a ServiceWorkerGlobalScope object and its service workerās set of event types to handle contains type, + // then report a warning to the console that this might not give the expected results. [SERVICE-WORKERS] + + // 2. Set listenerās removed to true and remove listener from eventTargetās event listener list. + listener.removed = true; + m_event_listener_list.remove_first_matching([&](auto& entry) { return entry.ptr() == &listener; }); +} + +void EventTarget::remove_from_event_listener_list(DOMEventListener& listener) +{ + m_event_listener_list.remove_first_matching([&](auto& entry) { return entry.ptr() == &listener; }); } // https://dom.spec.whatwg.org/#dom-eventtarget-dispatchevent @@ -433,11 +483,12 @@ void EventTarget::activate_event_handler(FlyString const& name, HTML::EventHandl Bindings::CallbackType callback { JS::make_handle(static_cast<JS::Object*>(callback_function)), verify_cast<HTML::EnvironmentSettingsObject>(*global_object->associated_realm()->host_defined()) }; // 5. Let listener be a new event listener whose type is the event handler event type corresponding to eventHandler and callback is callback. - auto listener = adopt_ref(*new EventListener(move(callback))); + auto listener = adopt_ref(*new DOMEventListener); + listener->type = name; + listener->callback = adopt_ref(*new IDLEventListener(move(callback))); // 6. Add an event listener with eventTarget and listener. - // FIXME: Make add_event_listener follow the spec more tightly. (Namely, don't allow taking a name and having a separate bindings version) - add_event_listener(name, listener); + add_an_event_listener(listener); // 7. Set eventHandler's listener to listener. event_handler.listener = listener; @@ -460,8 +511,7 @@ void EventTarget::deactivate_event_handler(FlyString const& name) // 5. If listener is not null, then remove an event listener with eventTarget and listener. if (event_handler.listener) { - // FIXME: Make remove_event_listener follow the spec more tightly. (Namely, don't allow taking a name and having a separate bindings version) - remove_event_listener(name, event_handler.listener); + remove_an_event_listener(*event_handler.listener); } // 6. Set eventHandler's listener to null. |