123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- import { nextTick } from '../../shared/utils.js';
- export default function Controller(_ref) {
- let {
- swiper,
- extendParams,
- on
- } = _ref;
- extendParams({
- controller: {
- control: undefined,
- inverse: false,
- by: 'slide'
- }
- });
- swiper.controller = {
- control: undefined
- };
- function LinearSpline(x, y) {
- const binarySearch = function search() {
- let maxIndex;
- let minIndex;
- let guess;
- return (array, val) => {
- minIndex = -1;
- maxIndex = array.length;
- while (maxIndex - minIndex > 1) {
- guess = maxIndex + minIndex >> 1;
- if (array[guess] <= val) {
- minIndex = guess;
- } else {
- maxIndex = guess;
- }
- }
- return maxIndex;
- };
- }();
- this.x = x;
- this.y = y;
- this.lastIndex = x.length - 1;
-
-
- let i1;
- let i3;
- this.interpolate = function interpolate(x2) {
- if (!x2) return 0;
- i3 = binarySearch(this.x, x2);
- i1 = i3 - 1;
-
- return (x2 - this.x[i1]) * (this.y[i3] - this.y[i1]) / (this.x[i3] - this.x[i1]) + this.y[i1];
- };
- return this;
- }
- function getInterpolateFunction(c) {
- if (!swiper.controller.spline) {
- swiper.controller.spline = swiper.params.loop ? new LinearSpline(swiper.slidesGrid, c.slidesGrid) : new LinearSpline(swiper.snapGrid, c.snapGrid);
- }
- }
- function setTranslate(_t, byController) {
- const controlled = swiper.controller.control;
- let multiplier;
- let controlledTranslate;
- const Swiper = swiper.constructor;
- function setControlledTranslate(c) {
-
-
-
-
- const translate = swiper.rtlTranslate ? -swiper.translate : swiper.translate;
- if (swiper.params.controller.by === 'slide') {
- getInterpolateFunction(c);
-
- controlledTranslate = -swiper.controller.spline.interpolate(-translate);
- }
- if (!controlledTranslate || swiper.params.controller.by === 'container') {
- multiplier = (c.maxTranslate() - c.minTranslate()) / (swiper.maxTranslate() - swiper.minTranslate());
- controlledTranslate = (translate - swiper.minTranslate()) * multiplier + c.minTranslate();
- }
- if (swiper.params.controller.inverse) {
- controlledTranslate = c.maxTranslate() - controlledTranslate;
- }
- c.updateProgress(controlledTranslate);
- c.setTranslate(controlledTranslate, swiper);
- c.updateActiveIndex();
- c.updateSlidesClasses();
- }
- if (Array.isArray(controlled)) {
- for (let i = 0; i < controlled.length; i += 1) {
- if (controlled[i] !== byController && controlled[i] instanceof Swiper) {
- setControlledTranslate(controlled[i]);
- }
- }
- } else if (controlled instanceof Swiper && byController !== controlled) {
- setControlledTranslate(controlled);
- }
- }
- function setTransition(duration, byController) {
- const Swiper = swiper.constructor;
- const controlled = swiper.controller.control;
- let i;
- function setControlledTransition(c) {
- c.setTransition(duration, swiper);
- if (duration !== 0) {
- c.transitionStart();
- if (c.params.autoHeight) {
- nextTick(() => {
- c.updateAutoHeight();
- });
- }
- c.$wrapperEl.transitionEnd(() => {
- if (!controlled) return;
- if (c.params.loop && swiper.params.controller.by === 'slide') {
- c.loopFix();
- }
- c.transitionEnd();
- });
- }
- }
- if (Array.isArray(controlled)) {
- for (i = 0; i < controlled.length; i += 1) {
- if (controlled[i] !== byController && controlled[i] instanceof Swiper) {
- setControlledTransition(controlled[i]);
- }
- }
- } else if (controlled instanceof Swiper && byController !== controlled) {
- setControlledTransition(controlled);
- }
- }
- function removeSpline() {
- if (!swiper.controller.control) return;
- if (swiper.controller.spline) {
- swiper.controller.spline = undefined;
- delete swiper.controller.spline;
- }
- }
- on('beforeInit', () => {
- swiper.controller.control = swiper.params.controller.control;
- });
- on('update', () => {
- removeSpline();
- });
- on('resize', () => {
- removeSpline();
- });
- on('observerUpdate', () => {
- removeSpline();
- });
- on('setTranslate', (_s, translate, byController) => {
- if (!swiper.controller.control) return;
- swiper.controller.setTranslate(translate, byController);
- });
- on('setTransition', (_s, duration, byController) => {
- if (!swiper.controller.control) return;
- swiper.controller.setTransition(duration, byController);
- });
- Object.assign(swiper.controller, {
- setTranslate,
- setTransition
- });
- }
|