123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- import {
- EVENT_MOUNTED,
- EVENT_MOVE,
- EVENT_MOVED,
- EVENT_REFRESH,
- EVENT_RESIZED,
- EVENT_SHIFTED,
- EVENT_UPDATED,
- } from '../../constants/events';
- import { IDLE, MOVING } from '../../constants/states';
- import { FADE, LOOP, SLIDE } from '../../constants/types';
- import { AnyFunction, BaseComponent, ComponentConstructor, TransitionComponent } from '../../types';
- import { abs, ceil, clamp, isUndefined, rect, style } from '@splidejs/utils';
- /**
- * The interface for the Move component.
- *
- * @since 3.0.0
- */
- export interface MoveComponent extends BaseComponent {
- move( dest: number, index: number, prev: number, forwards: boolean, callback?: AnyFunction ): void;
- jump( index: number ): void;
- translate( position: number, preventLoop?: boolean ): void;
- shift( position: number, backwards: boolean ): number;
- cancel(): void;
- toIndex( position: number ): number;
- toPosition( index: number ): number;
- getPosition(): number;
- getRate( index?: number ): number;
- getLimit( max: boolean ): number;
- exceededLimit( max?: boolean | undefined, position?: number ): boolean;
- /** @internal */
- reposition(): void;
- canShift( backwards: boolean ): boolean;
- }
- /**
- * The component for moving the slider.
- *
- * @since 3.0.0
- *
- * @param Splide - A Splide instance.
- * @param Components - A collection of components.
- * @param options - Options.
- * @param event - An EventInterface instance.
- *
- * @return A Move component object.
- */
- export const Move: ComponentConstructor<MoveComponent> = ( Splide, Components, options, event ) => {
- const { on, emit } = event;
- const { set, is } = Splide.state;
- const { Slides } = Components;
- const { slideSize, getPadding, listSize, sliderSize, totalSize, trackSize } = Components.Layout;
- const { resolve, orient } = Components.Direction;
- const { list, track } = Components.Elements;
- /**
- * Holds the Transition component.
- */
- let Transition: TransitionComponent;
- /**
- * Keeps the latest indices.
- */
- let indices: [ number, number, number ];
- let callback: AnyFunction;
- /**
- * Called when the component is mounted.
- */
- function mount(): void {
- Transition = Components.Transition;
- on( [ EVENT_MOUNTED, EVENT_RESIZED, EVENT_UPDATED, EVENT_REFRESH ], reposition );
- }
- /**
- * Repositions the slider.
- * - Do not call `cancel()` here because LazyLoad may emit resize while transitioning.
- * - iOS Safari emits window resize event while the user swipes the slider because of the bottom bar.
- */
- function reposition(): void {
- if ( ! Components.Controller.isBusy() ) {
- Components.Scroll.cancel();
- jump( Splide.index );
- Slides.update();
- }
- }
- /**
- * Moves the slider to the dest index with the Transition component.
- * Needs to shift the carousel when:
- * - Crossing bounds (dest !== index)
- * - The destination is further than the opposite destination.
- *
- * @param dest - A destination index to go to, including clones'.
- * @param index - A slide index.
- * @param prev - A previous index.
- * @param forwards - Specifies the move direction.
- * @param onMoved - Optional. A callback function invoked after transition ends.
- */
- function move( dest: number, index: number, prev: number, forwards: boolean, onMoved?: AnyFunction ): void {
- cancel();
- const shiftBackwards = dest !== index ? dest > index : forwards;
- const shouldShift = ( dest !== index || exceededLimit( forwards ) ) && canShift( shiftBackwards );
- shouldShift && translate( shift( getPosition(), shiftBackwards ), true );
- indices = [ index, prev, dest ];
- callback = onMoved;
- set( MOVING );
- emit( EVENT_MOVE, index, prev, dest );
- Transition.start( index, onTransitionEnd );
- }
- /**
- * Called when transition ends or is cancelled.
- */
- function onTransitionEnd(): void {
- set( IDLE );
- emit( EVENT_MOVED, ...indices );
- callback && callback();
- }
- /**
- * Cancels transition.
- */
- function cancel(): void {
- if ( is( MOVING ) && indices ) {
- translate( getPosition(), true );
- Transition.cancel();
- onTransitionEnd();
- }
- }
- /**
- * Jumps to the slide at the specified index (silently).
- *
- * @param index - An index to jump to.
- */
- function jump( index: number ): void {
- translate( toPosition( index ) );
- }
- /**
- * Moves the slider to the provided position.
- *
- * @param position - The position to move to.
- * @param preventLoop - Optional. If `true`, sets the provided position as is.
- */
- function translate( position: number, preventLoop?: boolean ): void {
- if ( ! Splide.is( FADE ) ) {
- const destination = preventLoop ? position : loop( position );
- style( list, 'transform', `translate${ resolve( 'X' ) }(${ destination }px)` );
- position !== destination && emit( EVENT_SHIFTED );
- }
- }
- /**
- * Loops the provided position if it exceeds bounds (limit indices).
- *
- * @param position - A position to loop.
- *
- * @return A looped position.
- */
- function loop( position: number ): number {
- if ( Splide.is( LOOP ) ) {
- const diff = orient( position ) - orient( getPosition() );
- if ( diff && exceededLimit( diff > 0, position ) ) {
- position = shift( position, diff > 0 );
- }
- }
- return position;
- }
- /**
- * Adds or subtracts the carousel width to the provided position.
- *
- * @param position - A position to shift.
- * @param backwards - Determines whether to shift the carousel backwards or forwards.
- *
- * @return The shifted position.
- */
- function shift( position: number, backwards: boolean ): number {
- const excess = position - getLimit( backwards );
- const size = sliderSize();
- position -= orient( size * ( ceil( abs( excess ) / size ) || 1 ) ) * ( backwards ? 1 : -1 );
- return position;
- }
- /**
- * Returns the closest index to the position.
- *
- * @param position - A position to convert.
- *
- * @return The closest index to the position.
- */
- function toIndex( position: number ): number {
- const slides = Slides.get();
- let index = 0;
- let minDistance = Infinity;
- for ( let i = 0; i < slides.length; i++ ) {
- const slideIndex = slides[ i ].index;
- const distance = abs( toPosition( slideIndex ) - position );
- if ( distance <= minDistance ) {
- minDistance = distance;
- index = slideIndex;
- } else {
- break;
- }
- }
- return index;
- }
- /**
- * Converts the slide index to the position.
- *
- * @param index - An index to convert.
- *
- * @return The position corresponding with the index.
- */
- function toPosition( index: number ): number {
- let position = orient( totalSize( index - 1 ) - offset( index ) );
- if ( options.trimSpace && Splide.is( SLIDE ) ) {
- position = clamp( position, 0, orient( sliderSize( true ) - listSize() ) );
- }
- return position;
- }
- /**
- * Returns the current position.
- *
- * @return The position of the list element.
- */
- function getPosition(): number {
- const left = resolve( 'left' );
- return rect( list )[ left ] - rect( track )[ left ] + orient( getPadding( false ) );
- }
- /**
- * Returns the carousel progress rate.
- *
- * @param index - Optional. If specified, returns the rate of the slide at the index.
- *
- * @return The progress rate.
- */
- function getRate( index?: number ): number {
- const useIndex = ! isUndefined( index );
- let rate;
- if ( Splide.is( FADE ) ) {
- rate = ( useIndex ? index : Splide.index ) / ( Splide.length - 1 );
- } else {
- const isLoop = Splide.is( LOOP );
- const position = orient( useIndex ? toPosition( index ) : getPosition() );
- const min = orient( getLimit( false ) );
- const max = orient( getLimit( true ) );
- const size = sliderSize();
- const curr = ( position - min ) % size;
- const base = isLoop ? size : max - min;
- rate = ( curr / base ) || 0;
- if ( isLoop && rate < 0 ) {
- rate += 1;
- }
- }
- return clamp( rate, 0, 1 );
- }
- /**
- * Returns the offset amount.
- *
- * @param index - An index.
- */
- function offset( index: number ): number {
- const { focus } = options;
- return focus === 'center'
- ? ( listSize() - slideSize( index, true ) ) / 2
- : +focus * slideSize( index ) || 0;
- }
- /**
- * Returns the limit number that the slider can move to.
- *
- * @param max - Determines whether to return the maximum or minimum limit.
- *
- * @return The border number.
- */
- function getLimit( max: boolean ): number {
- return toPosition( max ? Components.Controller.getEnd() : 0 );
- }
- /**
- * Checks if there is enough width to shift the slider.
- *
- * @param backwards - `true` for checking backwards, or `false` for doing forwards.
- *
- * @return `true` if the slider can be shifted for the specified direction, or otherwise `false`.
- */
- function canShift( backwards: boolean ): boolean {
- const padding = getPadding( false );
- const shifted = orient( shift( getPosition(), backwards ) );
- return backwards ? shifted >= padding : shifted <= listSize( true ) - trackSize() + padding;
- }
- /**
- * Checks if the provided position exceeds the minimum or maximum limit or not.
- *
- * @param max - Optional. `true` for testing max, `false` for min, and `undefined` for both.
- * @param position - Optional. A position to test. If omitted, tests the current position.
- *
- * @return `true` if the position exceeds the limit, or otherwise `false`.
- */
- function exceededLimit( max?: boolean | undefined, position = getPosition() ): boolean {
- const exceededMin = max !== true && orient( position ) < orient( getLimit( false ) );
- const exceededMax = max !== false && orient( position ) > orient( getLimit( true ) );
- return exceededMin || exceededMax;
- }
- return {
- mount,
- move,
- jump,
- translate,
- shift,
- cancel,
- toIndex,
- toPosition,
- getPosition,
- getRate,
- getLimit,
- exceededLimit,
- reposition,
- canShift,
- };
- };
|