2024-02-19 18:59:58 -07:00
|
|
|
|
/*
|
2024-09-19 14:13:20 +01:00
|
|
|
|
* Copyright (c) 2024, Matthew Olsson <mattco@serenityos.org>
|
|
|
|
|
* Copyright (c) 2024, Sam Atkins <sam@ladybird.org>
|
2024-02-19 18:59:58 -07:00
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2024-09-19 14:13:20 +01:00
|
|
|
|
#include <LibWeb/Animations/DocumentTimeline.h>
|
2024-04-27 12:09:58 +12:00
|
|
|
|
#include <LibWeb/Bindings/CSSTransitionPrototype.h>
|
2024-02-19 18:59:58 -07:00
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
|
|
|
#include <LibWeb/CSS/CSSStyleDeclaration.h>
|
|
|
|
|
#include <LibWeb/CSS/CSSTransition.h>
|
2024-09-19 14:13:20 +01:00
|
|
|
|
#include <LibWeb/CSS/Interpolation.h>
|
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
2024-02-19 18:59:58 -07:00
|
|
|
|
#include <LibWeb/DOM/Element.h>
|
2024-09-19 14:13:20 +01:00
|
|
|
|
#include <LibWeb/HTML/Scripting/TemporaryExecutionContext.h>
|
2024-02-19 18:59:58 -07:00
|
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
|
GC_DEFINE_ALLOCATOR(CSSTransition);
|
2024-04-06 10:16:04 -07:00
|
|
|
|
|
2025-09-09 15:08:29 +01:00
|
|
|
|
GC::Ref<CSSTransition> CSSTransition::start_a_transition(DOM::AbstractElement abstract_element, PropertyID property_id,
|
2025-08-13 23:42:27 +12:00
|
|
|
|
size_t transition_generation, double delay, double start_time, double end_time, NonnullRefPtr<StyleValue const> start_value,
|
2025-08-08 10:11:51 +01:00
|
|
|
|
NonnullRefPtr<StyleValue const> end_value, NonnullRefPtr<StyleValue const> reversing_adjusted_start_value, double reversing_shortening_factor)
|
2024-02-19 18:59:58 -07:00
|
|
|
|
{
|
2025-09-09 15:08:29 +01:00
|
|
|
|
auto& realm = abstract_element.element().realm();
|
|
|
|
|
return realm.create<CSSTransition>(realm, abstract_element, property_id, transition_generation, delay, start_time, end_time, start_value, end_value, reversing_adjusted_start_value, reversing_shortening_factor);
|
2024-02-19 18:59:58 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Animations::AnimationClass CSSTransition::animation_class() const
|
|
|
|
|
{
|
|
|
|
|
return Animations::AnimationClass::CSSTransition;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
|
Optional<int> CSSTransition::class_specific_composite_order(GC::Ref<Animations::Animation> other_animation) const
|
2024-02-19 18:59:58 -07:00
|
|
|
|
{
|
2025-01-21 09:12:05 -05:00
|
|
|
|
auto other = GC::Ref { as<CSSTransition>(*other_animation) };
|
2024-02-19 18:59:58 -07:00
|
|
|
|
|
|
|
|
|
// Within the set of CSS Transitions, two animations A and B are sorted in composite order (first to last) as
|
|
|
|
|
// follows:
|
|
|
|
|
|
|
|
|
|
// 1. If neither A nor B has an owning element, sort based on their relative position in the global animation list.
|
2024-09-12 16:53:14 +01:00
|
|
|
|
if (!owning_element() && !other->owning_element())
|
2024-02-19 18:59:58 -07:00
|
|
|
|
return global_animation_list_order() - other->global_animation_list_order();
|
|
|
|
|
|
|
|
|
|
// 2. Otherwise, if only one of A or B has an owning element, let the animation with an owning element sort first.
|
2024-09-12 16:53:14 +01:00
|
|
|
|
if (owning_element() && !other->owning_element())
|
2024-02-19 18:59:58 -07:00
|
|
|
|
return -1;
|
2024-09-12 16:53:14 +01:00
|
|
|
|
if (!owning_element() && other->owning_element())
|
2024-02-19 18:59:58 -07:00
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
// 3. Otherwise, if the owning element of A and B differs, sort A and B by tree order of their corresponding owning
|
|
|
|
|
// elements. With regard to pseudo-elements, the sort order is as follows:
|
|
|
|
|
// - element
|
|
|
|
|
// - ::marker
|
|
|
|
|
// - ::before
|
|
|
|
|
// - any other pseudo-elements not mentioned specifically in this list, sorted in ascending order by the Unicode
|
|
|
|
|
// codepoints that make up each selector
|
|
|
|
|
// - ::after
|
|
|
|
|
// - element children
|
2024-09-12 16:53:14 +01:00
|
|
|
|
if (owning_element().ptr() != other->owning_element().ptr()) {
|
2024-02-19 18:59:58 -07:00
|
|
|
|
// FIXME: Actually sort by tree order
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 4. Otherwise, if A and B have different transition generation values, sort by their corresponding transition
|
|
|
|
|
// generation in ascending order.
|
|
|
|
|
if (m_transition_generation != other->m_transition_generation)
|
|
|
|
|
return m_transition_generation - other->m_transition_generation;
|
|
|
|
|
|
|
|
|
|
// FIXME:
|
|
|
|
|
// 5. Otherwise, sort A and B in ascending order by the Unicode codepoints that make up the expanded transition
|
|
|
|
|
// property name of each transition (i.e. without attempting case conversion and such that ‘-moz-column-width’
|
|
|
|
|
// sorts before ‘column-width’).
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-09 15:08:29 +01:00
|
|
|
|
CSSTransition::CSSTransition(JS::Realm& realm, DOM::AbstractElement abstract_element, PropertyID property_id, size_t transition_generation,
|
2025-08-13 23:42:27 +12:00
|
|
|
|
double delay, double start_time, double end_time, NonnullRefPtr<StyleValue const> start_value, NonnullRefPtr<StyleValue const> end_value,
|
2025-08-08 10:11:51 +01:00
|
|
|
|
NonnullRefPtr<StyleValue const> reversing_adjusted_start_value, double reversing_shortening_factor)
|
2024-02-19 18:59:58 -07:00
|
|
|
|
: Animations::Animation(realm)
|
|
|
|
|
, m_transition_property(property_id)
|
|
|
|
|
, m_transition_generation(transition_generation)
|
2025-08-13 23:42:27 +12:00
|
|
|
|
, m_start_time(start_time + delay)
|
|
|
|
|
, m_end_time(end_time + delay)
|
2024-09-19 14:13:20 +01:00
|
|
|
|
, m_start_value(move(start_value))
|
|
|
|
|
, m_end_value(move(end_value))
|
|
|
|
|
, m_reversing_adjusted_start_value(move(reversing_adjusted_start_value))
|
|
|
|
|
, m_reversing_shortening_factor(reversing_shortening_factor)
|
|
|
|
|
, m_keyframe_effect(Animations::KeyframeEffect::create(realm))
|
2024-02-19 18:59:58 -07:00
|
|
|
|
{
|
|
|
|
|
// FIXME:
|
|
|
|
|
// Transitions generated using the markup defined in this specification are not added to the global animation list
|
|
|
|
|
// when they are created. Instead, these animations are appended to the global animation list at the first moment
|
|
|
|
|
// when they transition out of the idle play state after being disassociated from their owning element. Transitions
|
|
|
|
|
// that have been disassociated from their owning element but are still idle do not have a defined composite order.
|
2024-09-19 14:13:20 +01:00
|
|
|
|
|
|
|
|
|
// Construct a KeyframesEffect for our animation
|
2025-09-09 15:08:29 +01:00
|
|
|
|
m_keyframe_effect->set_target(&abstract_element.element());
|
|
|
|
|
if (abstract_element.pseudo_element().has_value())
|
|
|
|
|
m_keyframe_effect->set_pseudo_element(Selector::PseudoElementSelector { abstract_element.pseudo_element().value() });
|
2025-08-13 23:42:27 +12:00
|
|
|
|
m_keyframe_effect->set_start_delay(delay);
|
|
|
|
|
m_keyframe_effect->set_iteration_duration(end_time - start_time);
|
2025-09-09 15:08:29 +01:00
|
|
|
|
m_keyframe_effect->set_timing_function(abstract_element.element().property_transition_attributes(abstract_element.pseudo_element(), property_id)->timing_function);
|
2024-09-19 14:13:20 +01:00
|
|
|
|
|
|
|
|
|
auto key_frame_set = adopt_ref(*new Animations::KeyframeEffect::KeyFrameSet);
|
|
|
|
|
Animations::KeyframeEffect::KeyFrameSet::ResolvedKeyFrame initial_keyframe;
|
|
|
|
|
initial_keyframe.properties.set(property_id, m_start_value);
|
|
|
|
|
|
|
|
|
|
Animations::KeyframeEffect::KeyFrameSet::ResolvedKeyFrame final_keyframe;
|
|
|
|
|
final_keyframe.properties.set(property_id, m_end_value);
|
|
|
|
|
|
|
|
|
|
key_frame_set->keyframes_by_key.insert(0, initial_keyframe);
|
|
|
|
|
key_frame_set->keyframes_by_key.insert(100 * Animations::KeyframeEffect::AnimationKeyFrameKeyScaleFactor, final_keyframe);
|
|
|
|
|
|
|
|
|
|
m_keyframe_effect->set_key_frame_set(key_frame_set);
|
2025-09-09 15:08:29 +01:00
|
|
|
|
set_timeline(abstract_element.document().timeline());
|
|
|
|
|
set_owning_element(abstract_element.element());
|
2024-09-19 14:13:20 +01:00
|
|
|
|
set_effect(m_keyframe_effect);
|
2025-09-09 15:08:29 +01:00
|
|
|
|
abstract_element.element().set_transition(abstract_element.pseudo_element(), m_transition_property, *this);
|
2024-09-19 14:13:20 +01:00
|
|
|
|
|
2024-10-24 20:39:18 +13:00
|
|
|
|
HTML::TemporaryExecutionContext context(realm);
|
2024-09-19 14:13:20 +01:00
|
|
|
|
play().release_value_but_fixme_should_propagate_errors();
|
2024-02-19 18:59:58 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CSSTransition::initialize(JS::Realm& realm)
|
|
|
|
|
{
|
|
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(CSSTransition);
|
2025-04-20 16:22:57 +02:00
|
|
|
|
Base::initialize(realm);
|
2024-02-19 18:59:58 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CSSTransition::visit_edges(Cell::Visitor& visitor)
|
|
|
|
|
{
|
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
|
visitor.visit(m_cached_declaration);
|
2024-09-19 14:13:20 +01:00
|
|
|
|
visitor.visit(m_keyframe_effect);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double CSSTransition::timing_function_output_at_time(double t) const
|
|
|
|
|
{
|
|
|
|
|
auto progress = (t - transition_start_time()) / (transition_end_time() - transition_start_time());
|
2025-01-08 14:37:03 +11:00
|
|
|
|
// AD-HOC: If the transition has an empty duration then we get NaN here,
|
|
|
|
|
// setting progress to 1 because an instant transition may be considered "finished".
|
|
|
|
|
if (transition_start_time() < transition_end_time())
|
|
|
|
|
progress = 1;
|
|
|
|
|
|
2024-09-19 14:13:20 +01:00
|
|
|
|
// FIXME: Is this before_flag value correct?
|
|
|
|
|
bool before_flag = t < transition_start_time();
|
|
|
|
|
return m_keyframe_effect->timing_function().evaluate_at(progress, before_flag);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-19 18:59:58 -07:00
|
|
|
|
}
|