ladybird/Libraries/LibWeb/CSS/PropertyNameAndID.h
Sam Atkins 3af8e705c1 LibWeb/CSS: Introduce a PropertyNameAndID type
We often want to call a function with either a built-in or custom
property, and that means either passing it as a string (and converting
back and forth between strings and PropertyIDs) or using the
PropertyIDOrCustomPropertyName variant, which complicates user code.
PropertyNameAndID is intended to make that easier: Create it with a
string or PropertyID, and it can tell you either one.
2025-10-02 13:46:04 +01:00

63 lines
1.6 KiB
C++

/*
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/FlyString.h>
#include <AK/GenericShorthands.h>
#include <AK/Optional.h>
#include <LibWeb/CSS/PropertyID.h>
#include <LibWeb/CSS/PropertyName.h>
#include <LibWeb/CSS/Serialize.h>
namespace Web::CSS {
class WEB_API PropertyNameAndID {
public:
static Optional<PropertyNameAndID> from_name(FlyString name)
{
if (is_a_custom_property_name_string(name))
return PropertyNameAndID(move(name), PropertyID::Custom);
if (auto property_id = property_id_from_string(name); property_id.has_value())
return PropertyNameAndID(string_from_property_id(property_id.value()), property_id.value());
return {};
}
static PropertyNameAndID from_id(PropertyID property_id)
{
VERIFY(!first_is_one_of(property_id, PropertyID::Invalid, PropertyID::Custom));
return PropertyNameAndID({}, property_id);
}
bool is_custom_property() const { return m_property_id == PropertyID::Custom; }
PropertyID id() const { return m_property_id; }
FlyString const& name() const
{
if (!m_name.has_value())
m_name = string_from_property_id(m_property_id);
return m_name.value();
}
String to_string() const
{
return serialize_an_identifier(name());
}
private:
PropertyNameAndID(Optional<FlyString> name, PropertyID id)
: m_name(move(name))
, m_property_id(id)
{
}
mutable Optional<FlyString> m_name;
PropertyID m_property_id;
};
}