| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org> | 
					
						
							| 
									
										
										
										
											2023-02-28 00:05:39 +00:00
										 |  |  |  * Copyright (c) 2023, Luke Wilde <lukew@serenityos.org> | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/Vector.h>
 | 
					
						
							|  |  |  | #include <LibJS/Heap/GCPtr.h>
 | 
					
						
							| 
									
										
										
										
											2024-01-09 16:05:03 -07:00
										 |  |  | #include <LibWeb/Bindings/PlatformObject.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  | #include <LibWeb/FileAPI/File.h>
 | 
					
						
							| 
									
										
										
										
											2024-02-26 18:54:36 +01:00
										 |  |  | #include <LibWeb/WebIDL/Types.h>
 | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::FileAPI { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-09 16:05:03 -07:00
										 |  |  | class FileList : public Bindings::PlatformObject { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(FileList, Bindings::PlatformObject); | 
					
						
							| 
									
										
										
										
											2023-11-19 19:47:52 +01:00
										 |  |  |     JS_DECLARE_ALLOCATOR(FileList); | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     [[nodiscard]] static JS::NonnullGCPtr<FileList> create(JS::Realm&, Vector<JS::NonnullGCPtr<File>>&&); | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  |     virtual ~FileList() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // https://w3c.github.io/FileAPI/#dfn-length
 | 
					
						
							| 
									
										
										
										
											2024-02-26 18:54:36 +01:00
										 |  |  |     WebIDL::UnsignedLong length() const { return m_files.size(); } | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-25 10:44:51 -07:00
										 |  |  |     // https://w3c.github.io/FileAPI/#dfn-item
 | 
					
						
							|  |  |  |     File* item(size_t index) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return index < m_files.size() ? m_files[index].ptr() : nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  |     // https://w3c.github.io/FileAPI/#dfn-item
 | 
					
						
							|  |  |  |     File const* item(size_t index) const | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return index < m_files.size() ? m_files[index].ptr() : nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual bool is_supported_property_index(u32 index) const override; | 
					
						
							| 
									
										
										
										
											2023-02-28 00:05:39 +00:00
										 |  |  |     virtual WebIDL::ExceptionOr<JS::Value> item_value(size_t index) const override; | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     FileList(JS::Realm&, Vector<JS::NonnullGCPtr<File>>&&); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							| 
									
										
										
										
											2022-10-03 21:10:39 -06:00
										 |  |  |     virtual void visit_edges(Cell::Visitor&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Vector<JS::NonnullGCPtr<File>> m_files; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |