mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:47:34 +00:00
LibWeb: Move CSSRule iteration to CSSRuleList
CSSStyleSheet is no longer the only class that contains a list of rules, so this will save duplicating the logic in multiple places.
This commit is contained in:
parent
bc0ef5f69d
commit
df08b25b3f
4 changed files with 40 additions and 24 deletions
|
@ -4,6 +4,8 @@
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <AK/TypeCasts.h>
|
||||||
|
#include <LibWeb/CSS/CSSImportRule.h>
|
||||||
#include <LibWeb/CSS/CSSRuleList.h>
|
#include <LibWeb/CSS/CSSRuleList.h>
|
||||||
#include <LibWeb/DOM/ExceptionOr.h>
|
#include <LibWeb/DOM/ExceptionOr.h>
|
||||||
|
|
||||||
|
@ -74,4 +76,36 @@ DOM::ExceptionOr<void> CSSRuleList::remove_a_css_rule(u32 index)
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CSSRuleList::for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const
|
||||||
|
{
|
||||||
|
for (auto& rule : m_rules) {
|
||||||
|
if (rule.type() == CSSRule::Type::Style) {
|
||||||
|
callback(verify_cast<CSSStyleRule>(rule));
|
||||||
|
} else if (rule.type() == CSSRule::Type::Import) {
|
||||||
|
const auto& import_rule = verify_cast<CSSImportRule>(rule);
|
||||||
|
if (import_rule.has_import_result())
|
||||||
|
import_rule.loaded_style_sheet()->for_each_effective_style_rule(callback);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CSSRuleList::for_first_not_loaded_import_rule(Function<void(CSSImportRule&)> const& callback)
|
||||||
|
{
|
||||||
|
for (auto& rule : m_rules) {
|
||||||
|
if (rule.type() == CSSRule::Type::Import) {
|
||||||
|
auto& import_rule = verify_cast<CSSImportRule>(rule);
|
||||||
|
if (!import_rule.has_import_result()) {
|
||||||
|
callback(import_rule);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (import_rule.loaded_style_sheet()->for_first_not_loaded_import_rule(callback)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <AK/Function.h>
|
||||||
#include <AK/Iterator.h>
|
#include <AK/Iterator.h>
|
||||||
#include <AK/NonnullRefPtrVector.h>
|
#include <AK/NonnullRefPtrVector.h>
|
||||||
#include <AK/RefCounted.h>
|
#include <AK/RefCounted.h>
|
||||||
|
@ -50,6 +51,9 @@ public:
|
||||||
DOM::ExceptionOr<void> remove_a_css_rule(u32 index);
|
DOM::ExceptionOr<void> remove_a_css_rule(u32 index);
|
||||||
DOM::ExceptionOr<unsigned> insert_a_css_rule(NonnullRefPtr<CSSRule>, u32 index);
|
DOM::ExceptionOr<unsigned> insert_a_css_rule(NonnullRefPtr<CSSRule>, u32 index);
|
||||||
|
|
||||||
|
void for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const;
|
||||||
|
bool for_first_not_loaded_import_rule(Function<void(CSSImportRule&)> const& callback);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
explicit CSSRuleList(NonnullRefPtrVector<CSSRule>&&);
|
explicit CSSRuleList(NonnullRefPtrVector<CSSRule>&&);
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <LibWeb/CSS/CSSImportRule.h>
|
|
||||||
#include <LibWeb/CSS/CSSStyleSheet.h>
|
#include <LibWeb/CSS/CSSStyleSheet.h>
|
||||||
#include <LibWeb/CSS/Parser/Parser.h>
|
#include <LibWeb/CSS/Parser/Parser.h>
|
||||||
#include <LibWeb/DOM/ExceptionOr.h>
|
#include <LibWeb/DOM/ExceptionOr.h>
|
||||||
|
@ -60,32 +59,12 @@ DOM::ExceptionOr<void> CSSStyleSheet::remove_rule(unsigned index)
|
||||||
|
|
||||||
void CSSStyleSheet::for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const
|
void CSSStyleSheet::for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const
|
||||||
{
|
{
|
||||||
for (auto& rule : *m_rules)
|
m_rules->for_each_effective_style_rule(callback);
|
||||||
if (rule.type() == CSSRule::Type::Style) {
|
|
||||||
callback(verify_cast<CSSStyleRule>(rule));
|
|
||||||
} else if (rule.type() == CSSRule::Type::Import) {
|
|
||||||
const auto& import_rule = verify_cast<CSSImportRule>(rule);
|
|
||||||
if (import_rule.has_import_result())
|
|
||||||
import_rule.loaded_style_sheet()->for_each_effective_style_rule(callback);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CSSStyleSheet::for_first_not_loaded_import_rule(Function<void(CSSImportRule&)> const& callback)
|
bool CSSStyleSheet::for_first_not_loaded_import_rule(Function<void(CSSImportRule&)> const& callback)
|
||||||
{
|
{
|
||||||
for (auto& rule : *m_rules)
|
return m_rules->for_first_not_loaded_import_rule(callback);
|
||||||
if (rule.type() == CSSRule::Type::Import) {
|
|
||||||
auto& import_rule = verify_cast<CSSImportRule>(rule);
|
|
||||||
if (!import_rule.has_import_result()) {
|
|
||||||
callback(import_rule);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (import_rule.loaded_style_sheet()->for_first_not_loaded_import_rule(callback)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
|
|
||||||
#include <AK/Function.h>
|
#include <AK/Function.h>
|
||||||
#include <AK/NonnullRefPtrVector.h>
|
#include <AK/NonnullRefPtrVector.h>
|
||||||
#include <AK/TypeCasts.h>
|
|
||||||
#include <LibWeb/CSS/CSSRule.h>
|
#include <LibWeb/CSS/CSSRule.h>
|
||||||
#include <LibWeb/CSS/CSSRuleList.h>
|
#include <LibWeb/CSS/CSSRuleList.h>
|
||||||
#include <LibWeb/CSS/CSSStyleRule.h>
|
#include <LibWeb/CSS/CSSStyleRule.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue