EventTarget.cpp 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  23. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  24. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #include <LibWeb/Bindings/ScriptExecutionContext.h>
  27. #include <LibWeb/DOM/EventListener.h>
  28. #include <LibWeb/DOM/EventTarget.h>
  29. namespace Web::DOM {
  30. EventTarget::EventTarget(Bindings::ScriptExecutionContext& script_execution_context)
  31. : m_script_execution_context(&script_execution_context)
  32. {
  33. }
  34. EventTarget::~EventTarget()
  35. {
  36. }
  37. // https://dom.spec.whatwg.org/#add-an-event-listener
  38. void EventTarget::add_event_listener(const FlyString& event_name, RefPtr<EventListener> listener)
  39. {
  40. if (listener.is_null())
  41. return;
  42. auto existing_listener = m_listeners.first_matching([&](auto& entry) {
  43. return entry.listener->type() == event_name && &entry.listener->function() == &listener->function() && entry.listener->capture() == listener->capture();
  44. });
  45. if (existing_listener.has_value())
  46. return;
  47. listener->set_type(event_name);
  48. m_listeners.append({ event_name, listener.release_nonnull() });
  49. }
  50. // https://dom.spec.whatwg.org/#remove-an-event-listener
  51. void EventTarget::remove_event_listener(const FlyString& event_name, RefPtr<EventListener> listener)
  52. {
  53. if (listener.is_null())
  54. return;
  55. m_listeners.remove_first_matching([&](auto& entry) {
  56. auto matches = entry.event_name == event_name && &entry.listener->function() == &listener->function() && entry.listener->capture() == listener->capture();
  57. if (matches)
  58. entry.listener->set_removed(true);
  59. return matches;
  60. });
  61. }
  62. void EventTarget::remove_from_event_listener_list(NonnullRefPtr<EventListener> listener)
  63. {
  64. m_listeners.remove_first_matching([&](auto& entry) {
  65. return entry.listener->type() == listener->type() && &entry.listener->function() == &listener->function() && entry.listener->capture() == listener->capture();
  66. });
  67. }
  68. }