2021-10-18 11:53:40 -04:00
|
|
|
/*
|
2022-01-31 13:07:22 -05:00
|
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2023-02-28 00:05:39 +00:00
|
|
|
* Copyright (c) 2023, Luke Wilde <lukew@serenityos.org>
|
2021-10-18 11:53:40 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-08-12 21:30:21 +12:00
|
|
|
#include <AK/FlyString.h>
|
2021-10-18 11:53:40 -04:00
|
|
|
#include <AK/Optional.h>
|
2023-08-12 21:30:21 +12:00
|
|
|
#include <AK/String.h>
|
2021-10-18 11:53:40 -04:00
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <AK/Vector.h>
|
2024-01-09 16:05:03 -07:00
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
2021-10-18 11:53:40 -04:00
|
|
|
#include <LibWeb/Forward.h>
|
2022-09-25 17:03:42 +01:00
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
2021-10-18 11:53:40 -04:00
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
|
|
|
// https://dom.spec.whatwg.org/#domtokenlist
|
2024-01-09 16:05:03 -07:00
|
|
|
class DOMTokenList final : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(DOMTokenList, Bindings::PlatformObject);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(DOMTokenList);
|
2021-10-18 11:53:40 -04:00
|
|
|
|
|
|
|
public:
|
2024-11-15 04:01:23 +13:00
|
|
|
[[nodiscard]] static GC::Ref<DOMTokenList> create(Element& associated_element, FlyString associated_attribute);
|
2021-10-18 11:53:40 -04:00
|
|
|
~DOMTokenList() = default;
|
|
|
|
|
|
|
|
void associated_attribute_changed(StringView value);
|
2022-08-08 15:19:46 +02:00
|
|
|
|
2024-07-25 18:15:51 +12:00
|
|
|
virtual Optional<JS::Value> item_value(size_t index) const override;
|
2021-10-18 11:53:40 -04:00
|
|
|
|
|
|
|
size_t length() const { return m_token_set.size(); }
|
2023-08-12 21:30:21 +12:00
|
|
|
Optional<String> item(size_t index) const;
|
|
|
|
bool contains(String const& token);
|
|
|
|
WebIDL::ExceptionOr<void> add(Vector<String> const& tokens);
|
|
|
|
WebIDL::ExceptionOr<void> remove(Vector<String> const& tokens);
|
|
|
|
WebIDL::ExceptionOr<bool> toggle(String const& token, Optional<bool> force);
|
|
|
|
WebIDL::ExceptionOr<bool> replace(String const& token, String const& new_token);
|
2022-09-25 17:03:42 +01:00
|
|
|
WebIDL::ExceptionOr<bool> supports(StringView token);
|
2023-08-12 21:30:21 +12:00
|
|
|
String value() const;
|
|
|
|
void set_value(String const& value);
|
2021-10-18 11:53:40 -04:00
|
|
|
|
|
|
|
private:
|
2023-08-12 21:30:21 +12:00
|
|
|
DOMTokenList(Element& associated_element, FlyString associated_attribute);
|
2022-08-28 13:42:07 +02:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-01 15:32:48 +01:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2022-09-25 17:03:42 +01:00
|
|
|
WebIDL::ExceptionOr<void> validate_token(StringView token) const;
|
2024-07-23 13:10:50 +01:00
|
|
|
WebIDL::ExceptionOr<void> validate_token_not_empty(StringView token) const;
|
|
|
|
WebIDL::ExceptionOr<void> validate_token_not_whitespace(StringView token) const;
|
2021-10-18 11:53:40 -04:00
|
|
|
void run_update_steps();
|
|
|
|
|
2024-07-23 13:09:11 +01:00
|
|
|
String serialize_ordered_set() const;
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<Element> m_associated_element;
|
2023-08-12 21:30:21 +12:00
|
|
|
FlyString m_associated_attribute;
|
|
|
|
Vector<String> m_token_set;
|
2021-10-18 11:53:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2024-12-06 08:57:33 +00:00
|
|
|
|
|
|
|
struct SupportedTokenKey {
|
|
|
|
FlyString element_name;
|
|
|
|
FlyString attribute_name;
|
|
|
|
|
|
|
|
constexpr bool operator==(SupportedTokenKey const& other) const = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct Traits<SupportedTokenKey> : public DefaultTraits<SupportedTokenKey> {
|
|
|
|
static unsigned hash(SupportedTokenKey const& key)
|
|
|
|
{
|
|
|
|
return pair_int_hash(key.element_name.hash(), key.attribute_name.hash());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|