/* * Copyright (c) 2022, Luke Wilde * Copyright (c) 2023, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include namespace Web::DOM { // https://dom.spec.whatwg.org/#converting-nodes-into-a-node WebIDL::ExceptionOr> convert_nodes_to_single_node(Vector, String>> const& nodes, DOM::Document& document) { // 1. Let node be null. // 2. Replace each string in nodes with a new Text node whose data is the string and node document is document. // 3. If nodes contains one node, then set node to nodes[0]. // 4. Otherwise, set node to a new DocumentFragment node whose node document is document, and then append each node in nodes, if any, to it. // 5. Return node. auto potentially_convert_string_to_text_node = [&document](Variant, String> const& node) -> JS::NonnullGCPtr { if (node.has>()) return *node.get>(); return document.heap().allocate(document.realm(), document, node.get()); }; if (nodes.size() == 1) return potentially_convert_string_to_text_node(nodes.first()); auto document_fragment = document.heap().allocate(document.realm(), document); for (auto const& unconverted_node : nodes) { auto node = potentially_convert_string_to_text_node(unconverted_node); (void)TRY(document_fragment->append_child(node)); } return document_fragment; } Vector, String>> from_deprecated_nodes(Vector, DeprecatedString>> const& deprecated_nodes) { Vector, String>> nodes; nodes.ensure_capacity(deprecated_nodes.size()); for (auto const& deprecated_node : deprecated_nodes) { deprecated_node.visit( [&nodes](JS::Handle node) { nodes.unchecked_append(node); }, [&nodes](DeprecatedString const& deprecated_node) { nodes.unchecked_append(MUST(String::from_deprecated_string(deprecated_node))); }); } return nodes; } }