mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
/*
|
||
* Copyright (c) 2025, stelar7 <dudedbz@gmail.com>
|
||
*
|
||
* SPDX-License-Identifier: BSD-2-Clause
|
||
*/
|
||
|
||
#include <LibWeb/Bindings/IDBRecordPrototype.h>
|
||
#include <LibWeb/IndexedDB/IDBRecord.h>
|
||
#include <LibWeb/IndexedDB/Internal/Algorithms.h>
|
||
|
||
namespace Web::IndexedDB {
|
||
|
||
GC_DEFINE_ALLOCATOR(IDBRecord);
|
||
|
||
IDBRecord::~IDBRecord() = default;
|
||
|
||
GC::Ref<IDBRecord> IDBRecord::create(JS::Realm& realm, GC::Ref<Key> key, JS::Value value, GC::Ref<Key> primary_key)
|
||
{
|
||
return realm.create<IDBRecord>(realm, move(key), move(value), move(primary_key));
|
||
}
|
||
|
||
IDBRecord::IDBRecord(JS::Realm& realm, GC::Ref<Key> key, JS::Value value, GC::Ref<Key> primary_key)
|
||
: PlatformObject(realm)
|
||
, m_key(move(key))
|
||
, m_value(move(value))
|
||
, m_primary_key(move(primary_key))
|
||
{
|
||
}
|
||
|
||
void IDBRecord::initialize(JS::Realm& realm)
|
||
{
|
||
WEB_SET_PROTOTYPE_FOR_INTERFACE(IDBRecord);
|
||
Base::initialize(realm);
|
||
}
|
||
|
||
void IDBRecord::visit_edges(Visitor& visitor)
|
||
{
|
||
Base::visit_edges(visitor);
|
||
visitor.visit(m_key);
|
||
visitor.visit(m_value);
|
||
visitor.visit(m_primary_key);
|
||
}
|
||
|
||
// https://pr-preview.s3.amazonaws.com/w3c/IndexedDB/pull/461.html#dom-idbrecord-key
|
||
WebIDL::ExceptionOr<JS::Value> IDBRecord::key() const
|
||
{
|
||
// The key getter steps are to return the result of converting a key to a value with this’s key.
|
||
return convert_a_key_to_a_value(realm(), m_key);
|
||
}
|
||
|
||
// https://pr-preview.s3.amazonaws.com/w3c/IndexedDB/pull/461.html#dom-idbrecord-primarykey
|
||
WebIDL::ExceptionOr<JS::Value> IDBRecord::primary_key() const
|
||
{
|
||
// The primaryKey getter steps are to return the result of converting a key to a value with this’s primary key.
|
||
return convert_a_key_to_a_value(realm(), m_primary_key);
|
||
}
|
||
|
||
}
|