diff --git a/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp b/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp index 93b2237114b9..393d72ea5b1f 100644 --- a/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp +++ b/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.cpp @@ -5,8 +5,10 @@ */ #include +#include #include #include +#include #include #include #include @@ -67,12 +69,9 @@ WebIDL::ExceptionOr> open_a_database_connection(JS // queue a task to fire a version change event named versionchange at entry with db’s version and version. for (auto& entry : open_connections) { if (!entry->close_pending()) { - // FIXME: - /* HTML::queue_a_task(HTML::Task::Source::DatabaseAccess, nullptr, nullptr, JS::create_heap_function(realm.vm().heap(), [&realm, entry, db, version]() { fire_a_version_change_event(realm, HTML::EventNames::versionchange, *entry, db->version(), version); })); - */ } } @@ -82,12 +81,9 @@ WebIDL::ExceptionOr> open_a_database_connection(JS // queue a task to fire a version change event named blocked at request with db’s version and version. for (auto& entry : open_connections) { if (entry->state() != IDBDatabase::ConnectionState::Closed) { - // FIXME: - /* HTML::queue_a_task(HTML::Task::Source::DatabaseAccess, nullptr, nullptr, JS::create_heap_function(realm.vm().heap(), [&realm, entry, db, version]() { fire_a_version_change_event(realm, HTML::EventNames::blocked, *entry, db->version(), version); })); - */ } } @@ -117,4 +113,30 @@ WebIDL::ExceptionOr> open_a_database_connection(JS return connection; } +bool fire_a_version_change_event(JS::Realm& realm, FlyString const& event_name, JS::NonnullGCPtr target, u64 old_version, Optional new_version) +{ + IDBVersionChangeEventInit event_init = {}; + // 4. Set event’s oldVersion attribute to oldVersion. + event_init.old_version = old_version; + // 5. Set event’s newVersion attribute to newVersion. + event_init.new_version = new_version; + + // 1. Let event be the result of creating an event using IDBVersionChangeEvent. + // 2. Set event’s type attribute to e. + auto event = IDBVersionChangeEvent::create(realm, event_name, event_init); + + // 3. Set event’s bubbles and cancelable attributes to false. + event->set_bubbles(false); + event->set_cancelable(false); + + // 6. Let legacyOutputDidListenersThrowFlag be false. + auto legacy_output_did_listeners_throw_flag = false; + + // 7. Dispatch event at target with legacyOutputDidListenersThrowFlag. + DOM::EventDispatcher::dispatch(target, *event, legacy_output_did_listeners_throw_flag); + + // 8. Return legacyOutputDidListenersThrowFlag. + return legacy_output_did_listeners_throw_flag; +} + } diff --git a/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.h b/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.h index 721cd1a1f7a6..b56fb34a00d8 100644 --- a/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.h +++ b/Userland/Libraries/LibWeb/IndexedDB/Internal/Algorithms.h @@ -13,5 +13,6 @@ namespace Web::IndexedDB { WebIDL::ExceptionOr> open_a_database_connection(JS::Realm&, StorageAPI::StorageKey, String, Optional, JS::NonnullGCPtr); +bool fire_a_version_change_event(JS::Realm&, FlyString const&, JS::NonnullGCPtr, u64, Optional); }