LibWeb: Implement DataTransferItem.prototype.getAsString()

This commit is contained in:
Timothy Flynn 2024-08-22 15:01:23 -04:00 committed by Tim Ledbetter
parent 8865d18a67
commit 181ece4d9c
Notes: github-actions[bot] 2024-08-23 09:11:32 +00:00
5 changed files with 46 additions and 2 deletions

View file

@ -3,6 +3,7 @@ effectAllowed: none
length=0, types= length=0, types=
stringItem: kind=string, type=custom-type stringItem: kind=string, type=custom-type
length=1, types=custom-type length=1, types=custom-type
stringItemAsString: data=well hello friends
fileItem: kind=file, type=text/plain fileItem: kind=file, type=text/plain
length=2, types=custom-type,Files length=2, types=custom-type,Files
fileItemAsFile: name=file.txt, type=text/plain fileItemAsFile: name=file.txt, type=text/plain

View file

@ -1,6 +1,6 @@
<script src="../include.js"></script> <script src="../include.js"></script>
<script> <script>
test(() => { test(async () => {
let dataTransfer = new DataTransfer(); let dataTransfer = new DataTransfer();
println(`dropEffect: ${dataTransfer.dropEffect}`); println(`dropEffect: ${dataTransfer.dropEffect}`);
println(`effectAllowed: ${dataTransfer.effectAllowed}`); println(`effectAllowed: ${dataTransfer.effectAllowed}`);
@ -16,6 +16,14 @@
println("FAILED"); println("FAILED");
} }
let promise = new Promise((resolve, reject) => {
stringItem.getAsString(data => {
println(`stringItemAsString: data=${data}`);
resolve();
});
});
await promise;
try { try {
dataTransferItemList.add("well hello friends", "custom-type"); dataTransferItemList.add("well hello friends", "custom-type");
println("FAILED"); println("FAILED");

View file

@ -4,12 +4,15 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <LibJS/Heap/HeapFunction.h>
#include <LibJS/Runtime/Realm.h> #include <LibJS/Runtime/Realm.h>
#include <LibWeb/Bindings/DataTransferItemPrototype.h> #include <LibWeb/Bindings/DataTransferItemPrototype.h>
#include <LibWeb/Bindings/Intrinsics.h> #include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/FileAPI/File.h> #include <LibWeb/FileAPI/File.h>
#include <LibWeb/HTML/DataTransfer.h> #include <LibWeb/HTML/DataTransfer.h>
#include <LibWeb/HTML/DataTransferItem.h> #include <LibWeb/HTML/DataTransferItem.h>
#include <LibWeb/WebIDL/AbstractOperations.h>
#include <LibWeb/WebIDL/CallbackType.h>
namespace Web::HTML { namespace Web::HTML {
@ -86,6 +89,37 @@ Optional<DragDataStore::Mode> DataTransferItem::mode() const
return m_data_transfer->mode(); return m_data_transfer->mode();
} }
// https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitem-getasstring
void DataTransferItem::get_as_string(JS::GCPtr<WebIDL::CallbackType> callback) const
{
auto& realm = this->realm();
auto& vm = realm.vm();
// 1. If the callback is null, return.
if (!callback)
return;
// 2. If the DataTransferItem object is not in the read/write mode or the read-only mode, return. The callback is
// never invoked.
if (mode() != DragDataStore::Mode::ReadWrite && mode() != DragDataStore::Mode::ReadOnly)
return;
auto const& item = m_data_transfer->drag_data(*m_item_index);
// 3. If the drag data item kind is not text, then return. The callback is never invoked.
if (item.kind != DragDataStoreItem::Kind::Text)
return;
// 4. Otherwise, queue a task to invoke callback, passing the actual data of the item represented by the
// DataTransferItem object as the argument.
auto data = JS::PrimitiveString::create(vm, MUST(String::from_utf8({ item.data })));
HTML::queue_a_task(HTML::Task::Source::Unspecified, nullptr, nullptr,
JS::HeapFunction<void()>::create(realm.heap(), [callback, data]() {
(void)WebIDL::invoke_callback(*callback, {}, data);
}));
}
// https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitem-getasfile // https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitem-getasfile
JS::GCPtr<FileAPI::File> DataTransferItem::get_as_file() const JS::GCPtr<FileAPI::File> DataTransferItem::get_as_file() const
{ {

View file

@ -25,6 +25,7 @@ public:
String kind() const; String kind() const;
String type() const; String type() const;
void get_as_string(JS::GCPtr<WebIDL::CallbackType>) const;
JS::GCPtr<FileAPI::File> get_as_file() const; JS::GCPtr<FileAPI::File> get_as_file() const;
private: private:

View file

@ -7,6 +7,6 @@ callback FunctionStringCallback = undefined (DOMString data);
interface DataTransferItem { interface DataTransferItem {
readonly attribute DOMString kind; readonly attribute DOMString kind;
readonly attribute DOMString type; readonly attribute DOMString type;
[FIXME] undefined getAsString(FunctionStringCallback? _callback); undefined getAsString(FunctionStringCallback? _callback);
File? getAsFile(); File? getAsFile();
}; };