mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
		
			
				
	
	
		
			106 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
 | 
						|
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibWeb/Bindings/Intrinsics.h>
 | 
						|
#include <LibWeb/Bindings/MediaListPrototype.h>
 | 
						|
#include <LibWeb/CSS/MediaList.h>
 | 
						|
#include <LibWeb/CSS/Parser/Parser.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
MediaList* MediaList::create(JS::Realm& realm, NonnullRefPtrVector<MediaQuery>&& media)
 | 
						|
{
 | 
						|
    return realm.heap().allocate<MediaList>(realm, realm, move(media));
 | 
						|
}
 | 
						|
 | 
						|
MediaList::MediaList(JS::Realm& realm, NonnullRefPtrVector<MediaQuery>&& media)
 | 
						|
    : Bindings::LegacyPlatformObject(Bindings::ensure_web_prototype<Bindings::MediaListPrototype>(realm, "MediaList"))
 | 
						|
    , m_media(move(media))
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
// https://www.w3.org/TR/cssom-1/#dom-medialist-mediatext
 | 
						|
DeprecatedString MediaList::media_text() const
 | 
						|
{
 | 
						|
    return serialize_a_media_query_list(m_media);
 | 
						|
}
 | 
						|
 | 
						|
// https://www.w3.org/TR/cssom-1/#dom-medialist-mediatext
 | 
						|
void MediaList::set_media_text(DeprecatedString const& text)
 | 
						|
{
 | 
						|
    m_media.clear();
 | 
						|
    if (text.is_empty())
 | 
						|
        return;
 | 
						|
    m_media = parse_media_query_list({}, text);
 | 
						|
}
 | 
						|
 | 
						|
bool MediaList::is_supported_property_index(u32 index) const
 | 
						|
{
 | 
						|
    return index < length();
 | 
						|
}
 | 
						|
 | 
						|
// https://www.w3.org/TR/cssom-1/#dom-medialist-item
 | 
						|
DeprecatedString MediaList::item(u32 index) const
 | 
						|
{
 | 
						|
    if (!is_supported_property_index(index))
 | 
						|
        return {};
 | 
						|
 | 
						|
    return m_media[index].to_deprecated_string();
 | 
						|
}
 | 
						|
 | 
						|
// https://www.w3.org/TR/cssom-1/#dom-medialist-appendmedium
 | 
						|
void MediaList::append_medium(DeprecatedString medium)
 | 
						|
{
 | 
						|
    auto m = parse_media_query({}, medium);
 | 
						|
    if (!m)
 | 
						|
        return;
 | 
						|
    if (m_media.contains_slow(*m))
 | 
						|
        return;
 | 
						|
    m_media.append(m.release_nonnull());
 | 
						|
}
 | 
						|
 | 
						|
// https://www.w3.org/TR/cssom-1/#dom-medialist-deletemedium
 | 
						|
void MediaList::delete_medium(DeprecatedString medium)
 | 
						|
{
 | 
						|
    auto m = parse_media_query({}, medium);
 | 
						|
    if (!m)
 | 
						|
        return;
 | 
						|
    m_media.remove_all_matching([&](auto& existing) -> bool {
 | 
						|
        return m->to_deprecated_string() == existing->to_deprecated_string();
 | 
						|
    });
 | 
						|
    // FIXME: If nothing was removed, then throw a NotFoundError exception.
 | 
						|
}
 | 
						|
 | 
						|
bool MediaList::evaluate(HTML::Window const& window)
 | 
						|
{
 | 
						|
    for (auto& media : m_media)
 | 
						|
        media.evaluate(window);
 | 
						|
 | 
						|
    return matches();
 | 
						|
}
 | 
						|
 | 
						|
bool MediaList::matches() const
 | 
						|
{
 | 
						|
    if (m_media.is_empty()) {
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    for (auto& media : m_media) {
 | 
						|
        if (media.matches())
 | 
						|
            return true;
 | 
						|
    }
 | 
						|
    return false;
 | 
						|
}
 | 
						|
 | 
						|
JS::Value MediaList::item_value(size_t index) const
 | 
						|
{
 | 
						|
    if (index >= m_media.size())
 | 
						|
        return JS::js_undefined();
 | 
						|
    return JS::js_string(vm(), m_media[index].to_deprecated_string());
 | 
						|
}
 | 
						|
 | 
						|
}
 |