2021-03-09 17:36:21 +01:00
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
2021-09-03 11:14:37 +01:00
|
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
2021-03-09 17:36:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-03-09 17:36:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/CSS/Parser/DeclarationOrAtRule.h>
|
|
|
|
#include <LibWeb/CSS/Parser/StyleBlockRule.h>
|
|
|
|
#include <LibWeb/CSS/Parser/StyleComponentValueRule.h>
|
|
|
|
#include <LibWeb/CSS/Parser/StyleDeclarationRule.h>
|
|
|
|
#include <LibWeb/CSS/Parser/StyleFunctionRule.h>
|
2021-07-03 13:36:33 +01:00
|
|
|
#include <LibWeb/CSS/Parser/StyleRule.h>
|
2021-11-24 13:00:46 +00:00
|
|
|
#include <LibWeb/CSS/Serialize.h>
|
2021-03-09 17:36:21 +01:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2021-07-03 13:36:33 +01:00
|
|
|
DeclarationOrAtRule::DeclarationOrAtRule(RefPtr<StyleRule> at)
|
2021-03-09 17:36:21 +01:00
|
|
|
: m_type(DeclarationType::At)
|
|
|
|
, m_at(move(at))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
DeclarationOrAtRule::DeclarationOrAtRule(StyleDeclarationRule declaration)
|
|
|
|
: m_type(DeclarationType::Declaration)
|
|
|
|
, m_declaration(move(declaration))
|
|
|
|
{
|
|
|
|
}
|
2022-03-14 13:21:51 -06:00
|
|
|
DeclarationOrAtRule::~DeclarationOrAtRule() = default;
|
2021-03-09 17:36:21 +01:00
|
|
|
|
2021-07-03 13:36:33 +01:00
|
|
|
StyleRule::StyleRule(StyleRule::Type type)
|
|
|
|
: m_type(type)
|
|
|
|
{
|
|
|
|
}
|
2022-03-14 13:21:51 -06:00
|
|
|
StyleRule::~StyleRule() = default;
|
2021-03-09 17:36:21 +01:00
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
StyleBlockRule::StyleBlockRule() = default;
|
|
|
|
StyleBlockRule::~StyleBlockRule() = default;
|
2021-03-09 17:36:21 +01:00
|
|
|
|
2021-07-03 14:54:19 +01:00
|
|
|
StyleComponentValueRule::StyleComponentValueRule(Token token)
|
2022-03-21 13:35:55 +00:00
|
|
|
: m_value(token)
|
2021-07-03 14:54:19 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
StyleComponentValueRule::StyleComponentValueRule(NonnullRefPtr<StyleFunctionRule> function)
|
2022-03-21 13:35:55 +00:00
|
|
|
: m_value(function)
|
2021-07-03 14:54:19 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
StyleComponentValueRule::StyleComponentValueRule(NonnullRefPtr<StyleBlockRule> block)
|
2022-03-21 13:35:55 +00:00
|
|
|
: m_value(block)
|
2021-03-09 17:36:21 +01:00
|
|
|
{
|
|
|
|
}
|
2022-03-14 13:21:51 -06:00
|
|
|
StyleComponentValueRule::~StyleComponentValueRule() = default;
|
2021-03-09 17:36:21 +01:00
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
StyleDeclarationRule::StyleDeclarationRule() = default;
|
|
|
|
StyleDeclarationRule::~StyleDeclarationRule() = default;
|
2021-03-09 17:36:21 +01:00
|
|
|
|
2021-07-01 14:13:48 +01:00
|
|
|
StyleFunctionRule::StyleFunctionRule(String name)
|
2021-12-03 12:32:12 +00:00
|
|
|
: m_name(move(name))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
StyleFunctionRule::StyleFunctionRule(String name, Vector<StyleComponentValueRule>&& values)
|
|
|
|
: m_name(move(name))
|
|
|
|
, m_values(move(values))
|
2021-07-01 14:13:48 +01:00
|
|
|
{
|
|
|
|
}
|
2022-03-14 13:21:51 -06:00
|
|
|
StyleFunctionRule::~StyleFunctionRule() = default;
|
2021-03-09 17:36:21 +01:00
|
|
|
|
|
|
|
template<class SeparatorType, class CollectionType>
|
|
|
|
void append_with_to_string(StringBuilder& builder, SeparatorType& separator, CollectionType& collection)
|
|
|
|
{
|
|
|
|
bool first = true;
|
|
|
|
for (auto& item : collection) {
|
|
|
|
if (first)
|
|
|
|
first = false;
|
|
|
|
else
|
|
|
|
builder.append(separator);
|
2021-11-24 13:00:46 +00:00
|
|
|
builder.append(item.to_string());
|
2021-03-09 17:36:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String DeclarationOrAtRule::to_string() const
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
switch (m_type) {
|
|
|
|
default:
|
|
|
|
case DeclarationType::At:
|
2021-07-01 16:49:33 +01:00
|
|
|
builder.append(m_at->to_string());
|
2021-03-09 17:36:21 +01:00
|
|
|
break;
|
|
|
|
case DeclarationType::Declaration:
|
|
|
|
builder.append(m_declaration.to_string());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
|
2021-07-03 13:36:33 +01:00
|
|
|
String StyleRule::to_string() const
|
2021-03-09 17:36:21 +01:00
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
|
2021-07-03 13:36:33 +01:00
|
|
|
if (m_type == Type::At) {
|
|
|
|
builder.append("@");
|
2021-11-24 13:00:46 +00:00
|
|
|
serialize_an_identifier(builder, m_name);
|
2021-07-03 13:36:33 +01:00
|
|
|
}
|
|
|
|
|
2021-06-29 17:03:25 +01:00
|
|
|
append_with_to_string(builder, " ", m_prelude);
|
2021-07-03 13:36:33 +01:00
|
|
|
|
|
|
|
if (m_block)
|
|
|
|
builder.append(m_block->to_string());
|
|
|
|
else
|
|
|
|
builder.append(';');
|
2021-03-09 17:36:21 +01:00
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
String StyleBlockRule::to_string() const
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
|
|
|
|
builder.append(m_token.bracket_string());
|
2021-11-24 13:00:46 +00:00
|
|
|
append_with_to_string(builder, " ", m_values);
|
2021-03-09 17:36:21 +01:00
|
|
|
builder.append(m_token.bracket_mirror_string());
|
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
|
2021-11-24 13:00:25 +00:00
|
|
|
String StyleComponentValueRule::to_string() const
|
|
|
|
{
|
2022-03-21 13:35:55 +00:00
|
|
|
return m_value.visit(
|
|
|
|
[](Token const& token) { return token.to_string(); },
|
|
|
|
[](NonnullRefPtr<StyleBlockRule> const& block) { return block->to_string(); },
|
|
|
|
[](NonnullRefPtr<StyleFunctionRule> const& function) { return function->to_string(); });
|
2021-11-24 13:00:25 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 21:29:24 +01:00
|
|
|
String StyleComponentValueRule::to_debug_string() const
|
2021-03-09 17:36:21 +01:00
|
|
|
{
|
2022-03-21 13:35:55 +00:00
|
|
|
return m_value.visit(
|
|
|
|
[](Token const& token) {
|
|
|
|
return String::formatted("Token: {}", token.to_debug_string());
|
|
|
|
},
|
|
|
|
[](NonnullRefPtr<StyleBlockRule> const& block) {
|
|
|
|
return String::formatted("Function: {}", block->to_string());
|
|
|
|
},
|
|
|
|
[](NonnullRefPtr<StyleFunctionRule> const& function) {
|
|
|
|
return String::formatted("Block: {}", function->to_string());
|
|
|
|
});
|
2021-03-09 17:36:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String StyleDeclarationRule::to_string() const
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
|
2021-11-24 13:00:46 +00:00
|
|
|
serialize_an_identifier(builder, m_name);
|
2021-03-09 17:36:21 +01:00
|
|
|
builder.append(": ");
|
|
|
|
append_with_to_string(builder, " ", m_values);
|
|
|
|
|
2022-02-12 14:53:59 +00:00
|
|
|
if (m_important == Important::Yes)
|
2021-03-09 17:36:21 +01:00
|
|
|
builder.append(" !important");
|
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
String StyleFunctionRule::to_string() const
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
|
2021-11-24 13:00:46 +00:00
|
|
|
serialize_an_identifier(builder, m_name);
|
2021-03-09 17:36:21 +01:00
|
|
|
builder.append("(");
|
2021-11-24 13:00:46 +00:00
|
|
|
append_with_to_string(builder, " ", m_values);
|
2021-04-29 21:16:28 +02:00
|
|
|
builder.append(")");
|
2021-03-09 17:36:21 +01:00
|
|
|
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
|
|
|
}
|