-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathkute.esm.js
4718 lines (4169 loc) · 132 KB
/
kute.esm.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
* KUTE.js Standard v2.2.4 (http://thednp.github.io/kute.js)
* Copyright 2015-2022 © thednp
* Licensed under MIT (https://github.com/thednp/kute.js/blob/master/LICENSE)
*/
/**
* Creates cubic-bezier easing functions for animation engines.
* @see http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/platform/graphics/UnitBezier.h
*
*
* @class
*/
class CubicBezier {
/**
* @constructor
* @param {number} x1 - first point horizontal position
* @param {number} y1 - first point vertical position
* @param {number} x2 - second point horizontal position
* @param {number} y2 - second point vertical position
* @param {string=} functionName - an optional function name
* @returns {(t: number) => number} a new CubicBezier easing function
*/
constructor(x1, y1, x2, y2, functionName) {
// pre-calculate the polynomial coefficients
// First and last control points are implied to be (0.0, 0.0) and (1.0, 1.0)
const p1x = x1 || 0;
const p1y = y1 || 0;
const p2x = x2 || 1;
const p2y = y2 || 1;
/** @type {number} */
this.cx = 3 * p1x;
/** @type {number} */
this.bx = 3 * (p2x - p1x) - this.cx;
/** @type {number} */
this.ax = 1 - this.cx - this.bx;
/** @type {number} */
this.cy = 3 * p1y;
/** @type {number} */
this.by = 3 * (p2y - p1y) - this.cy;
/** @type {number} */
this.ay = 1 - this.cy - this.by;
/** @type {(t: number) => number} */
const BezierEasing = (t) => this.sampleCurveY(this.solveCurveX(t));
// this function needs a name
Object.defineProperty(BezierEasing, 'name', { writable: true });
BezierEasing.name = functionName || `cubic-bezier(${[p1x, p1y, p2x, p2y]})`;
return BezierEasing;
}
/**
* @param {number} t - progress [0-1]
* @return {number} - sampled X value
*/
sampleCurveX(t) {
return ((this.ax * t + this.bx) * t + this.cx) * t;
}
/**
* @param {number} t - progress [0-1]
* @return {number} - sampled Y value
*/
sampleCurveY(t) {
return ((this.ay * t + this.by) * t + this.cy) * t;
}
/**
* @param {number} t - progress [0-1]
* @return {number} - sampled curve derivative X value
*/
sampleCurveDerivativeX(t) {
return (3 * this.ax * t + 2 * this.bx) * t + this.cx;
}
/**
* @param {number} x - progress [0-1]
* @return {number} - solved curve X value
*/
solveCurveX(x) {
// Set Precision
const epsilon = 1e-6;
// Skip values out of range
if (x <= 0) return 0;
if (x >= 1) return 1;
let t2 = x;
let x2 = 0;
let d2 = 0;
// First try a few iterations of Newton's method
// -- usually very fast.
for (let i = 0; i < 8; i += 1) {
x2 = this.sampleCurveX(t2) - x;
if (Math.abs(x2) < epsilon) return t2;
d2 = this.sampleCurveDerivativeX(t2);
/* istanbul ignore next */
if (Math.abs(d2) < epsilon) break;
t2 -= x2 / d2;
}
// No solution found - use bi-section
let t0 = 0;
let t1 = 1;
t2 = x;
while (t0 < t1) {
x2 = this.sampleCurveX(t2);
if (Math.abs(x2 - x) < epsilon) return t2;
if (x > x2) t0 = t2;
else t1 = t2;
t2 = (t1 - t0) * 0.5 + t0;
}
// Give up
/* istanbul ignore next */
return t2;
}
}
var version$1 = "1.0.1";
/**
* A global namespace for library version.
* @type {string}
*/
const Version$1 = version$1;
/** @typedef {import('../types/index')} */
Object.assign(CubicBezier, { Version: Version$1 });
/**
* The KUTE.js Execution Context
*/
const KEC = {};
const Tweens = [];
let gl0bal;
if (typeof global !== 'undefined') gl0bal = global;
else if (typeof window !== 'undefined') gl0bal = window.self;
else gl0bal = {};
const globalObject = gl0bal;
// KUTE.js INTERPOLATE FUNCTIONS
// =============================
const interpolate = {};
// schedule property specific function on animation start
// link property update function to KUTE.js execution context
const onStart = {};
// Include a performance.now polyfill.
// source https://github.com/tweenjs/tween.js/blob/master/src/Now.ts
let performanceNow;
// In node.js, use process.hrtime.
// eslint-disable-next-line
// @ts-ignore
if (typeof self === 'undefined' && typeof process !== 'undefined' && process.hrtime) {
performanceNow = () => {
// eslint-disable-next-line
// @ts-ignore
const time = process.hrtime();
// Convert [seconds, nanoseconds] to milliseconds.
return time[0] * 1000 + time[1] / 1000000;
};
} else if (typeof self !== 'undefined' && self.performance !== undefined && self.performance.now !== undefined) {
// In a browser, use self.performance.now if it is available.
// This must be bound, because directly assigning this function
// leads to an invocation exception in Chrome.
performanceNow = self.performance.now.bind(self.performance);
} else if (typeof Date !== 'undefined' && Date.now) {
// Use Date.now if it is available.
performanceNow = Date.now;
} else {
// Otherwise, use 'new Date().getTime()'.
performanceNow = () => new Date().getTime();
}
const now = performanceNow;
const Time = {};
Time.now = now;
// eslint-disable-next-line import/no-mutable-exports -- impossible to satisfy
let Tick = 0;
/**
*
* @param {number | Date} time
*/
const Ticker = (time) => {
let i = 0;
while (i < Tweens.length) {
if (Tweens[i].update(time)) {
i += 1;
} else {
Tweens.splice(i, 1);
}
}
Tick = requestAnimationFrame(Ticker);
};
// stop requesting animation frame
function stop() {
setTimeout(() => { // re-added for #81
if (!Tweens.length && Tick) {
cancelAnimationFrame(Tick);
Tick = null;
Object.keys(onStart).forEach((obj) => {
if (typeof (onStart[obj]) === 'function') {
if (KEC[obj]) delete KEC[obj];
} else {
Object.keys(onStart[obj]).forEach((prop) => {
if (KEC[prop]) delete KEC[prop];
});
}
});
Object.keys(interpolate).forEach((i) => {
if (KEC[i]) delete KEC[i];
});
}
}, 64);
}
// render update functions
// =======================
const Render = {
Tick, Ticker, Tweens, Time,
};
Object.keys(Render).forEach((blob) => {
if (!KEC[blob]) {
KEC[blob] = blob === 'Time' ? Time.now : Render[blob];
}
});
globalObject._KUTE = KEC;
// all supported properties
const supportedProperties = {};
const defaultValues = {};
const defaultOptions$1 = {
duration: 700,
delay: 0,
easing: 'linear',
repeat: 0,
repeatDelay: 0,
yoyo: false,
resetStart: false,
offset: 0,
};
// used in preparePropertiesObject
const prepareProperty = {};
// check current property value when .to() method is used
const prepareStart = {};
// checks for differences between the processed start and end values,
// can be set to make sure start unit and end unit are same,
// stack transforms, process SVG paths,
// any type of post processing the component needs
const crossCheck = {};
// schedule property specific function on animation complete
const onComplete = {};
// link properties to interpolate functions
const linkProperty = {};
const Objects = {
supportedProperties,
defaultValues,
defaultOptions: defaultOptions$1,
prepareProperty,
prepareStart,
crossCheck,
onStart,
onComplete,
linkProperty,
};
// util - a general object for utils like rgbToHex, processEasing
const Util = {};
/**
* KUTE.add(Tween)
*
* @param {KUTE.Tween} tw a new tween to add
*/
const add = (tw) => Tweens.push(tw);
/**
* KUTE.remove(Tween)
*
* @param {KUTE.Tween} tw a new tween to add
*/
const remove = (tw) => {
const i = Tweens.indexOf(tw);
if (i !== -1) Tweens.splice(i, 1);
};
/**
* KUTE.add(Tween)
*
* @return {KUTE.Tween[]} tw a new tween to add
*/
const getAll = () => Tweens;
/**
* KUTE.removeAll()
*/
const removeAll = () => { Tweens.length = 0; };
/**
* linkInterpolation
* @this {KUTE.Tween}
*/
function linkInterpolation() { // DON'T change
Object.keys(linkProperty).forEach((component) => {
const componentLink = linkProperty[component];
const componentProps = supportedProperties[component];
Object.keys(componentLink).forEach((fnObj) => {
if (typeof (componentLink[fnObj]) === 'function' // ATTR, colors, scroll, boxModel, borderRadius
&& Object.keys(this.valuesEnd).some((i) => (componentProps && componentProps.includes(i))
|| (i === 'attr' && Object.keys(this.valuesEnd[i]).some((j) => componentProps && componentProps.includes(j))))) {
if (!KEC[fnObj]) KEC[fnObj] = componentLink[fnObj];
} else {
Object.keys(this.valuesEnd).forEach((prop) => {
const propObject = this.valuesEnd[prop];
if (propObject instanceof Object) {
Object.keys(propObject).forEach((i) => {
if (typeof (componentLink[i]) === 'function') { // transformCSS3
if (!KEC[i]) KEC[i] = componentLink[i];
} else {
Object.keys(componentLink[fnObj]).forEach((j) => {
if (componentLink[i] && typeof (componentLink[i][j]) === 'function') { // transformMatrix
if (!KEC[j]) KEC[j] = componentLink[i][j];
}
});
}
});
}
});
}
});
});
}
const internals = {
add,
remove,
getAll,
removeAll,
stop,
linkInterpolation,
};
/**
* getInlineStyle
* Returns the transform style for element from
* cssText. Used by for the `.to()` static method.
*
* @param {Element} el target element
* @returns {object}
*/
function getInlineStyle(el) {
// if the scroll applies to `window` it returns as it has no styling
if (!el.style) return false;
// the cssText | the resulting transform object
const css = el.style.cssText.replace(/\s/g, '').split(';');
const transformObject = {};
const arrayFn = ['translate3d', 'translate', 'scale3d', 'skew'];
css.forEach((cs) => {
if (/transform/i.test(cs)) {
// all transform properties
const tps = cs.split(':')[1].split(')');
tps.forEach((tpi) => {
const tpv = tpi.split('(');
const tp = tpv[0];
// each transform property
const tv = tpv[1];
if (!/matrix/.test(tp)) {
transformObject[tp] = arrayFn.includes(tp) ? tv.split(',') : tv;
}
});
}
});
return transformObject;
}
/**
* getStyleForProperty
*
* Returns the computed style property for element for .to() method.
* Used by for the `.to()` static method.
*
* @param {Element} elem
* @param {string} propertyName
* @returns {string}
*/
function getStyleForProperty(elem, propertyName) {
let result = defaultValues[propertyName];
const styleAttribute = elem.style;
const computedStyle = getComputedStyle(elem) || elem.currentStyle;
const styleValue = styleAttribute[propertyName] && !/auto|initial|none|unset/.test(styleAttribute[propertyName])
? styleAttribute[propertyName]
: computedStyle[propertyName];
if (propertyName !== 'transform' && (propertyName in computedStyle || propertyName in styleAttribute)) {
result = styleValue;
}
return result;
}
/**
* prepareObject
*
* Returns all processed valuesStart / valuesEnd.
*
* @param {Element} obj the values start/end object
* @param {string} fn toggles between the two
*/
function prepareObject(obj, fn) { // this, props object, type: start/end
const propertiesObject = fn === 'start' ? this.valuesStart : this.valuesEnd;
Object.keys(prepareProperty).forEach((component) => {
const prepareComponent = prepareProperty[component];
const supportComponent = supportedProperties[component];
Object.keys(prepareComponent).forEach((tweenCategory) => {
const transformObject = {};
Object.keys(obj).forEach((tweenProp) => {
// scroll, opacity, other components
if (defaultValues[tweenProp] && prepareComponent[tweenProp]) {
propertiesObject[tweenProp] = prepareComponent[tweenProp]
.call(this, tweenProp, obj[tweenProp]);
// transform
} else if (!defaultValues[tweenCategory] && tweenCategory === 'transform'
&& supportComponent.includes(tweenProp)) {
transformObject[tweenProp] = obj[tweenProp];
// allow transformFunctions to work with preprocessed input values
} else if (!defaultValues[tweenProp] && tweenProp === 'transform') {
propertiesObject[tweenProp] = obj[tweenProp];
// colors, boxModel, category
} else if (!defaultValues[tweenCategory]
&& supportComponent && supportComponent.includes(tweenProp)) {
propertiesObject[tweenProp] = prepareComponent[tweenCategory]
.call(this, tweenProp, obj[tweenProp]);
}
});
// we filter out older browsers by checking Object.keys
if (Object.keys(transformObject).length) {
propertiesObject[tweenCategory] = prepareComponent[tweenCategory]
.call(this, tweenCategory, transformObject);
}
});
});
}
/**
* getStartValues
*
* Returns the start values for to() method.
* Used by for the `.to()` static method.
*
* @this {KUTE.Tween} the tween instance
*/
function getStartValues() {
const startValues = {};
const currentStyle = getInlineStyle(this.element);
Object.keys(this.valuesStart).forEach((tweenProp) => {
Object.keys(prepareStart).forEach((component) => {
const componentStart = prepareStart[component];
Object.keys(componentStart).forEach((tweenCategory) => {
// clip, opacity, scroll
if (tweenCategory === tweenProp && componentStart[tweenProp]) {
startValues[tweenProp] = componentStart[tweenCategory]
.call(this, tweenProp, this.valuesStart[tweenProp]);
// find in an array of properties
} else if (supportedProperties[component]
&& supportedProperties[component].includes(tweenProp)) {
startValues[tweenProp] = componentStart[tweenCategory]
.call(this, tweenProp, this.valuesStart[tweenProp]);
}
});
});
});
// stack transformCSS props for .to() chains
// also add to startValues values from previous tweens
Object.keys(currentStyle).forEach((current) => {
if (!(current in this.valuesStart)) {
startValues[current] = currentStyle[current] || defaultValues[current];
}
});
this.valuesStart = {};
prepareObject.call(this, startValues, 'start');
}
var Process = {
getInlineStyle,
getStyleForProperty,
getStartValues,
prepareObject,
};
const connect = {};
/** @type {KUTE.TweenBase | KUTE.Tween | KUTE.TweenExtra} */
connect.tween = null;
connect.processEasing = null;
const Easing = {
linear: new CubicBezier(0, 0, 1, 1, 'linear'),
easingSinusoidalIn: new CubicBezier(0.47, 0, 0.745, 0.715, 'easingSinusoidalIn'),
easingSinusoidalOut: new CubicBezier(0.39, 0.575, 0.565, 1, 'easingSinusoidalOut'),
easingSinusoidalInOut: new CubicBezier(0.445, 0.05, 0.55, 0.95, 'easingSinusoidalInOut'),
easingQuadraticIn: new CubicBezier(0.550, 0.085, 0.680, 0.530, 'easingQuadraticIn'),
easingQuadraticOut: new CubicBezier(0.250, 0.460, 0.450, 0.940, 'easingQuadraticOut'),
easingQuadraticInOut: new CubicBezier(0.455, 0.030, 0.515, 0.955, 'easingQuadraticInOut'),
easingCubicIn: new CubicBezier(0.55, 0.055, 0.675, 0.19, 'easingCubicIn'),
easingCubicOut: new CubicBezier(0.215, 0.61, 0.355, 1, 'easingCubicOut'),
easingCubicInOut: new CubicBezier(0.645, 0.045, 0.355, 1, 'easingCubicInOut'),
easingQuarticIn: new CubicBezier(0.895, 0.03, 0.685, 0.22, 'easingQuarticIn'),
easingQuarticOut: new CubicBezier(0.165, 0.84, 0.44, 1, 'easingQuarticOut'),
easingQuarticInOut: new CubicBezier(0.77, 0, 0.175, 1, 'easingQuarticInOut'),
easingQuinticIn: new CubicBezier(0.755, 0.05, 0.855, 0.06, 'easingQuinticIn'),
easingQuinticOut: new CubicBezier(0.23, 1, 0.32, 1, 'easingQuinticOut'),
easingQuinticInOut: new CubicBezier(0.86, 0, 0.07, 1, 'easingQuinticInOut'),
easingExponentialIn: new CubicBezier(0.95, 0.05, 0.795, 0.035, 'easingExponentialIn'),
easingExponentialOut: new CubicBezier(0.19, 1, 0.22, 1, 'easingExponentialOut'),
easingExponentialInOut: new CubicBezier(1, 0, 0, 1, 'easingExponentialInOut'),
easingCircularIn: new CubicBezier(0.6, 0.04, 0.98, 0.335, 'easingCircularIn'),
easingCircularOut: new CubicBezier(0.075, 0.82, 0.165, 1, 'easingCircularOut'),
easingCircularInOut: new CubicBezier(0.785, 0.135, 0.15, 0.86, 'easingCircularInOut'),
easingBackIn: new CubicBezier(0.6, -0.28, 0.735, 0.045, 'easingBackIn'),
easingBackOut: new CubicBezier(0.175, 0.885, 0.32, 1.275, 'easingBackOut'),
easingBackInOut: new CubicBezier(0.68, -0.55, 0.265, 1.55, 'easingBackInOut'),
};
/**
* Returns a valid `easingFunction`.
*
* @param {KUTE.easingFunction | string} fn function name or constructor name
* @returns {KUTE.easingFunction} a valid easingfunction
*/
function processBezierEasing(fn) {
if (typeof fn === 'function') {
return fn;
} if (typeof (Easing[fn]) === 'function') {
return Easing[fn];
} if (/bezier/.test(fn)) {
const bz = fn.replace(/bezier|\s|\(|\)/g, '').split(',');
return new CubicBezier(bz[0] * 1, bz[1] * 1, bz[2] * 1, bz[3] * 1); // bezier easing
}
// if (/elastic|bounce/i.test(fn)) {
// throw TypeError(`KUTE - CubicBezier doesn't support ${fn} easing.`);
// }
return Easing.linear;
}
connect.processEasing = processBezierEasing;
/**
* selector
*
* A selector utility for KUTE.js.
*
* @param {KUTE.selectorType} el target(s) or string selector
* @param {boolean | number} multi when true returns an array/collection of elements
* @returns {Element | Element[] | null}
*/
function selector(el, multi) {
try {
let requestedElem;
let itemsArray;
if (multi) {
itemsArray = el instanceof Array && el.every((x) => x instanceof Element);
requestedElem = el instanceof HTMLCollection || el instanceof NodeList || itemsArray
? el : document.querySelectorAll(el);
} else {
requestedElem = el instanceof Element || el === window // scroll
? el : document.querySelector(el);
}
return requestedElem;
} catch (e) {
throw TypeError(`KUTE.js - Element(s) not found: ${el}.`);
}
}
function queueStart() {
// fire onStart actions
Object.keys(onStart).forEach((obj) => {
if (typeof (onStart[obj]) === 'function') {
onStart[obj].call(this, obj); // easing functions
} else {
Object.keys(onStart[obj]).forEach((prop) => {
onStart[obj][prop].call(this, prop);
});
}
});
// add interpolations
linkInterpolation.call(this);
}
/**
* The `TweenBase` constructor creates a new `Tween` object
* for a single `HTMLElement` and returns it.
*
* `TweenBase` is meant to be used with pre-processed values.
*/
class TweenBase {
/**
* @param {Element} targetElement the target element
* @param {KUTE.tweenProps} startObject the start values
* @param {KUTE.tweenProps} endObject the end values
* @param {KUTE.tweenOptions} opsObject the end values
* @returns {TweenBase} the resulting Tween object
*/
constructor(targetElement, startObject, endObject, opsObject) {
// element animation is applied to
this.element = targetElement;
/** @type {boolean} */
this.playing = false;
/** @type {number?} */
this._startTime = null;
/** @type {boolean} */
this._startFired = false;
// type is set via KUTE.tweenProps
this.valuesEnd = endObject;
this.valuesStart = startObject;
// OPTIONS
const options = opsObject || {};
// internal option to process inline/computed style at start instead of init
// used by to() method and expects object : {} / false
this._resetStart = options.resetStart || 0;
// you can only set a core easing function as default
/** @type {KUTE.easingOption} */
this._easing = typeof (options.easing) === 'function' ? options.easing : connect.processEasing(options.easing);
/** @type {number} */
this._duration = options.duration || defaultOptions$1.duration; // duration option | default
/** @type {number} */
this._delay = options.delay || defaultOptions$1.delay; // delay option | default
// set other options
Object.keys(options).forEach((op) => {
const internalOption = `_${op}`;
if (!(internalOption in this)) this[internalOption] = options[op];
});
// callbacks should not be set as undefined
// this._onStart = options.onStart
// this._onUpdate = options.onUpdate
// this._onStop = options.onStop
// this._onComplete = options.onComplete
// queue the easing
const easingFnName = this._easing.name;
if (!onStart[easingFnName]) {
onStart[easingFnName] = function easingFn(prop) {
if (!KEC[prop] && prop === this._easing.name) KEC[prop] = this._easing;
};
}
return this;
}
/**
* Starts tweening
* @param {number?} time the tween start time
* @returns {TweenBase} this instance
*/
start(time) {
// now it's a good time to start
add(this);
this.playing = true;
this._startTime = typeof time !== 'undefined' ? time : KEC.Time();
this._startTime += this._delay;
if (!this._startFired) {
if (this._onStart) {
this._onStart.call(this);
}
queueStart.call(this);
this._startFired = true;
}
if (!Tick) Ticker();
return this;
}
/**
* Stops tweening
* @returns {TweenBase} this instance
*/
stop() {
if (this.playing) {
remove(this);
this.playing = false;
if (this._onStop) {
this._onStop.call(this);
}
this.close();
}
return this;
}
/**
* Trigger internal completion callbacks.
*/
close() {
// scroll|transformMatrix need this
Object.keys(onComplete).forEach((component) => {
Object.keys(onComplete[component]).forEach((toClose) => {
onComplete[component][toClose].call(this, toClose);
});
});
// when all animations are finished, stop ticking after ~3 frames
this._startFired = false;
stop.call(this);
}
/**
* Schedule another tween instance to start once this one completes.
* @param {KUTE.chainOption} args the tween animation start time
* @returns {TweenBase} this instance
*/
chain(args) {
this._chain = [];
this._chain = args.length ? args : this._chain.concat(args);
return this;
}
/**
* Stop tweening the chained tween instances.
*/
stopChainedTweens() {
if (this._chain && this._chain.length) this._chain.forEach((tw) => tw.stop());
}
/**
* Update the tween on each tick.
* @param {number} time the tick time
* @returns {boolean} this instance
*/
update(time) {
const T = time !== undefined ? time : KEC.Time();
let elapsed;
if (T < this._startTime && this.playing) { return true; }
elapsed = (T - this._startTime) / this._duration;
elapsed = (this._duration === 0 || elapsed > 1) ? 1 : elapsed;
// calculate progress
const progress = this._easing(elapsed);
// render the update
Object.keys(this.valuesEnd).forEach((tweenProp) => {
KEC[tweenProp](this.element,
this.valuesStart[tweenProp],
this.valuesEnd[tweenProp],
progress);
});
// fire the updateCallback
if (this._onUpdate) {
this._onUpdate.call(this);
}
if (elapsed === 1) {
// fire the complete callback
if (this._onComplete) {
this._onComplete.call(this);
}
// now we're sure no animation is running
this.playing = false;
// stop ticking when finished
this.close();
// start animating chained tweens
if (this._chain !== undefined && this._chain.length) {
this._chain.map((tw) => tw.start());
}
return false;
}
return true;
}
}
// Update Tween Interface
connect.tween = TweenBase;
/**
* The `KUTE.Tween()` constructor creates a new `Tween` object
* for a single `HTMLElement` and returns it.
*
* This constructor adds additional functionality and is the default
* Tween object constructor in KUTE.js.
*/
class Tween extends TweenBase {
/**
* @param {KUTE.tweenParams} args (*target*, *startValues*, *endValues*, *options*)
* @returns {Tween} the resulting Tween object
*/
constructor(...args) {
super(...args); // this calls the constructor of TweenBase
// reset interpolation values
this.valuesStart = {};
this.valuesEnd = {};
// const startObject = args[1];
// const endObject = args[2];
const [startObject, endObject, options] = args.slice(1);
// set valuesEnd
prepareObject.call(this, endObject, 'end');
// set valuesStart
if (this._resetStart) {
this.valuesStart = startObject;
} else {
prepareObject.call(this, startObject, 'start');
}
// ready for crossCheck
if (!this._resetStart) {
Object.keys(crossCheck).forEach((component) => {
Object.keys(crossCheck[component]).forEach((checkProp) => {
crossCheck[component][checkProp].call(this, checkProp);
});
});
}
// set paused state
/** @type {boolean} */
this.paused = false;
/** @type {number?} */
this._pauseTime = null;
// additional properties and options
/** @type {number?} */
this._repeat = options.repeat || defaultOptions$1.repeat;
/** @type {number?} */
this._repeatDelay = options.repeatDelay || defaultOptions$1.repeatDelay;
// we cache the number of repeats to be able to put it back after all cycles finish
/** @type {number?} */
this._repeatOption = this._repeat;
// yoyo needs at least repeat: 1
/** @type {KUTE.tweenProps} */
this.valuesRepeat = {}; // valuesRepeat
/** @type {boolean} */
this._yoyo = options.yoyo || defaultOptions$1.yoyo;
/** @type {boolean} */
this._reversed = false;
// don't load extra callbacks
// this._onPause = options.onPause || defaultOptions.onPause
// this._onResume = options.onResume || defaultOptions.onResume
// chained Tweens
// this._chain = options.chain || defaultOptions.chain;
return this;
}
/**
* Starts tweening, extended method
* @param {number?} time the tween start time
* @returns {Tween} this instance
*/
start(time) {
// on start we reprocess the valuesStart for TO() method
if (this._resetStart) {
this.valuesStart = this._resetStart;
getStartValues.call(this);
// this is where we do the valuesStart and valuesEnd check for fromTo() method
Object.keys(crossCheck).forEach((component) => {
Object.keys(crossCheck[component]).forEach((checkProp) => {
crossCheck[component][checkProp].call(this, checkProp);
});
});
}
// still not paused
this.paused = false;
// set yoyo values
if (this._yoyo) {
Object.keys(this.valuesEnd).forEach((endProp) => {
this.valuesRepeat[endProp] = this.valuesStart[endProp];
});
}
super.start(time);
return this;
}
/**
* Stops tweening, extended method
* @returns {Tween} this instance
*/
stop() {
super.stop();
if (!this.paused && this.playing) {
this.paused = false;
this.stopChainedTweens();
}
return this;
}
/**
* Trigger internal completion callbacks.
*/
close() {
super.close();
if (this._repeatOption > 0) {
this._repeat = this._repeatOption;
}
if (this._yoyo && this._reversed === true) {
this.reverse();
this._reversed = false;
}
return this;
}
/**
* Resume tweening
* @returns {Tween} this instance
*/
resume() {
if (this.paused && this.playing) {
this.paused = false;
if (this._onResume !== undefined) {
this._onResume.call(this);
}
// re-queue execution context
queueStart.call(this);
// update time and let it roll
this._startTime += KEC.Time() - this._pauseTime;
add(this);
// restart ticker if stopped
if (!Tick) Ticker();
}
return this;
}