Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip three iteration of rFA cycles and process queues in 4th iteration. #54

Merged
merged 1 commit into from
Jun 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions src/metal/engine.ts
Original file line number Diff line number Diff line change
@@ -12,10 +12,13 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
import { EngineInterface } from './interfaces';
import W from './window-proxy';

const NUM_SKIPPED_FRAMES = 3;

export class Engine implements EngineInterface {
private reads: Array<Function> = [];
private work: Array<Function> = [];
private running: Boolean = false;
private skipCounter: number = NUM_SKIPPED_FRAMES + 1;
scheduleRead(callback: Function) {
this.reads.unshift(callback);
this.run();
@@ -28,14 +31,18 @@ export class Engine implements EngineInterface {
if (!this.running) {
this.running = true;
W.rAF(() => {
this.running = false;
for (let i = 0, rlen = this.reads.length; i < rlen; i++) {
this.reads.pop()();
}
for (let i = 0, wlen = this.work.length; i < wlen; i++) {
this.work.pop()();
if (this.skipCounter > NUM_SKIPPED_FRAMES) {
this.skipCounter = 0;
for (let i = 0, rlen = this.reads.length; i < rlen; i++) {
this.reads.pop()();
}
for (let i = 0, wlen = this.work.length; i < wlen; i++) {
this.work.pop()();
}
}
this.skipCounter++;
if (this.work.length > 0 || this.reads.length > 0) {
this.running = false;
this.run();
}
});
3 changes: 2 additions & 1 deletion test/constants.js
Original file line number Diff line number Diff line change
@@ -4,7 +4,8 @@ const constants = {
RAF_THRESHOLD : 16,
SMALL: 5
},
ITEM_TO_OBSERVE: 5
ITEM_TO_OBSERVE: 5,
NUM_SKIPPED_FRAMES: 3
};


14 changes: 7 additions & 7 deletions test/headless/specs/intersection-observer.js
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ testModule('IntersectionObserver', class extends TestClass {
});
observer.observe(target);
})
.wait(50)
.wait(100)
.getExecution()
.evaluate(function() {
return window.STATE.impressions;
@@ -44,7 +44,7 @@ testModule('IntersectionObserver', class extends TestClass {
});
observer.observe(target);
})
.wait(50)
.wait(100)
.getExecution()
.evaluate(function() {
return window.STATE.impressions;
@@ -154,7 +154,7 @@ testModule('IntersectionObserver', class extends TestClass {
});
window.observer.observe(window.target);
})
.wait(50)
.wait(100)
.evaluate(function() {
window.observer.unobserve(window.target);
})
@@ -184,7 +184,7 @@ testModule('IntersectionObserver', class extends TestClass {
window.observer.observe(target2);
window.observer.observe(target3);
})
.wait(50)
.wait(100)
.evaluate(function() {
window.observer.disconnect();
})
@@ -214,15 +214,15 @@ testModule('IntersectionObserver', class extends TestClass {
window.observer.observe(target2);
window.observer.observe(target3);
})
.wait(50)
.wait(100)
.evaluate(function() {
window.observer.disconnect();
})
.wait(50)
.wait(100)
.evaluate(function() {
window.observer.observe(document.querySelector('.tracked-item[data-id="1"]'));
})
.wait(50)
.wait(100)
.scrollTo(500)
.wait(50)
.scrollTo(0)
4 changes: 2 additions & 2 deletions test/headless/specs/spaniel-observer.spec.js
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ testModule('SpanielObserver', class extends SpanielObserverTestClass {
}
['@test observing a visible element should fire after threshold time has passed']() {
return this.setupTest()
.wait(250)
.wait(300)
.getExecution()
.evaluate(function() {
return window.STATE.impressions;
@@ -64,7 +64,7 @@ testModule('SpanielObserver', class extends SpanielObserverTestClass {
.evaluate(function() {
window.observer.unobserve(window.target);
})
.wait(20)
.wait(100)
.getExecution()
.evaluate(function() {
return window.STATE.impressions === 1 && window.STATE.completes === 1;
8 changes: 4 additions & 4 deletions test/headless/specs/utilities.js
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ import {

import constants from './../../constants.js';

const { time: { RAF_THRESHOLD }, ITEM_TO_OBSERVE } = constants;
const { time: { RAF_THRESHOLD }, ITEM_TO_OBSERVE, NUM_SKIPPED_FRAMES } = constants;

testModule('elementSatisfiesRatio', class extends TestClass {
['@test passes true into callback when ratio satisfied']() {
@@ -79,11 +79,11 @@ testModule('Eventing', class extends TestClass {
});
})
.scrollTo(10)
.wait(RAF_THRESHOLD * 3)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.scrollTo(20)
.wait(RAF_THRESHOLD * 3)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.getExecution()
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.evaluate(function() {
return window.STATE.scrollEvents;
}).then(function(result) {
10 changes: 5 additions & 5 deletions test/headless/specs/watcher/exposed-event.spec.js
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ import {

import constants from './../../../constants.js';

const { time: { RAF_THRESHOLD }, ITEM_TO_OBSERVE } = constants;
const { time: { RAF_THRESHOLD }, ITEM_TO_OBSERVE, NUM_SKIPPED_FRAMES } = constants;

testModule('Watcher Exposed Event', class extends WatcherTestClass {
['@test should not fire if item is not exposed']() {
@@ -40,13 +40,13 @@ testModule('Watcher Exposed Event', class extends WatcherTestClass {
['@test should fire twice if moved in, out, and then back in viewport']() {
return this.context.scrollTo(100)
.scrollTo(140)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.scrollTo(120)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.scrollTo(0)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.scrollTo(50)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertEvent(ITEM_TO_OBSERVE, 'exposed', 2)
.done();
}
11 changes: 6 additions & 5 deletions test/headless/specs/watcher/impression-complete-event.spec.js
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ import {

import constants from './../../../constants.js';

const { time: { IMPRESSION_THRESHOLD, RAF_THRESHOLD }, ITEM_TO_OBSERVE } = constants;
const { time: { IMPRESSION_THRESHOLD, RAF_THRESHOLD }, ITEM_TO_OBSERVE, NUM_SKIPPED_FRAMES } = constants;

testModule('Impression Complete event', class extends WatcherTestClass {
['@test should not fire if item is not exposed']() {
@@ -47,6 +47,7 @@ testModule('Impression Complete event', class extends WatcherTestClass {
return this.context.scrollTo(200)
.wait(IMPRESSION_THRESHOLD + RAF_THRESHOLD * 4)
.scrollTo(0)
.wait(RAF_THRESHOLD * 3)
.assertOnce(ITEM_TO_OBSERVE, 'impression-complete')
.done();
}
@@ -55,7 +56,7 @@ testModule('Impression Complete event', class extends WatcherTestClass {
return this.context.scrollTo(200)
.wait(IMPRESSION_THRESHOLD + RAF_THRESHOLD * 4)
.unwatch(ITEM_TO_OBSERVE)
.wait(RAF_THRESHOLD * 2)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertOnce(ITEM_TO_OBSERVE, 'impression-complete')
.done();
}
@@ -64,9 +65,9 @@ testModule('Impression Complete event', class extends WatcherTestClass {
return this.context.scrollTo(150)
.wait(IMPRESSION_THRESHOLD * 5)
.scrollTo(0)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assert(function(e) {
return e.meta.duration >= 495 && e.meta.duration <= 545 && e.id === 5 && e.e === 'impression-complete';
return e.meta.duration >= ((IMPRESSION_THRESHOLD * 5) - (RAF_THRESHOLD * NUM_SKIPPED_FRAMES)) && e.meta.duration <= ((IMPRESSION_THRESHOLD * 5) + (RAF_THRESHOLD * NUM_SKIPPED_FRAMES)) && e.id === 5 && e.e === 'impression-complete';
}, 1)
.done();
}
@@ -90,7 +91,7 @@ testModule('Impression Complete event', class extends WatcherTestClass {
.scrollTo(250)
.wait(IMPRESSION_THRESHOLD + RAF_THRESHOLD * 4)
.scrollTo(0)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertEvent(ITEM_TO_OBSERVE, 'impression-complete', 2)
.done();
}
7 changes: 3 additions & 4 deletions test/headless/specs/watcher/impression-event.spec.js
Original file line number Diff line number Diff line change
@@ -12,12 +12,12 @@ import {

import constants from './../../../constants.js';

const { time: { IMPRESSION_THRESHOLD, RAF_THRESHOLD, SMALL }, ITEM_TO_OBSERVE } = constants;
const { time: { IMPRESSION_THRESHOLD, RAF_THRESHOLD, SMALL }, ITEM_TO_OBSERVE, NUM_SKIPPED_FRAMES } = constants;

testModule('Impression event', class extends WatcherTestClass {
['@test should not fire if item is exposed but not impressed']() {
return this.context.scrollTo(50)
.wait(RAF_THRESHOLD * 2)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertOnce(ITEM_TO_OBSERVE, 'exposed')
.assertNever(ITEM_TO_OBSERVE, 'impressed')
.assertOnce(ITEM_TO_OBSERVE, 'exposed')
@@ -34,7 +34,6 @@ testModule('Impression event', class extends WatcherTestClass {
return this.context.scrollTo(150)
.wait(RAF_THRESHOLD)
.scrollTo(250)
.wait(RAF_THRESHOLD)
.scrollTo(0)
.assertNever(ITEM_TO_OBSERVE, 'impressed').done();
}
@@ -66,7 +65,7 @@ testModule('Impression event', class extends WatcherTestClass {
.wait(RAF_THRESHOLD)
.assertNever(ITEM_TO_OBSERVE, 'impressed')
.scrollTo(200)
.wait(IMPRESSION_THRESHOLD + RAF_THRESHOLD)
.wait(IMPRESSION_THRESHOLD + RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertOnce(ITEM_TO_OBSERVE, 'impressed')
.done();
}
7 changes: 4 additions & 3 deletions test/headless/specs/watcher/visible-event.spec.js
Original file line number Diff line number Diff line change
@@ -12,12 +12,12 @@ import {

import constants from './../../../constants.js';

const { time: { RAF_THRESHOLD }, ITEM_TO_OBSERVE } = constants;
const { time: { RAF_THRESHOLD }, ITEM_TO_OBSERVE, NUM_SKIPPED_FRAMES } = constants;

testModule('Visible event', class extends WatcherTestClass {
['@test should not fire if item is exposed but not visible']() {
return this.context.scrollTo(50)
.wait(RAF_THRESHOLD * 2)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertOnce(ITEM_TO_OBSERVE, 'exposed')
.assertNever(ITEM_TO_OBSERVE, 'visible')
.done();
@@ -36,6 +36,7 @@ testModule('Visible event', class extends WatcherTestClass {
.scrollTo(300)
.wait(RAF_THRESHOLD * 5)
.scrollTo(250)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertOnce(ITEM_TO_OBSERVE, 'visible')
.done();
}
@@ -50,7 +51,7 @@ testModule('Visible event', class extends WatcherTestClass {
.scrollTo(10)
.wait(RAF_THRESHOLD * 5)
.scrollTo(200)
.wait(RAF_THRESHOLD)
.wait(RAF_THRESHOLD * NUM_SKIPPED_FRAMES)
.assertEvent(ITEM_TO_OBSERVE, 'visible', 2)
.done();
}
2 changes: 1 addition & 1 deletion test/setup/environment.js
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ var runTest = function(threshold, options) {
}
options = options || {};
var thresholds = [threshold];
var timeout = 50 + (options.timeout || 0);
var timeout = 100 + (options.timeout || 0);
var entries = [];
var target = options.target || document.createElement('div');
target.style.height = '10px';