blob: 988b1e030e6b473cd55dff0d106c1d631b962dec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Runtime/Realm.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Bindings/LegacyPlatformObject.h>
#include <LibWeb/FileAPI/FileList.h>
namespace Web::FileAPI {
JS::NonnullGCPtr<FileList> FileList::create(JS::Realm& realm, Vector<JS::NonnullGCPtr<File>>&& files)
{
return *realm.heap().allocate<FileList>(realm, realm, move(files));
}
FileList::FileList(JS::Realm& realm, Vector<JS::NonnullGCPtr<File>>&& files)
: Bindings::LegacyPlatformObject(Bindings::cached_web_prototype(realm, "FileList"))
, m_files(move(files))
{
}
FileList::~FileList() = default;
// https://w3c.github.io/FileAPI/#dfn-item
bool FileList::is_supported_property_index(u32 index) const
{
// Supported property indices are the numbers in the range zero to one less than the number of File objects represented by the FileList object.
// If there are no such File objects, then there are no supported property indices.
if (m_files.is_empty())
return false;
return m_files.size() < index;
}
JS::Value FileList::item_value(size_t index) const
{
if (index >= m_files.size())
return JS::js_undefined();
return m_files[index].ptr();
}
void FileList::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
for (auto file : m_files)
visitor.visit(file);
}
}
|