File size: 31,033 Bytes
1e92f2d |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 |
import { SpringValue } from './SpringValue'
import { FrameValue } from './FrameValue'
import { flushMicroTasks } from 'flush-microtasks'
import {
addFluidObserver,
FluidObserver,
getFluidObservers,
Globals,
removeFluidObserver,
} from '@react-spring/shared'
const frameLength = 1000 / 60
describe('SpringValue', () => {
it('can animate a number', async () => {
const spring = new SpringValue(0)
spring.start(1, {
config: { duration: 10 * frameLength },
})
await global.advanceUntilIdle()
const frames = global.getFrames(spring)
expect(frames).toMatchSnapshot()
})
it('can animate a string', async () => {
const spring = new SpringValue<string>()
const promise = spring.start({
to: '10px 20px',
from: '0px 0px',
config: { duration: 10 * frameLength },
})
await global.advanceUntilIdle()
const frames = global.getFrames(spring)
expect(frames).toMatchSnapshot()
const { finished } = await promise
expect(finished).toBeTruthy()
})
// FIXME: This test fails.
xit('animates a number the same as a numeric string', async () => {
const spring1 = new SpringValue(0)
spring1.start(10)
await global.advanceUntilIdle()
const frames = global.getFrames(spring1).map(n => n + 'px')
const spring2 = new SpringValue('0px')
spring2.start('10px')
await global.advanceUntilIdle()
expect(frames).toEqual(global.getFrames(spring2))
})
it('can animate an array of numbers', async () => {
const onChange = jest.fn()
const spring = new SpringValue()
spring.start({
to: [10, 20],
from: [0, 0],
config: { duration: 10 * frameLength },
onChange,
})
await global.advanceUntilIdle()
expect(onChange.mock.calls.slice(-1)[0]).toEqual([
spring.animation.to,
spring,
])
expect(global.getFrames(spring)).toMatchSnapshot()
})
it('can have an animated string as its target', async () => {
const target = new SpringValue('yellow')
const spring = new SpringValue({
to: target,
config: { duration: 10 * frameLength },
})
// The target is not attached until the spring is observed.
addFluidObserver(spring, () => {})
global.mockRaf.step()
target.set('red')
await global.advanceUntilIdle()
expect(global.getFrames(spring)).toMatchSnapshot()
})
describeProps()
describeEvents()
describeMethods()
describeGlobals()
describeTarget('another SpringValue', from => {
const node = new SpringValue(from)
return {
node,
set: node.set.bind(node),
start: node.start.bind(node),
reset: node.reset.bind(node),
}
})
describeTarget('an Interpolation', from => {
const parent = new SpringValue(from - 1)
const node = parent.to(n => n + 1)
return {
node,
set: n => parent.set(n - 1),
start: n => parent.start(n - 1),
reset: parent.reset.bind(parent),
}
})
// No-op updates don't change the goal value.
describe('no-op updates', () => {
it('resolves when the animation is finished', async () => {
const spring = new SpringValue(0)
spring.start(1)
// Create a no-op update.
const resolve = jest.fn()
spring.start(1).then(resolve)
await flushMicroTasks()
expect(resolve).not.toBeCalled()
await global.advanceUntilIdle()
expect(resolve).toBeCalled()
})
})
})
function describeProps() {
describeToProp()
describeFromProp()
describeResetProp()
describeDefaultProp()
describeReverseProp()
describeImmediateProp()
describeConfigProp()
describeLoopProp()
describeDelayProp()
}
function describeToProp() {
describe('when "to" prop is changed', () => {
it.todo('resolves the "start" promise with (finished: false)')
it.todo('avoids calling the "onStart" prop')
it.todo('avoids calling the "onRest" prop')
})
describe('when "to" prop equals current value', () => {
it('cancels any pending animation', async () => {
const spring = new SpringValue(0)
spring.start(1)
// Prevent the animation to 1 (which hasn't started yet)
spring.start(0)
await global.advanceUntilIdle()
expect(global.getFrames(spring)).toEqual([])
})
it('avoids interrupting an active animation', async () => {
const spring = new SpringValue(0)
spring.start(1)
await global.advance()
const goal = spring.get()
spring.start(goal)
expect(spring.idle).toBeFalsy()
await global.advanceUntilIdle()
expect(spring.get()).toBe(goal)
expect(global.getFrames(spring)).toMatchSnapshot()
})
})
describe('when "to" prop is a function', () => {
describe('and "from" prop is defined', () => {
it('stops the active animation before "to" is called', () => {
const spring = new SpringValue({ from: 0, to: 1 })
global.mockRaf.step()
expect.assertions(1)
spring.start({
from: 2,
to: () => {
expect(spring.get()).toBe(2)
},
})
})
})
})
}
function describeFromProp() {
describe('when "from" prop is defined', () => {
it.todo('controls the start value')
})
}
function describeResetProp() {
describe('when "reset" prop is true', () => {
it('calls "onRest" before jumping back to its "from" value', async () => {
const onRest = jest.fn((result: any) => {
expect(result.value).not.toBe(0)
})
const spring = new SpringValue({ from: 0, to: 1, onRest })
global.mockRaf.step()
spring.start({ reset: true })
expect(onRest).toHaveBeenCalled()
expect(spring.get()).toBe(0)
})
it.todo('resolves the "start" promise with (finished: false)')
it.todo('calls the "onRest" prop with (finished: false)')
})
}
function describeDefaultProp() {
// The hook API always uses { default: true } for render-driven updates.
// Some props can have default values (eg: onRest, config, etc), and
// other props may behave differently when { default: true } is used.
describe('when "default" prop is true', () => {
describe('and "from" prop is changed', () => {
describe('before the first animation', () => {
it('updates the current value', () => {
const props = { default: true, from: 1, to: 1 }
const spring = new SpringValue(props)
expect(spring.get()).toBe(1)
expect(spring.idle).toBeTruthy()
props.from = 0
spring.start(props)
expect(spring.get()).not.toBe(1)
expect(spring.idle).toBeFalsy()
})
})
describe('after the first animation', () => {
it('does not start animating', async () => {
const props = { default: true, from: 0, to: 2 }
const spring = new SpringValue(props)
await global.advanceUntilIdle()
props.from = 1
spring.start(props)
expect(spring.get()).toBe(2)
expect(spring.idle).toBeTruthy()
expect(spring.animation.from).toBe(1)
})
describe('and "reset" prop is true', () => {
it('starts at the "from" prop', async () => {
const props: any = { default: true, from: 0, to: 2 }
const spring = new SpringValue(props)
await global.advanceUntilIdle()
props.from = 1
props.reset = true
spring.start(props)
expect(spring.animation.from).toBe(1)
expect(spring.idle).toBeFalsy()
})
})
})
})
})
describe('when "default" prop is false', () => {
describe('and "from" prop is defined', () => {
it('updates the current value', () => {
const spring = new SpringValue(0)
spring.start({ from: 1 })
expect(spring.get()).toBe(1)
})
it('updates the "from" value', () => {
const spring = new SpringValue(0)
spring.start({ from: 1 })
expect(spring.animation.from).toBe(1)
})
describe('and "to" prop is undefined', () => {
it('updates the "to" value', () => {
const spring = new SpringValue(0)
spring.start({ from: 1 })
expect(spring.animation.to).toBe(1)
})
it('stops the active animation', async () => {
const spring = new SpringValue(0)
// This animation will be stopped.
const promise = spring.start({ from: 0, to: 1 })
global.mockRaf.step()
const value = spring.get()
spring.start({ from: 0 })
expect(spring.idle).toBeTruthy()
expect(spring.animation.to).toBe(0)
expect(await promise).toMatchObject({
value,
finished: false,
})
})
})
})
})
}
function describeReverseProp() {
describe('when "reverse" prop is true', () => {
it('swaps the "to" and "from" props', async () => {
const spring = new SpringValue<number>()
spring.start({ from: 0, to: 1, reverse: true })
await global.advanceUntilIdle()
expect(global.getFrames(spring)).toMatchSnapshot()
})
it('works when "to" and "from" were set by an earlier update', async () => {
// TODO: remove the need for "<number>"
const spring = new SpringValue<number>({ from: 0, to: 1 })
await global.advanceUntilValue(spring, 0.5)
spring.start({ reverse: true })
expect(spring.animation).toMatchObject({
from: 1,
to: 0,
})
await global.advanceUntilIdle()
expect(global.getFrames(spring)).toMatchSnapshot()
})
it('works when "from" was set by an earlier update', async () => {
const spring = new SpringValue(0)
expect(spring.animation.from).toBe(0)
spring.start({ to: 1, reverse: true })
await global.advanceUntilIdle()
expect(global.getFrames(spring)).toMatchSnapshot()
})
it('preserves the reversal for future updates', async () => {
const spring = new SpringValue(0)
spring.start({ to: 1, reverse: true })
expect(spring.animation).toMatchObject({
to: 0,
from: 1,
})
await global.advanceUntilIdle()
spring.start({ to: 2 })
expect(spring.animation).toMatchObject({
to: 2,
from: 1,
})
})
})
}
function describeImmediateProp() {
describe('when "immediate" prop is true', () => {
it.todo('still resolves the "start" promise')
it.todo('never calls the "onStart" prop')
it.todo('never calls the "onRest" prop')
it('stops animating', async () => {
const spring = new SpringValue(0)
spring.start(2)
await global.advanceUntilValue(spring, 1)
// Use "immediate" to emulate the "stop" method. (see #884)
const value = spring.get()
spring.start(value, { immediate: true })
// The "immediate" prop waits until the next frame before going idle.
global.mockRaf.step()
expect(spring.idle).toBeTruthy()
expect(spring.get()).toBe(value)
})
})
describe('when "immediate: true" is followed by "immediate: false" in same frame', () => {
it('applies the immediate goal synchronously', () => {
const spring = new SpringValue(0)
// The immediate update is applied in the next frame.
spring.start({ to: 1, immediate: true })
expect(spring.get()).toBe(0)
// But when an animated update is merged before the next frame,
// the immediate update is applied synchronously.
spring.start({ to: 2 })
expect(spring.get()).toBe(1)
expect(spring.animation).toMatchObject({
fromValues: [1],
toValues: [2],
})
})
it('does nothing if the 2nd update has "reset: true"', () => {
const spring = new SpringValue(0)
// The immediate update is applied in the next frame.
spring.start({ to: 1, immediate: true })
expect(spring.get()).toBe(0)
// But when an animated update is merged before the next frame,
// the immediate update is applied synchronously.
spring.start({ to: 2, reset: true })
expect(spring.get()).toBe(0)
expect(spring.animation).toMatchObject({
fromValues: [0],
toValues: [2],
})
})
})
}
function describeConfigProp() {
describe('the "config" prop', () => {
it('resets the velocity when "to" changes', () => {
const spring = new SpringValue(0)
spring.start({ to: 100, config: { velocity: 10 } })
const { config } = spring.animation
expect(config.velocity).toBe(10)
// Preserve velocity if "to" did not change.
spring.start({ config: { tension: 200 } })
expect(config.velocity).toBe(10)
spring.start({ to: 200 })
expect(config.velocity).toBe(0)
})
describe('when "damping" is 1.0', () => {
it('should prevent bouncing', async () => {
const spring = new SpringValue(0)
spring.start(1, {
config: { frequency: 1.5, damping: 1 },
})
await global.advanceUntilIdle()
expect(global.countBounces(spring)).toBe(0)
})
})
describe('when "damping" is less than 1.0', () => {
// FIXME: This test fails.
xit('should bounce', async () => {
const spring = new SpringValue(0)
spring.start(1, {
config: { frequency: 1.5, damping: 1 },
})
await global.advanceUntilIdle()
expect(global.countBounces(spring)).toBeGreaterThan(0)
})
})
describe('the "precision" prop', () => {
describe('stops spring easing when step difference is less than precision', () => {
it.each([100, 10, 1, 0.1, 0.01, 0.001, 0.0001])(
'with precision: %d',
async precision => {
const spring = new SpringValue(0)
spring.start(precision * 10, {
config: {
precision,
},
})
await global.advanceUntilIdle()
const frames = global.getFrames(spring)
expect(spring.get() - frames[frames.length - 2]).toBeGreaterThan(
precision
)
expect(
spring.get() - frames[frames.length - 1]
).toBeLessThanOrEqual(precision)
}
)
})
describe('stops decay easing when step difference is less than precision', () => {
it.each([100, 10, 1, 0.1, 0.01, 0.001, 0.0001])(
'with precision: %d',
async precision => {
const spring = new SpringValue(0)
spring.start({
config: {
velocity: precision * 10,
decay: true,
precision,
},
})
await global.advanceUntilIdle()
const frames = global.getFrames(spring)
expect(
frames[frames.length - 1] - frames[frames.length - 3]
).toBeGreaterThan(precision)
expect(
frames[frames.length - 1] - frames[frames.length - 2]
).toBeLessThanOrEqual(precision)
}
)
})
})
})
}
function describeLoopProp() {
describe('the "loop" prop', () => {
it('resets the animation once finished', async () => {
const spring = new SpringValue(0)
spring.start(1, {
loop: true,
config: { duration: frameLength * 3 },
})
await global.advanceUntilValue(spring, 1)
const firstRun = global.getFrames(spring)
expect(firstRun).toMatchSnapshot()
// The loop resets the value before the next frame.
// FIXME: Reset on next frame instead?
expect(spring.get()).toBe(0)
await global.advanceUntilValue(spring, 1)
expect(global.getFrames(spring)).toEqual(firstRun)
})
it('can pass a custom delay', async () => {
const spring = new SpringValue(0)
spring.start(1, {
loop: { reset: true, delay: 1000 },
})
await global.advanceUntilValue(spring, 1)
expect(spring.get()).toBe(1)
global.mockRaf.step({ time: 1000 })
expect(spring.get()).toBeLessThan(1)
await global.advanceUntilValue(spring, 1)
expect(spring.get()).toBe(1)
})
it('supports deferred evaluation', async () => {
const spring = new SpringValue(0)
let loop: any = true
spring.start(1, { loop: () => loop })
await global.advanceUntilValue(spring, 1)
expect(spring.idle).toBeFalsy()
expect(spring.get()).toBeLessThan(1)
loop = { reset: true, delay: 1000 }
await global.advanceUntilValue(spring, 1)
expect(spring.idle).toBeTruthy()
expect(spring.get()).toBe(1)
global.mockRaf.step({ time: 1000 })
expect(spring.idle).toBeFalsy()
expect(spring.get()).toBeLessThan(1)
loop = false
await global.advanceUntilValue(spring, 1)
expect(spring.idle).toBeTruthy()
expect(spring.get()).toBe(1)
})
it('does not affect later updates', async () => {
const spring = new SpringValue(0)
spring.start(1, { loop: true })
await global.advanceUntilValue(spring, 0.5)
spring.start(2)
await global.advanceUntilValue(spring, 2)
expect(spring.idle).toBeTruthy()
})
it('can be combined with the "reset" prop', async () => {
const spring = new SpringValue(0)
spring.start(1)
await global.advanceUntilIdle()
spring.start({ reset: true, loop: true })
expect(spring.get()).toBe(0)
await global.advanceUntilValue(spring, 1)
expect(spring.get()).toBe(0)
expect(spring.idle).toBeFalsy()
})
it('can be combined with the "reverse" prop', async () => {
const spring = new SpringValue(0)
spring.start(1, { config: { duration: frameLength * 3 } })
await global.advanceUntilIdle()
spring.start({
loop: { reverse: true },
})
await global.advanceUntilValue(spring, 0)
await global.advanceUntilValue(spring, 1)
expect(global.getFrames(spring)).toMatchSnapshot()
})
})
}
function describeDelayProp() {
describe('the "delay" prop', () => {
// "Temporal prevention" means a delayed update can be cancelled by an
// earlier update. This removes the need for explicit delay cancellation.
it('allows the update to be temporally prevented', async () => {
const spring = new SpringValue(0)
const anim = spring.animation
spring.start(1, { config: { duration: 1000 } })
// This update will be ignored, because the next "start" call updates
// the "to" prop before this update's delay is finished. This update
// would *not* be ignored be if its "to" prop was undefined.
spring.start(2, { delay: 500, immediate: true })
// This update won't be affected by the previous update.
spring.start(0, { delay: 100, config: { duration: 1000 } })
expect(anim.to).toBe(1)
await global.advanceByTime(100)
expect(anim.to).toBe(0)
await global.advanceByTime(400)
expect(anim.immediate).toBeFalsy()
expect(anim.to).toBe(0)
})
})
}
function describeEvents() {
describe('the "onStart" event', () => {
it('is called on the first frame', async () => {
const onStart = jest.fn()
const spring = new SpringValue(0, { onStart })
spring.start(1)
expect(onStart).toBeCalledTimes(0)
global.mockRaf.step()
expect(onStart).toBeCalledTimes(1)
await global.advanceUntilIdle()
expect(onStart).toBeCalledTimes(1)
})
it('is called by the "finish" method', () => {
const onStart = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onStart })
expect(onStart).toBeCalledTimes(0)
spring.finish()
expect(onStart).toBeCalledTimes(1)
})
it('is called when immediate is set to true', async () => {
const onStart = jest.fn()
new SpringValue({
from: 0,
to: 1,
onStart,
immediate: true,
})
global.mockRaf.step()
expect(onStart).toBeCalledTimes(1)
})
})
describe('the "onChange" event', () => {
it('is called on every frame', async () => {
const onChange = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onChange })
await global.advanceUntilIdle()
const frames = global.getFrames(spring)
expect(onChange).toBeCalledTimes(frames.length)
})
it('receives the "to" value on the last frame', async () => {
const onChange = jest.fn()
const spring = new SpringValue('blue', { onChange })
spring.start('red')
await global.advanceUntilIdle()
const [lastValue] = onChange.mock.calls.slice(-1)[0]
expect(lastValue).toBe('red')
})
it('is called by the "set" method', () => {
const onChange = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onChange })
global.mockRaf.step()
expect(onChange).toBeCalledTimes(1)
// During an animation:
spring.set(1)
expect(onChange).toBeCalledTimes(2)
expect(spring.idle).toBeTruthy()
// While idle:
spring.set(0)
expect(onChange).toBeCalledTimes(3)
// No-op calls are ignored:
spring.set(0)
expect(onChange).toBeCalledTimes(3)
})
describe('when active handler', () => {
it('is never called by the "set" method', () => {
const spring = new SpringValue(0)
const onChange = jest.fn()
spring.start(1, { onChange })
// Before first frame
spring.set(2)
expect(onChange).not.toBeCalled()
spring.start(1, { onChange })
global.mockRaf.step()
onChange.mockReset()
// Before last frame
spring.set(0)
expect(onChange).not.toBeCalled()
})
})
})
describe('the "onPause" event', () => {
it('is called by the "pause" method', () => {
const onPause = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onPause })
global.mockRaf.step()
spring.pause()
spring.pause() // noop
expect(onPause).toBeCalledTimes(1)
spring.resume()
spring.pause()
expect(onPause).toBeCalledTimes(2)
})
})
describe('the "onResume" event', () => {
it('is called by the "resume" method', () => {
const onResume = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onResume })
global.mockRaf.step()
spring.resume() // noop
expect(onResume).toBeCalledTimes(0)
spring.pause()
spring.resume()
expect(onResume).toBeCalledTimes(1)
})
})
describe('the "onRest" event', () => {
it('is called on the last frame', async () => {
const onRest = jest.fn()
new SpringValue({
from: 0,
to: 1,
onRest,
config: {
// The animation is 3 frames long.
duration: 3 * frameLength,
},
})
global.mockRaf.step()
global.mockRaf.step()
expect(onRest).not.toBeCalled()
global.mockRaf.step()
expect(onRest).toBeCalledTimes(1)
})
it('is called by the "stop" method', () => {
const onRest = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onRest })
global.mockRaf.step()
spring.stop()
expect(onRest).toBeCalledTimes(1)
expect(onRest.mock.calls[0][0]).toMatchObject({
value: spring.get(),
finished: false,
})
})
it('is called by the "finish" method', () => {
const onRest = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onRest })
global.mockRaf.step()
spring.finish()
expect(onRest).toBeCalledTimes(1)
expect(onRest.mock.calls[0][0]).toMatchObject({
value: 1,
finished: true,
})
})
it('is called when the "cancel" prop is true', () => {
const onRest = jest.fn()
const spring = new SpringValue({ from: 0, to: 1, onRest })
global.mockRaf.step()
spring.start({ cancel: true })
expect(onRest).toBeCalledTimes(1)
expect(onRest.mock.calls[0][0]).toMatchObject({
value: spring.get(),
cancelled: true,
})
})
it('is called after an async animation', async () => {
const onRest = jest.fn()
const spring = new SpringValue(0)
await spring.start({
to: () => {},
onRest,
})
expect(onRest).toBeCalledTimes(1)
expect(onRest.mock.calls[0][0]).toMatchObject({
value: spring.get(),
finished: true,
})
})
it('is called when immediate is set to true', async () => {
const onRest = jest.fn()
new SpringValue({
from: 0,
to: 1,
onRest,
immediate: true,
})
global.mockRaf.step()
expect(onRest).toBeCalledTimes(1)
})
})
}
function describeMethods() {
describe('"set" method', () => {
it('stops the active animation', async () => {
const spring = new SpringValue(0)
const promise = spring.start(1)
await global.advanceUntilValue(spring, 0.5)
const value = spring.get()
spring.set(2)
expect(spring.idle).toBeTruthy()
expect(await promise).toMatchObject({
finished: false,
value,
})
})
})
}
/** The minimum requirements for testing a dynamic target */
type OpaqueTarget = {
node: FrameValue
set: (value: number) => any
start: (value: number) => Promise<any>
reset: () => void
}
function describeTarget(name: string, create: (from: number) => OpaqueTarget) {
describe('when our target is ' + name, () => {
let target: OpaqueTarget
let spring: SpringValue
let observer: FluidObserver
beforeEach(() => {
target = create(1)
spring = new SpringValue(0)
// The target is not attached until the spring is observed.
addFluidObserver(spring, (observer = () => {}))
})
it('animates toward the current value', async () => {
spring.start({ to: target.node })
expect(spring.priority).toBeGreaterThan(target.node.priority)
expect(spring.animation).toMatchObject({
to: target.node,
toValues: null,
})
await global.advanceUntilIdle()
expect(spring.get()).toBe(target.node.get())
})
it.todo('preserves its "onRest" prop between animations')
it('can change its target while animating', async () => {
spring.start({ to: target.node })
await global.advanceUntilValue(spring, target.node.get() / 2)
spring.start(0)
expect(spring.priority).toBe(0)
expect(spring.animation).toMatchObject({
to: 0,
toValues: [0],
})
await global.advanceUntilIdle()
expect(spring.get()).toBe(0)
})
describe('when target is done animating', () => {
it('keeps animating until the target is reached', async () => {
spring.start({ to: target.node })
target.start(1.1)
await global.advanceUntil(() => target.node.idle)
expect(spring.idle).toBeFalsy()
await global.advanceUntilIdle()
expect(spring.idle).toBeTruthy()
expect(spring.get()).toBe(target.node.get())
})
})
describe('when target animates after we go idle', () => {
it('starts animating', async () => {
spring.start({ to: target.node })
await global.advanceUntil(() => spring.idle)
// Clear the frame cache.
global.getFrames(spring)
target.start(2)
await global.advanceUntilIdle()
expect(global.getFrames(spring).length).toBeGreaterThan(1)
expect(spring.get()).toBe(target.node.get())
})
})
describe('when target has its value set (not animated)', () => {
it('animates toward the new value', async () => {
spring.start({ to: target.node })
await global.advanceUntilIdle()
target.set(2)
await global.advanceUntilIdle()
expect(global.getFrames(spring).length).toBeGreaterThan(1)
expect(spring.get()).toBe(target.node.get())
})
})
describe('when target resets its animation', () => {
it('keeps animating', async () => {
spring.start({ to: target.node })
target.start(2)
await global.advanceUntilValue(target.node, 1.5)
expect(target.node.idle).toBeFalsy()
target.reset()
expect(target.node.get()).toBe(1)
await global.advanceUntilIdle()
const frames = global.getFrames(spring)
expect(frames.length).toBeGreaterThan(1)
expect(spring.get()).toBe(target.node.get())
})
})
// In the case of an Interpolation, staying attached will prevent
// garbage collection when an animation loop is active, which results
// in a memory leak since the Interpolation stays in the frameloop.
describe('when our last child is detached', () => {
it('detaches from the target', () => {
spring.start({ to: target.node })
// Expect the target node to be attached.
expect(hasFluidObserver(target.node, spring)).toBeTruthy()
// Remove the observer.
removeFluidObserver(spring, observer)
// Expect the target node to be detached.
expect(hasFluidObserver(target.node, spring)).toBeFalsy()
})
})
})
}
function describeGlobals() {
const defaults = { ...Globals }
const resetGlobals = () => Globals.assign(defaults)
describe('"skipAnimation" global', () => {
afterEach(resetGlobals)
it('should skip animations', async () => {
const spring = new SpringValue(0)
global.mockRaf.step()
spring.start(1)
expect(spring.get()).toEqual(0)
await global.advanceUntilIdle()
expect(spring.get()).toEqual(1)
Globals.assign({
skipAnimation: true,
})
spring.start(0)
expect(spring.get()).toEqual(0)
})
it('should skip to end even if delay is present', async () => {
const spring = new SpringValue(0)
global.mockRaf.step()
spring.start(1, { delay: 400 })
expect(spring.get()).toEqual(0)
await global.advanceUntilIdle()
expect(spring.get()).toEqual(1)
Globals.assign({
skipAnimation: true,
})
spring.start(0, {
delay: 400,
})
expect(spring.get()).toEqual(0)
})
it('still calls "onStart", "onChange", and "onRest" props', async () => {
const spring = new SpringValue(0)
const onStart = jest.fn()
const onChange = jest.fn()
const onRest = jest.fn()
Globals.assign({ skipAnimation: true })
await spring.start(1, { onStart, onChange, onRest })
expect(onStart).toBeCalledTimes(1)
expect(onChange).toBeCalledTimes(1)
expect(onRest).toBeCalledTimes(1)
})
})
}
function hasFluidObserver(target: any, observer: FluidObserver) {
const observers = getFluidObservers(target)
return !!observers && observers.has(observer)
}
|