use dom_struct::dom_struct;
use js::context::JSContext;
use js::rust::MutableHandleValue;
use script_bindings::reflector::reflect_dom_object_with_cx;
use storage_traits::indexeddb::IndexedDBKeyRange;
use crate::dom::bindings::codegen::Bindings::IDBCursorBinding::IDBCursorDirection;
use crate::dom::bindings::codegen::Bindings::IDBCursorWithValueBinding::IDBCursorWithValueMethods;
use crate::dom::bindings::root::DomRoot;
use crate::dom::globalscope::GlobalScope;
use crate::dom::indexeddb::idbcursor::{IDBCursor, ObjectStoreOrIndex};
use crate::dom::indexeddb::idbtransaction::IDBTransaction;
#[dom_struct]
pub(crate) struct IDBCursorWithValue {
cursor: IDBCursor,
}
impl IDBCursorWithValue {
#[cfg_attr(crown, expect(crown::unrooted_must_root))]
fn new_inherited(
transaction: &IDBTransaction,
direction: IDBCursorDirection,
got_value: bool,
source: ObjectStoreOrIndex,
range: IndexedDBKeyRange,
key_only: bool,
) -> IDBCursorWithValue {
IDBCursorWithValue {
cursor: IDBCursor::new_inherited(
transaction,
direction,
got_value,
source,
range,
key_only,
),
}
}
#[cfg_attr(crown, expect(crown::unrooted_must_root))]
#[expect(clippy::too_many_arguments)]
pub(crate) fn new(
cx: &mut JSContext,
global: &GlobalScope,
transaction: &IDBTransaction,
direction: IDBCursorDirection,
got_value: bool,
source: ObjectStoreOrIndex,
range: IndexedDBKeyRange,
key_only: bool,
) -> DomRoot<IDBCursorWithValue> {
reflect_dom_object_with_cx(
Box::new(IDBCursorWithValue::new_inherited(
transaction,
direction,
got_value,
source,
range,
key_only,
)),
global,
cx,
)
}
}
impl IDBCursorWithValueMethods<crate::DomTypeHolder> for IDBCursorWithValue {
fn Value(&self, _cx: &mut JSContext, value: MutableHandleValue) {
self.cursor.value(value);
}
}