mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-18 00:09:44 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
220
Libraries/LibWeb/Animations/Animatable.cpp
Normal file
220
Libraries/LibWeb/Animations/Animatable.cpp
Normal file
|
@ -0,0 +1,220 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Matthew Olsson <mattco@serenityos.org>
|
||||
* Copyright (c) 2024, Sam Atkins <sam@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <AK/QuickSort.h>
|
||||
#include <LibWeb/Animations/Animatable.h>
|
||||
#include <LibWeb/Animations/Animation.h>
|
||||
#include <LibWeb/Animations/DocumentTimeline.h>
|
||||
#include <LibWeb/Animations/PseudoElementParsing.h>
|
||||
#include <LibWeb/CSS/CSSTransition.h>
|
||||
#include <LibWeb/CSS/StyleValues/EasingStyleValue.h>
|
||||
#include <LibWeb/CSS/StyleValues/TimeStyleValue.h>
|
||||
#include <LibWeb/DOM/Document.h>
|
||||
#include <LibWeb/DOM/Element.h>
|
||||
|
||||
namespace Web::Animations {
|
||||
|
||||
// https://www.w3.org/TR/web-animations-1/#dom-animatable-animate
|
||||
WebIDL::ExceptionOr<JS::NonnullGCPtr<Animation>> Animatable::animate(Optional<JS::Handle<JS::Object>> keyframes, Variant<Empty, double, KeyframeAnimationOptions> options)
|
||||
{
|
||||
// 1. Let target be the object on which this method was called.
|
||||
JS::NonnullGCPtr target { *static_cast<DOM::Element*>(this) };
|
||||
auto& realm = target->realm();
|
||||
|
||||
// 2. Construct a new KeyframeEffect object, effect, in the relevant Realm of target by using the same procedure as
|
||||
// the KeyframeEffect(target, keyframes, options) constructor, passing target as the target argument, and the
|
||||
// keyframes and options arguments as supplied.
|
||||
//
|
||||
// If the above procedure causes an exception to be thrown, propagate the exception and abort this procedure.
|
||||
auto effect = TRY(options.visit(
|
||||
[&](Empty) { return KeyframeEffect::construct_impl(realm, target, keyframes); },
|
||||
[&](auto const& value) { return KeyframeEffect::construct_impl(realm, target, keyframes, value); }));
|
||||
|
||||
// 3. If options is a KeyframeAnimationOptions object, let timeline be the timeline member of options or, if
|
||||
// timeline member of options is missing, be the default document timeline of the node document of the element
|
||||
// on which this method was called.
|
||||
Optional<JS::GCPtr<AnimationTimeline>> timeline;
|
||||
if (options.has<KeyframeAnimationOptions>())
|
||||
timeline = options.get<KeyframeAnimationOptions>().timeline;
|
||||
if (!timeline.has_value())
|
||||
timeline = target->document().timeline();
|
||||
|
||||
// 4. Construct a new Animation object, animation, in the relevant Realm of target by using the same procedure as
|
||||
// the Animation() constructor, passing effect and timeline as arguments of the same name.
|
||||
auto animation = TRY(Animation::construct_impl(realm, effect, move(timeline)));
|
||||
|
||||
// 5. If options is a KeyframeAnimationOptions object, assign the value of the id member of options to animation’s
|
||||
// id attribute.
|
||||
if (options.has<KeyframeAnimationOptions>())
|
||||
animation->set_id(options.get<KeyframeAnimationOptions>().id);
|
||||
|
||||
// 6. Run the procedure to play an animation for animation with the auto-rewind flag set to true.
|
||||
TRY(animation->play_an_animation(Animation::AutoRewind::Yes));
|
||||
|
||||
// 7. Return animation.
|
||||
return animation;
|
||||
}
|
||||
|
||||
// https://drafts.csswg.org/web-animations-1/#dom-animatable-getanimations
|
||||
WebIDL::ExceptionOr<Vector<JS::NonnullGCPtr<Animation>>> Animatable::get_animations(Optional<GetAnimationsOptions> options)
|
||||
{
|
||||
verify_cast<DOM::Element>(*this).document().update_style();
|
||||
return get_animations_internal(options);
|
||||
}
|
||||
|
||||
WebIDL::ExceptionOr<Vector<JS::NonnullGCPtr<Animation>>> Animatable::get_animations_internal(Optional<GetAnimationsOptions> options)
|
||||
{
|
||||
// 1. Let object be the object on which this method was called.
|
||||
|
||||
// 2. Let pseudoElement be the result of pseudo-element parsing applied to pseudoElement of options, or null if options is not passed.
|
||||
// FIXME: Currently only DOM::Element includes Animatable, but that might not always be true.
|
||||
Optional<CSS::Selector::PseudoElement> pseudo_element;
|
||||
if (options.has_value() && options->pseudo_element.has_value()) {
|
||||
auto& realm = static_cast<DOM::Element&>(*this).realm();
|
||||
pseudo_element = TRY(pseudo_element_parsing(realm, options->pseudo_element));
|
||||
}
|
||||
|
||||
// 3. If pseudoElement is not null, then let target be the pseudo-element identified by pseudoElement with object as the originating element.
|
||||
// Otherwise, let target be object.
|
||||
// FIXME: We can't refer to pseudo-elements directly, and they also can't be animated yet.
|
||||
(void)pseudo_element;
|
||||
JS::NonnullGCPtr target { *static_cast<DOM::Element*>(this) };
|
||||
|
||||
// 4. If options is passed with subtree set to true, then return the set of relevant animations for a subtree of target.
|
||||
// Otherwise, return the set of relevant animations for target.
|
||||
Vector<JS::NonnullGCPtr<Animation>> relevant_animations;
|
||||
for (auto const& animation : m_associated_animations) {
|
||||
if (animation->is_relevant())
|
||||
relevant_animations.append(*animation);
|
||||
}
|
||||
|
||||
if (options.has_value() && options->subtree) {
|
||||
Optional<WebIDL::Exception> exception;
|
||||
TRY(target->for_each_child_of_type_fallible<DOM::Element>([&](auto& child) -> WebIDL::ExceptionOr<IterationDecision> {
|
||||
relevant_animations.extend(TRY(child.get_animations(options)));
|
||||
return IterationDecision::Continue;
|
||||
}));
|
||||
}
|
||||
|
||||
// The returned list is sorted using the composite order described for the associated animations of effects in
|
||||
// §5.4.2 The effect stack.
|
||||
quick_sort(relevant_animations, [](JS::NonnullGCPtr<Animation>& a, JS::NonnullGCPtr<Animation>& b) {
|
||||
auto& a_effect = verify_cast<KeyframeEffect>(*a->effect());
|
||||
auto& b_effect = verify_cast<KeyframeEffect>(*b->effect());
|
||||
return KeyframeEffect::composite_order(a_effect, b_effect) < 0;
|
||||
});
|
||||
|
||||
return relevant_animations;
|
||||
}
|
||||
|
||||
void Animatable::associate_with_animation(JS::NonnullGCPtr<Animation> animation)
|
||||
{
|
||||
m_associated_animations.append(animation);
|
||||
m_is_sorted_by_composite_order = false;
|
||||
}
|
||||
|
||||
void Animatable::disassociate_with_animation(JS::NonnullGCPtr<Animation> animation)
|
||||
{
|
||||
m_associated_animations.remove_first_matching([&](auto element) { return animation == element; });
|
||||
}
|
||||
|
||||
void Animatable::add_transitioned_properties(Vector<Vector<CSS::PropertyID>> properties, CSS::StyleValueVector delays, CSS::StyleValueVector durations, CSS::StyleValueVector timing_functions)
|
||||
{
|
||||
VERIFY(properties.size() == delays.size());
|
||||
VERIFY(properties.size() == durations.size());
|
||||
VERIFY(properties.size() == timing_functions.size());
|
||||
|
||||
for (size_t i = 0; i < properties.size(); i++) {
|
||||
size_t index_of_this_transition = m_transition_attributes.size();
|
||||
auto delay = delays[i]->is_time() ? delays[i]->as_time().time().to_milliseconds() : 0;
|
||||
auto duration = durations[i]->is_time() ? durations[i]->as_time().time().to_milliseconds() : 0;
|
||||
auto timing_function = timing_functions[i]->is_easing() ? timing_functions[i]->as_easing().function() : CSS::EasingStyleValue::CubicBezier::ease();
|
||||
VERIFY(timing_functions[i]->is_easing());
|
||||
m_transition_attributes.empend(delay, duration, timing_function);
|
||||
|
||||
for (auto const& property : properties[i])
|
||||
m_transition_attribute_indices.set(property, index_of_this_transition);
|
||||
}
|
||||
}
|
||||
|
||||
Optional<Animatable::TransitionAttributes const&> Animatable::property_transition_attributes(CSS::PropertyID property) const
|
||||
{
|
||||
if (auto maybe_index = m_transition_attribute_indices.get(property); maybe_index.has_value())
|
||||
return m_transition_attributes[maybe_index.value()];
|
||||
return {};
|
||||
}
|
||||
|
||||
JS::GCPtr<CSS::CSSTransition> Animatable::property_transition(CSS::PropertyID property) const
|
||||
{
|
||||
if (auto maybe_animation = m_associated_transitions.get(property); maybe_animation.has_value())
|
||||
return maybe_animation.value();
|
||||
return {};
|
||||
}
|
||||
|
||||
void Animatable::set_transition(CSS::PropertyID property, JS::NonnullGCPtr<CSS::CSSTransition> animation)
|
||||
{
|
||||
VERIFY(!m_associated_transitions.contains(property));
|
||||
m_associated_transitions.set(property, animation);
|
||||
}
|
||||
|
||||
void Animatable::remove_transition(CSS::PropertyID property_id)
|
||||
{
|
||||
VERIFY(m_associated_transitions.contains(property_id));
|
||||
m_associated_transitions.remove(property_id);
|
||||
}
|
||||
|
||||
void Animatable::clear_transitions()
|
||||
{
|
||||
m_associated_transitions.clear();
|
||||
m_transition_attribute_indices.clear();
|
||||
m_transition_attributes.clear();
|
||||
}
|
||||
|
||||
void Animatable::visit_edges(JS::Cell::Visitor& visitor)
|
||||
{
|
||||
visitor.visit(m_associated_animations);
|
||||
for (auto const& cached_animation_source : m_cached_animation_name_source)
|
||||
visitor.visit(cached_animation_source);
|
||||
for (auto const& cached_animation_name : m_cached_animation_name_animation)
|
||||
visitor.visit(cached_animation_name);
|
||||
visitor.visit(m_cached_transition_property_source);
|
||||
visitor.visit(m_associated_transitions);
|
||||
}
|
||||
|
||||
JS::GCPtr<CSS::CSSStyleDeclaration const> Animatable::cached_animation_name_source(Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
|
||||
{
|
||||
if (pseudo_element.has_value())
|
||||
return m_cached_animation_name_source[to_underlying(pseudo_element.value()) + 1];
|
||||
return m_cached_animation_name_source[0];
|
||||
}
|
||||
|
||||
void Animatable::set_cached_animation_name_source(JS::GCPtr<CSS::CSSStyleDeclaration const> value, Optional<CSS::Selector::PseudoElement::Type> pseudo_element)
|
||||
{
|
||||
if (pseudo_element.has_value()) {
|
||||
m_cached_animation_name_source[to_underlying(pseudo_element.value()) + 1] = value;
|
||||
} else {
|
||||
m_cached_animation_name_source[0] = value;
|
||||
}
|
||||
}
|
||||
|
||||
JS::GCPtr<Animations::Animation> Animatable::cached_animation_name_animation(Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
|
||||
{
|
||||
if (pseudo_element.has_value())
|
||||
return m_cached_animation_name_animation[to_underlying(pseudo_element.value()) + 1];
|
||||
return m_cached_animation_name_animation[0];
|
||||
}
|
||||
|
||||
void Animatable::set_cached_animation_name_animation(JS::GCPtr<Animations::Animation> value, Optional<CSS::Selector::PseudoElement::Type> pseudo_element)
|
||||
{
|
||||
if (pseudo_element.has_value()) {
|
||||
m_cached_animation_name_animation[to_underlying(pseudo_element.value()) + 1] = value;
|
||||
} else {
|
||||
m_cached_animation_name_animation[0] = value;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue