Compare commits
17 Commits
Author | SHA1 | Date |
---|---|---|
|
e07834eaa8 | 7 years ago |
|
85a5e3b516 | 7 years ago |
|
042ab03616 | 7 years ago |
|
a6799108fd | 7 years ago |
|
1099e007c9 | 7 years ago |
|
ca4af11b16 | 7 years ago |
|
d7c80964bd | 7 years ago |
|
8aab2813da | 7 years ago |
|
38faff497c | 7 years ago |
|
f79fb485c6 | 7 years ago |
|
db42c28255 | 7 years ago |
|
c9801acce2 | 7 years ago |
|
b7e2b6d718 | 7 years ago |
|
9ee3fdcd80 | 7 years ago |
|
dc8af9284d | 7 years ago |
|
76f9af1349 | 7 years ago |
|
973194bcbe | 7 years ago |
@ -0,0 +1,2 @@ |
|||
/scss/.sass-cache |
|||
|
After Width: | Height: | Size: 251 KiB |
After Width: | Height: | Size: 25 KiB |
@ -0,0 +1,39 @@ |
|||
(function($) { |
|||
|
|||
$.fn.countup = function(params) { |
|||
// make sure dependency is present
|
|||
if (typeof CountUp !== 'function') { |
|||
console.error('countUp.js is a required dependency of countUp-jquery.js.'); |
|||
return; |
|||
} |
|||
|
|||
var defaults = { |
|||
startVal: 0, |
|||
decimals: 0, |
|||
duration: 2, |
|||
}; |
|||
|
|||
if (typeof params === 'number') { |
|||
defaults.endVal = params; |
|||
} |
|||
else if (typeof params === 'object') { |
|||
$.extend(defaults, params); |
|||
} |
|||
else { |
|||
console.error('countUp-jquery requires its argument to be either an object or number'); |
|||
return; |
|||
} |
|||
|
|||
this.each(function(i, elem) { |
|||
var countUp = new CountUp(elem, defaults.startVal, defaults.endVal, defaults.decimals, defaults.duration, defaults.options); |
|||
|
|||
countUp.start(); |
|||
}); |
|||
|
|||
|
|||
|
|||
return this; |
|||
|
|||
}; |
|||
|
|||
}(jQuery)); |
@ -0,0 +1,246 @@ |
|||
/* |
|||
|
|||
countUp.js |
|||
by @inorganik |
|||
|
|||
*/ |
|||
|
|||
// target = id of html element or var of previously selected html element where counting occurs
|
|||
// startVal = the value you want to begin at
|
|||
// endVal = the value you want to arrive at
|
|||
// decimals = number of decimal places, default 0
|
|||
// duration = duration of animation in seconds, default 2
|
|||
// options = optional object of options (see below)
|
|||
|
|||
var CountUp = function(target, startVal, endVal, decimals, duration, options) { |
|||
|
|||
var self = this; |
|||
self.version = function () { return '1.9.3'; }; |
|||
|
|||
// default options
|
|||
self.options = { |
|||
useEasing: true, // toggle easing
|
|||
useGrouping: true, // 1,000,000 vs 1000000
|
|||
separator: ',', // character to use as a separator
|
|||
decimal: '.', // character to use as a decimal
|
|||
easingFn: easeOutExpo, // optional custom easing function, default is Robert Penner's easeOutExpo
|
|||
formattingFn: formatNumber, // optional custom formatting function, default is formatNumber above
|
|||
prefix: '', // optional text before the result
|
|||
suffix: '', // optional text after the result
|
|||
numerals: [] // optionally pass an array of custom numerals for 0-9
|
|||
}; |
|||
|
|||
// extend default options with passed options object
|
|||
if (options && typeof options === 'object') { |
|||
for (var key in self.options) { |
|||
if (options.hasOwnProperty(key) && options[key] !== null) { |
|||
self.options[key] = options[key]; |
|||
} |
|||
} |
|||
} |
|||
|
|||
if (self.options.separator === '') { |
|||
self.options.useGrouping = false; |
|||
} |
|||
else { |
|||
// ensure the separator is a string (formatNumber assumes this)
|
|||
self.options.separator = '' + self.options.separator; |
|||
} |
|||
|
|||
// make sure requestAnimationFrame and cancelAnimationFrame are defined
|
|||
// polyfill for browsers without native support
|
|||
// by Opera engineer Erik Möller
|
|||
var lastTime = 0; |
|||
var vendors = ['webkit', 'moz', 'ms', 'o']; |
|||
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { |
|||
window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame']; |
|||
window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame']; |
|||
} |
|||
if (!window.requestAnimationFrame) { |
|||
window.requestAnimationFrame = function(callback, element) { |
|||
var currTime = new Date().getTime(); |
|||
var timeToCall = Math.max(0, 16 - (currTime - lastTime)); |
|||
var id = window.setTimeout(function() { callback(currTime + timeToCall); }, timeToCall); |
|||
lastTime = currTime + timeToCall; |
|||
return id; |
|||
}; |
|||
} |
|||
if (!window.cancelAnimationFrame) { |
|||
window.cancelAnimationFrame = function(id) { |
|||
clearTimeout(id); |
|||
}; |
|||
} |
|||
|
|||
function formatNumber(num) { |
|||
var neg = (num < 0), |
|||
x, x1, x2, x3, i, len; |
|||
num = Math.abs(num).toFixed(self.decimals); |
|||
num += ''; |
|||
x = num.split('.'); |
|||
x1 = x[0]; |
|||
x2 = x.length > 1 ? self.options.decimal + x[1] : ''; |
|||
if (self.options.useGrouping) { |
|||
x3 = ''; |
|||
for (i = 0, len = x1.length; i < len; ++i) { |
|||
if (i !== 0 && ((i % 3) === 0)) { |
|||
x3 = self.options.separator + x3; |
|||
} |
|||
x3 = x1[len - i - 1] + x3; |
|||
} |
|||
x1 = x3; |
|||
} |
|||
// optional numeral substitution
|
|||
if (self.options.numerals.length) { |
|||
x1 = x1.replace(/[0-9]/g, function(w) { |
|||
return self.options.numerals[+w]; |
|||
}) |
|||
x2 = x2.replace(/[0-9]/g, function(w) { |
|||
return self.options.numerals[+w]; |
|||
}) |
|||
} |
|||
return (neg ? '-' : '') + self.options.prefix + x1 + x2 + self.options.suffix; |
|||
} |
|||
// Robert Penner's easeOutExpo
|
|||
function easeOutExpo(t, b, c, d) { |
|||
return c * (-Math.pow(2, -10 * t / d) + 1) * 1024 / 1023 + b; |
|||
} |
|||
function ensureNumber(n) { |
|||
return (typeof n === 'number' && !isNaN(n)); |
|||
} |
|||
|
|||
self.initialize = function() { |
|||
if (self.initialized) return true; |
|||
|
|||
self.error = ''; |
|||
self.d = (typeof target === 'string') ? document.getElementById(target) : target; |
|||
if (!self.d) { |
|||
self.error = '[CountUp] target is null or undefined' |
|||
return false; |
|||
} |
|||
self.startVal = Number(startVal); |
|||
self.endVal = Number(endVal); |
|||
// error checks
|
|||
if (ensureNumber(self.startVal) && ensureNumber(self.endVal)) { |
|||
self.decimals = Math.max(0, decimals || 0); |
|||
self.dec = Math.pow(10, self.decimals); |
|||
self.duration = Number(duration) * 1000 || 2000; |
|||
self.countDown = (self.startVal > self.endVal); |
|||
self.frameVal = self.startVal; |
|||
self.initialized = true; |
|||
return true; |
|||
} |
|||
else { |
|||
self.error = '[CountUp] startVal ('+startVal+') or endVal ('+endVal+') is not a number'; |
|||
return false; |
|||
} |
|||
}; |
|||
|
|||
// Print value to target
|
|||
self.printValue = function(value) { |
|||
var result = self.options.formattingFn(value); |
|||
|
|||
if (self.d.tagName === 'INPUT') { |
|||
this.d.value = result; |
|||
} |
|||
else if (self.d.tagName === 'text' || self.d.tagName === 'tspan') { |
|||
this.d.textContent = result; |
|||
} |
|||
else { |
|||
this.d.innerHTML = result; |
|||
} |
|||
}; |
|||
|
|||
self.count = function(timestamp) { |
|||
|
|||
if (!self.startTime) { self.startTime = timestamp; } |
|||
|
|||
self.timestamp = timestamp; |
|||
var progress = timestamp - self.startTime; |
|||
self.remaining = self.duration - progress; |
|||
|
|||
// to ease or not to ease
|
|||
if (self.options.useEasing) { |
|||
if (self.countDown) { |
|||
self.frameVal = self.startVal - self.options.easingFn(progress, 0, self.startVal - self.endVal, self.duration); |
|||
} else { |
|||
self.frameVal = self.options.easingFn(progress, self.startVal, self.endVal - self.startVal, self.duration); |
|||
} |
|||
} else { |
|||
if (self.countDown) { |
|||
self.frameVal = self.startVal - ((self.startVal - self.endVal) * (progress / self.duration)); |
|||
} else { |
|||
self.frameVal = self.startVal + (self.endVal - self.startVal) * (progress / self.duration); |
|||
} |
|||
} |
|||
|
|||
// don't go past endVal since progress can exceed duration in the last frame
|
|||
if (self.countDown) { |
|||
self.frameVal = (self.frameVal < self.endVal) ? self.endVal : self.frameVal; |
|||
} else { |
|||
self.frameVal = (self.frameVal > self.endVal) ? self.endVal : self.frameVal; |
|||
} |
|||
|
|||
// decimal
|
|||
self.frameVal = Math.round(self.frameVal*self.dec)/self.dec; |
|||
|
|||
// format and print value
|
|||
self.printValue(self.frameVal); |
|||
|
|||
// whether to continue
|
|||
if (progress < self.duration) { |
|||
self.rAF = requestAnimationFrame(self.count); |
|||
} else { |
|||
if (self.callback) self.callback(); |
|||
} |
|||
}; |
|||
// start your animation
|
|||
self.start = function(callback) { |
|||
if (!self.initialize()) return; |
|||
self.callback = callback; |
|||
self.rAF = requestAnimationFrame(self.count); |
|||
}; |
|||
// toggles pause/resume animation
|
|||
self.pauseResume = function() { |
|||
if (!self.paused) { |
|||
self.paused = true; |
|||
cancelAnimationFrame(self.rAF); |
|||
} else { |
|||
self.paused = false; |
|||
delete self.startTime; |
|||
self.duration = self.remaining; |
|||
self.startVal = self.frameVal; |
|||
requestAnimationFrame(self.count); |
|||
} |
|||
}; |
|||
// reset to startVal so animation can be run again
|
|||
self.reset = function() { |
|||
self.paused = false; |
|||
delete self.startTime; |
|||
self.initialized = false; |
|||
if (self.initialize()) { |
|||
cancelAnimationFrame(self.rAF); |
|||
self.printValue(self.startVal); |
|||
} |
|||
}; |
|||
// pass a new endVal and start animation
|
|||
self.update = function (newEndVal) { |
|||
if (!self.initialize()) return; |
|||
newEndVal = Number(newEndVal); |
|||
if (!ensureNumber(newEndVal)) { |
|||
self.error = '[CountUp] update() - new endVal is not a number: '+newEndVal; |
|||
return; |
|||
} |
|||
self.error = ''; |
|||
if (newEndVal === self.frameVal) return; |
|||
cancelAnimationFrame(self.rAF); |
|||
self.paused = false; |
|||
delete self.startTime; |
|||
self.startVal = self.frameVal; |
|||
self.endVal = newEndVal; |
|||
self.countDown = (self.startVal > self.endVal); |
|||
self.rAF = requestAnimationFrame(self.count); |
|||
}; |
|||
|
|||
// format startVal on initialization
|
|||
if (self.initialize()) self.printValue(self.startVal); |
|||
}; |
After Width: | Height: | Size: 28 KiB |
@ -0,0 +1,61 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<style> |
|||
@keyframes pop-up{ |
|||
0% {transform: scale(0);} |
|||
10% {transform: scale(1);} |
|||
95% {transform: scale(1);} |
|||
100% {transform: scale(0);} |
|||
} |
|||
@keyframes fade{ |
|||
0% {opacity: 0;} |
|||
10% {opacity: 1;} |
|||
95% {opacity: 1;} |
|||
100% {opacity: 0;} |
|||
} |
|||
.anim { |
|||
animation: pop-up 6s ease-in 0s 1 normal; |
|||
transform: scale(0); |
|||
} |
|||
.box{ |
|||
width: 220px; |
|||
height: 220px; |
|||
} |
|||
.box div{ |
|||
position: absolute; |
|||
top: 110px; |
|||
left: 108px; |
|||
animation: fade 6s linear 0s 1 normal; |
|||
opacity: 0; |
|||
} |
|||
html, body{ |
|||
font-family: 'Open Sans', sans-serif; |
|||
font-size: 0.9em; |
|||
} |
|||
</style> |
|||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> |
|||
<script src="countUp-jquery.js"></script> |
|||
<script src="countUp.js"></script> |
|||
</head> |
|||
<body> |
|||
<main> |
|||
|
|||
<div class="box"> |
|||
<div id="count">0</div> |
|||
<img class="anim" src="loader.svg" /> |
|||
</div> |
|||
|
|||
</main> |
|||
|
|||
<script> |
|||
var numAnim = new CountUp("count", 0, 100, 0, 6); |
|||
if (!numAnim.error) { |
|||
numAnim.start(); |
|||
} else { |
|||
console.error(numAnim.error); |
|||
} |
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 434 KiB |
@ -0,0 +1,57 @@ |
|||
<div class="compatibility pattern"> |
|||
|
|||
<div class="row"> |
|||
<div class="col-12"> |
|||
<p class="font-14 font-bold text-upper text-red p-5">Analisi compatibilità del modulo</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row content"> |
|||
|
|||
<div class="col-4 user-sheet"> |
|||
<div class="avatar"><img src="<?= $BASE_URL;?>/images/avatar/luca.png"></div> |
|||
<div class="name">Luca</div> |
|||
<div class="rule">Stagista</div> |
|||
<p class="sheet-title">Modulo differenze culturali</p> |
|||
<div class="sheet-container"> |
|||
<p class="font-10 text-upper pt-3 pb-2">Compatibilità knowledge</p> |
|||
<div class="value"><div class="percent" data-percent="60"></div></div> |
|||
<p class="font-10 text-upper pt-3 pb-2">Impatto atteso del corso sulle performance</p> |
|||
<div class="value"><div class="percent" data-percent="40"></div></div> |
|||
<p class="font-10 text-upper pt-3 pb-2">Carico didattico sostenibile</p> |
|||
<div class="value"><div class="percent" data-percent="70"></div></div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-4 user-sheet"> |
|||
<div class="avatar"><img src="<?= $BASE_URL;?>/images/avatar/sara.png"></div> |
|||
<div class="name">Sarah</div> |
|||
<div class="rule">Venditore</div> |
|||
<p class="sheet-title">Modulo differenze culturali</p> |
|||
<div class="sheet-container"> |
|||
<p class="font-10 text-upper pt-3 pb-2">Compatibilità knowledge</p> |
|||
<div class="value"><div class="percent" data-percent="40"></div></div> |
|||
<p class="font-10 text-upper pt-3 pb-2">Impatto atteso del corso sulle performance</p> |
|||
<div class="value"><div class="percent" data-percent="90"></div></div> |
|||
<p class="font-10 text-upper pt-3 pb-2">Carico didattico sostenibile</p> |
|||
<div class="value"><div class="percent" data-percent="30"></div></div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
|
|||
<div class="row p-2"> |
|||
<div class="col-8 text-center"> |
|||
<button class="button big grey"><i class="fa fa-arrow-down pr-2"></i>Altre variabili</button> |
|||
</div> |
|||
</div> |
|||
<div class="row p-4"> |
|||
<div class="col-12 px-2"> |
|||
<button class="button big confirm">Avvia personalizzazione e attiva corso</button> |
|||
<button class="button big discard">Annulla</button> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 7.4 KiB |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 893 KiB |
After Width: | Height: | Size: 632 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 434 KiB |
After Width: | Height: | Size: 247 KiB |
@ -0,0 +1,33 @@ |
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
const compatibility = $('.compatibility') |
|||
const sheets = compatibility.find('.sheet-container') |
|||
const values = sheets.find('.value') |
|||
const confirm = compatibility.find('.button.confirm') |
|||
const loading = $('#dropLoading') |
|||
|
|||
values.each((index,elem)=>{ |
|||
const el = $(elem) |
|||
const percent = el.find('.percent') |
|||
const value = percent.data('percent')+'%' |
|||
|
|||
percent.animate({'width': value},500) |
|||
|
|||
}) |
|||
|
|||
confirm.on('click', ()=>{ |
|||
|
|||
loading.find('.text').text('Personalizzazione della formazione in corso ...') |
|||
loading.fadeIn() |
|||
timeout_trigger() |
|||
|
|||
setTimeout(()=>{ |
|||
loading.fadeOut(()=>{ |
|||
window.location='plans' |
|||
}) |
|||
},6500) |
|||
|
|||
}) |
|||
|
|||
}) |
@ -0,0 +1,83 @@ |
|||
|
|||
function allowDrop(ev) { |
|||
ev.preventDefault(); |
|||
} |
|||
|
|||
function drag(ev) { |
|||
ev.dataTransfer.setData("ID", ev.target.id) |
|||
$('.drop-action').addClass('drop-inactive') |
|||
$('.droppable').removeClass('drop-inactive').addClass('drop-active') |
|||
} |
|||
|
|||
function drop(ev) { |
|||
|
|||
ev.preventDefault(); |
|||
|
|||
const target = $(ev.currentTarget) |
|||
const overlay = $('#dropConfirm') |
|||
const loading = $('#dropLoading') |
|||
const discard = overlay.find('.discard') |
|||
const confirm = overlay.find('.confirm') |
|||
const data = ev.dataTransfer.getData("ID") |
|||
|
|||
let once = true |
|||
|
|||
|
|||
|
|||
overlay.fadeIn() |
|||
|
|||
discard.on('click',()=>{ |
|||
if(once){ |
|||
overlay.fadeOut() |
|||
once = false |
|||
} |
|||
}) |
|||
|
|||
confirm.on('click', ()=>{ |
|||
|
|||
const module = $('#'+data) |
|||
|
|||
if(once){ |
|||
|
|||
loading.find('.text').text('Analisi di compatibilità del modulo in corso ...') |
|||
overlay.fadeOut() |
|||
loading.fadeIn() |
|||
timeout_trigger() |
|||
|
|||
if(target.find('.modules-container').length){ |
|||
target.find('.modules-container').append('<div class="div-drag">'+module.text()+'</div>') |
|||
}else{ |
|||
$('.modules-container').append('<div class="div-drag">'+module.text()+'</div>') |
|||
} |
|||
|
|||
setTimeout(()=>{ |
|||
|
|||
loading.fadeOut() |
|||
window.location = 'compatibility' |
|||
},6800) |
|||
once = false |
|||
} |
|||
|
|||
}) |
|||
|
|||
} |
|||
|
|||
function dragLeave(ev) { |
|||
$('.drop-action').removeClass('drop-inactive') |
|||
$('.droppable').removeClass('drop-active') |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
$(document).keypress((event)=> { |
|||
if(event.which == 32){ |
|||
window.location = 'compatibility' |
|||
} |
|||
}) |
|||
}) |
|||
|
|||
|
|||
|
@ -0,0 +1,54 @@ |
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
const monitoring = $('.monitoring') |
|||
const smartwatch = monitoring.find('.smartwatch') |
|||
const clouds = monitoring.find('.cloud') |
|||
const content = smartwatch.find('.content') |
|||
const firstChild = content.find('.cloud').first() |
|||
|
|||
const delay = 1200 |
|||
let timer = 0 |
|||
let cloudCount = 0 |
|||
|
|||
const people = monitoring.find('.people') |
|||
const luca = monitoring.find('.people.luca') |
|||
const sarah = monitoring.find('.people.sarah') |
|||
const fabio = monitoring.find('.people.fabio') |
|||
const maria = monitoring.find('.people.mariaSel') |
|||
const lucia = monitoring.find('.people.lucia') |
|||
const paolo = monitoring.find('.people.paoloSel') |
|||
|
|||
luca.css({'top': '425px','left': '370px'}).fadeIn(400) |
|||
sarah.css({'top': '415px','left': '390px'}) |
|||
maria.css({'top': '180px','left': '135px'}) |
|||
fabio.css({'top': '150px','left': '110px'}) |
|||
lucia.css({'top': '285px','left': '300px'}) |
|||
paolo.css({'top': '205px','left': '300px'}).fadeIn(700) |
|||
|
|||
setTimeout(()=>{ |
|||
paolo.animate({'top': '260px','left': '395px'},2000) |
|||
}, delay) |
|||
|
|||
setTimeout(()=>{ |
|||
paolo.animate({'top': '275px','left': '420px'},1900) |
|||
}, delay*2) |
|||
|
|||
setTimeout(()=>{ |
|||
paolo.animate({'top': '245px','left': '390px'},1800) |
|||
}, delay*3) |
|||
|
|||
setTimeout(()=>{ |
|||
clouds.fadeIn() |
|||
$('#notify1')[0].play() |
|||
}, delay*6) |
|||
|
|||
|
|||
|
|||
|
|||
$('.next').on('click',()=> { |
|||
window.location = 'monitoring-seller' |
|||
}) |
|||
|
|||
}) |
|||
|
@ -0,0 +1,75 @@ |
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
const monitoring = $('.monitoring') |
|||
const phone = monitoring.find('.phone') |
|||
const clouds = monitoring.find('.cloud') |
|||
const content = phone.find('.content') |
|||
const action = content.find('.button') |
|||
const firstChild = content.find('.cloud').first() |
|||
|
|||
const delay = 1200 |
|||
let timer = 0 |
|||
let cloudCount = 0 |
|||
|
|||
const people = monitoring.find('.people') |
|||
const luca = monitoring.find('.people.luca') |
|||
const sarah = monitoring.find('.people.sarah') |
|||
const fabio = monitoring.find('.people.fabio') |
|||
const maria = monitoring.find('.people.maria') |
|||
const lucia = monitoring.find('.people.lucia') |
|||
const paolo = monitoring.find('.people.paolo') |
|||
|
|||
luca.css({'top': '425px','left': '370px'}) |
|||
sarah.css({'top': '415px','left': '390px'}).fadeIn() |
|||
maria.css({'top': '180px','left': '135px'}) |
|||
fabio.css({'top': '150px','left': '110px'}).fadeIn() |
|||
lucia.css({'top': '340px','left': '250px'}).fadeIn() |
|||
paolo.css({'top': '240px','left': '370px'}).fadeIn() |
|||
|
|||
setTimeout(()=>{ |
|||
paolo.fadeOut(800) |
|||
}, delay) |
|||
|
|||
setTimeout(()=>{ |
|||
lucia.fadeOut(800) |
|||
}, delay*2) |
|||
|
|||
setTimeout(()=>{ |
|||
fabio.fadeOut(800) |
|||
}, delay*3) |
|||
|
|||
setTimeout(()=>{ |
|||
|
|||
clouds.each((index,elem)=>{ |
|||
const el = $(elem) |
|||
|
|||
if(!el.hasClass('scroll')){ |
|||
$('#notify1')[0].play() |
|||
el.fadeIn(500) |
|||
} |
|||
}) |
|||
}, delay*6) |
|||
|
|||
|
|||
|
|||
action.on('click', (e)=>{ |
|||
|
|||
const elem = $(e.currentTarget) |
|||
const show = $('#' + elem.data('cloud')) |
|||
let offset = 0 |
|||
|
|||
$('#notify1')[0].play() |
|||
|
|||
show.fadeIn(400,()=>{ |
|||
if(show.hasClass('scroll')){ |
|||
offset = show.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
} |
|||
}) |
|||
|
|||
}) |
|||
|
|||
|
|||
}) |
|||
|
@ -0,0 +1,91 @@ |
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
const plans = $('.plans') |
|||
const phones = plans.find('.phone') |
|||
const clouds = plans.find('.cloud') |
|||
const videoOpener = plans.find('.video-opener') |
|||
|
|||
const delay = 1000 |
|||
let timer = 0 |
|||
|
|||
setTimeout(()=>{ |
|||
clouds.each((index,elem)=>{ |
|||
const el = $(elem) |
|||
timer = index*delay |
|||
|
|||
if(el.hasClass('empty') || el.hasClass('hidden')){ |
|||
timer -= delay |
|||
} |
|||
|
|||
if(!el.hasClass('hidden')){ |
|||
setTimeout(()=>{ |
|||
if(!el.hasClass('empty')){ |
|||
$('#notify1')[0].play() |
|||
} |
|||
el.fadeIn(500) |
|||
},timer) |
|||
} |
|||
}) |
|||
}, delay) |
|||
|
|||
|
|||
phones.each((index, phone)=>{ |
|||
|
|||
const content = $(phone).find('.content') |
|||
const actions = content.find('.button') |
|||
const firstChild = content.find('.cloud').first() |
|||
|
|||
actions.each((index, button)=>{ |
|||
|
|||
const action = $(button) |
|||
|
|||
action.on('click', (e)=>{ |
|||
|
|||
const elem = $(e.currentTarget) |
|||
const show = $('#' + elem.data('cloud')) |
|||
let offset = 0 |
|||
|
|||
$('#notify1')[0].play() |
|||
|
|||
show.fadeIn(400,()=>{ |
|||
if(show.hasClass('scroll')){ |
|||
offset = show.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
} |
|||
}) |
|||
|
|||
}) |
|||
|
|||
}) |
|||
|
|||
}) |
|||
|
|||
videoOpener.on('click', (e)=>{ |
|||
|
|||
const elem = $(e.currentTarget) |
|||
const show = $('#' + elem.data('video')) |
|||
const video = show.find('video') |
|||
const close = show.find('.video-close') |
|||
|
|||
show.fadeIn() |
|||
video.get(0).play() |
|||
|
|||
close.on('click', (e)=>{ |
|||
const elem = $(e.currentTarget) |
|||
const video = elem.siblings('video') |
|||
|
|||
video.get(0).pause() |
|||
elem.parent().fadeOut() |
|||
|
|||
}) |
|||
|
|||
}) |
|||
|
|||
|
|||
$('.next').on('click',()=> { |
|||
window.location = 'training-pull' |
|||
}) |
|||
|
|||
}) |
|||
|
@ -1,19 +1,49 @@ |
|||
function allowDrop(ev) { |
|||
ev.preventDefault(); |
|||
} |
|||
|
|||
function drag(ev) { |
|||
ev.dataTransfer.setData("text", ev.target.id); |
|||
|
|||
let counter = 0 |
|||
|
|||
function timeout_trigger(){ |
|||
|
|||
counter++ |
|||
|
|||
$('#dropLoading .count').text(counter + "%") |
|||
if(counter != 100) { |
|||
setTimeout('timeout_trigger()', 50) |
|||
}else{ |
|||
counter = 0 |
|||
} |
|||
|
|||
} |
|||
|
|||
function drop(ev) { |
|||
ev.preventDefault(); |
|||
|
|||
$(document).ready(()=>{ |
|||
for(let i=0; i<5; i++){ |
|||
setTimeout(()=>{ |
|||
$('header.red .text-white').fadeOut(200,()=>{ |
|||
$('header.red .text-white').fadeIn(500) |
|||
}) |
|||
},i*1000) |
|||
} |
|||
|
|||
$(document).keydown((event)=> { |
|||
// event.preventDefault()
|
|||
const content = $('.phone .content.focus') |
|||
const firstChild = content.find('.cloud').first() |
|||
let top = parseInt(firstChild.css('margin-top')) |
|||
|
|||
if(event.key == "ArrowUp"){ |
|||
top+=70 |
|||
} |
|||
if(event.key == "ArrowDown"){ |
|||
top-=70 |
|||
} |
|||
|
|||
var data = ev.dataTransfer.getData("text"); |
|||
var module = $('#'+data); |
|||
var parent = module.parent(); |
|||
firstChild.animate({'margin-top':top}) |
|||
|
|||
// parent.append($(module.get(0)));
|
|||
// ev.target.appendChild(module.get(0));
|
|||
console.log(module.text()); |
|||
} |
|||
}) |
|||
|
|||
$('.phone .content').on('click',(e)=>{ |
|||
$('.phone .content').removeClass('focus') |
|||
$(e.currentTarget).addClass('focus') |
|||
}) |
|||
}) |
|||
|
@ -0,0 +1,157 @@ |
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
const training = $('.training') |
|||
const phone = training.find('.phone') |
|||
const clouds = training.find('.cloud') |
|||
const input = phone.find('.input-field') |
|||
const content = phone.find('.content') |
|||
const firstChild = content.find('.cloud').first() |
|||
|
|||
const delay = 1000 |
|||
let timer = 0 |
|||
let cloudCount = 0 |
|||
|
|||
const people = training.find('.people') |
|||
const luca = training.find('.people.luca') |
|||
const sarah = training.find('.people.sarah') |
|||
const fabio = training.find('.people.fabio') |
|||
const maria = training.find('.people.mariaSel') |
|||
const lucia = training.find('.people.lucia') |
|||
const paolo = training.find('.people.paoloSel') |
|||
|
|||
luca.css({'top': '425px','left': '370px'}).fadeIn(400) |
|||
sarah.css({'top': '415px','left': '390px'}) |
|||
fabio.css({'top': '150px','left': '110px'}).fadeIn(600) |
|||
maria.css({'top': '180px','left': '135px'}) |
|||
lucia.css({'top': '345px','left': '250px'}).fadeIn(700) |
|||
paolo.css({'top': '250px','left': '390px'}) |
|||
|
|||
setTimeout(()=>{ |
|||
clouds.each((index,elem)=>{ |
|||
const el = $(elem) |
|||
timer = index*delay |
|||
|
|||
if(el.hasClass('empty') || el.hasClass('hidden')){ |
|||
timer -= delay |
|||
} |
|||
|
|||
if(!el.hasClass('hidden')){ |
|||
setTimeout(()=>{ |
|||
if(!el.hasClass('empty')){ |
|||
$('#notify1')[0].play() |
|||
} |
|||
el.fadeIn(500) |
|||
},timer) |
|||
} |
|||
}) |
|||
|
|||
|
|||
maria.fadeIn().animate({'top': '195px','left': '165px'},700) |
|||
|
|||
}, delay) |
|||
|
|||
|
|||
input.keypress((event)=> { |
|||
|
|||
if(event.which == 13){ |
|||
cloudCount++ |
|||
let newCloud = $('<div class="cloud right">' + input.val() + '</div>') |
|||
content.append(newCloud) |
|||
newCloud.fadeIn() |
|||
$('#notify1')[0].play() |
|||
input.val("") |
|||
|
|||
|
|||
setTimeout(()=>{ |
|||
switch(cloudCount){ |
|||
case 1: |
|||
|
|||
maria.animate({'top': '180px','left': '230px'},1000, ()=>{ |
|||
maria.animate({'top': '225px','left': '350px'},1500) |
|||
}) |
|||
|
|||
newCloud = $('<div class="cloud left">Dammi informazioni sulla nazionalità.</div>') |
|||
content.append(newCloud) |
|||
newCloud.fadeIn(400,()=>{ |
|||
offset = newCloud.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
}) |
|||
|
|||
$('#notify1')[0].play() |
|||
|
|||
$('.page-title').text('Richiesta informazioni') |
|||
|
|||
break; |
|||
|
|||
case 2: |
|||
newCloud = $('<div class="cloud left">Su cosa desideri informazioni?</div>') |
|||
content.append(newCloud) |
|||
|
|||
newCloud.fadeIn(400,()=>{ |
|||
offset = newCloud.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
}) |
|||
|
|||
newCloud = $('<div class="cloud empty">' + |
|||
'<button class="button dotted" onClick="btnClick(this)">Approccio</button>' + |
|||
'<button class="button dotted" onClick="btnClick(this)">Saluti</button>' + |
|||
'<button class="button dotted" onClick="btnClick(this)">Da evitare</button>' + |
|||
'<button class="button dotted" onClick="btnClick(this)">Altro</button>' + |
|||
'</div>') |
|||
|
|||
content.append(newCloud) |
|||
|
|||
newCloud.fadeIn(400,()=>{ |
|||
offset = newCloud.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
}) |
|||
|
|||
$('#notify1')[0].play() |
|||
break; |
|||
|
|||
} |
|||
},2000) |
|||
|
|||
} |
|||
|
|||
}) |
|||
|
|||
|
|||
$('.next').on('click',()=> { |
|||
window.location = 'training-push' |
|||
}) |
|||
|
|||
}) |
|||
|
|||
|
|||
function btnClick(event){ |
|||
|
|||
const content = $('.training .phone .content') |
|||
const firstChild = content.find('.cloud').first() |
|||
|
|||
newCloud = $('<div class="cloud right">' + $(event).text() + '</div>') |
|||
content.append(newCloud) |
|||
|
|||
newCloud.fadeIn(400,()=>{ |
|||
|
|||
offset = newCloud.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
|
|||
}) |
|||
|
|||
$('#notify1')[0].play() |
|||
|
|||
setTimeout(()=>{ |
|||
|
|||
newCloud = $('<div class="cloud left">Ricordati di non avvicinarti eccessivamente</div>') |
|||
content.append(newCloud) |
|||
newCloud.fadeIn(400,()=>{ |
|||
offset = newCloud.offset().top - content.offset().top - 20 |
|||
firstChild.animate({'margin-top': '-' + offset},400) |
|||
}) |
|||
|
|||
$('#notify1')[0].play() |
|||
|
|||
},2000) |
|||
} |
@ -0,0 +1,90 @@ |
|||
|
|||
$(document).ready(()=>{ |
|||
|
|||
const training = $('.training') |
|||
const phone = training.find('.phone') |
|||
const clouds = training.find('.cloud') |
|||
const input = phone.find('.input-field') |
|||
const content = phone.find('.content') |
|||
const firstChild = content.find('.cloud').first() |
|||
|
|||
const delay = 1000 |
|||
let timer = 0 |
|||
let cloudCount = 0 |
|||
|
|||
const people = training.find('.people') |
|||
const luca = training.find('.people.luca') |
|||
const sarah = training.find('.people.sarah') |
|||
const fabio = training.find('.people.fabio') |
|||
const maria = training.find('.people.maria') |
|||
const lucia = training.find('.people.lucia') |
|||
const paolo = training.find('.people.paolo') |
|||
|
|||
luca.css({'top': '425px','left': '370px'}) |
|||
sarah.css({'top': '415px','left': '390px'}).fadeIn(400) |
|||
maria.css({'top': '180px','left': '135px'}) |
|||
fabio.css({'top': '150px','left': '110px'}) |
|||
lucia.css({'top': '285px','left': '300px'}).fadeIn(700) |
|||
paolo.css({'top': '250px','left': '390px'}) |
|||
|
|||
setTimeout(()=>{ |
|||
clouds.each((index,elem)=>{ |
|||
const el = $(elem) |
|||
timer = index*delay |
|||
|
|||
if(el.hasClass('empty') || el.hasClass('hidden')){ |
|||
timer -= delay |
|||
} |
|||
|
|||
if(!el.hasClass('hidden')){ |
|||
setTimeout(()=>{ |
|||
if(!el.hasClass('empty')){ |
|||
$('#notify1')[0].play() |
|||
} |
|||
el.fadeIn(500) |
|||
},timer) |
|||
} |
|||
}) |
|||
|
|||
lucia.fadeIn().animate({'top': '345px','left': '250px'},700) |
|||
|
|||
}, delay) |
|||
|
|||
|
|||
input.keypress((event)=> { |
|||
|
|||
if(event.which == 13){ |
|||
cloudCount++ |
|||
let newCloud = $('<div class="cloud right">' + input.val() + '</div>') |
|||
content.append(newCloud) |
|||
newCloud.fadeIn() |
|||
$('#notify1')[0].play() |
|||
input.val("") |
|||
|
|||
|
|||
setTimeout(()=>{ |
|||
switch(cloudCount){ |
|||
case 1: |
|||
|
|||
newCloud = $('<div class="cloud left">Prendisole 192, Shirt 744.</div>') |
|||
content.append(newCloud) |
|||
newCloud.fadeIn(400) |
|||
|
|||
$('#notify1')[0].play() |
|||
|
|||
break; |
|||
|
|||
} |
|||
},2000) |
|||
|
|||
} |
|||
|
|||
}) |
|||
|
|||
|
|||
$('.next').on('click',()=> { |
|||
window.location = 'monitoring-intern' |
|||
}) |
|||
|
|||
}) |
|||
|
@ -0,0 +1,14 @@ |
|||
<div class="login pattern"> |
|||
<div class="head"></div> |
|||
<div class="content"> |
|||
<div class="full-middle"> |
|||
<form method="post" action="<?= $BASE_URL;?>/modules"> |
|||
<p class="font-10">Username</p> |
|||
<input type="text" class="input-login"> |
|||
<p class="font-10">Password</p> |
|||
<input type="password" class="input-login"> |
|||
<p align="right"><button class="button big confirm" type="submit">LOG IN</button></p> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
@ -0,0 +1,48 @@ |
|||
<div class="monitoring pattern"> |
|||
|
|||
<div class="row"> |
|||
<div class="col-12"> |
|||
<p class="font-14 p-5 page-title">COZe Monitora l'ambiente e invia informazioni contestuali per aumentare le prestazioni dei dipendenti</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row mb-5"> |
|||
<div class="col-10 mx-auto"> |
|||
<div class="row"> |
|||
<div class="col-8"> |
|||
<div class="store"> |
|||
<div class="people luca"></div> |
|||
<div class="people sarah"></div> |
|||
<div class="people fabio"></div> |
|||
<div class="people maria"></div> |
|||
<div class="people mariaSel"></div> |
|||
<div class="people lucia"></div> |
|||
<div class="people paolo"></div> |
|||
<div class="people paoloSel"></div> |
|||
</div> |
|||
</div> |
|||
<div class="col-4"> |
|||
<div class="smartwatch mx-auto" id="usr_luca"> |
|||
<div class="avatar"><img src="<?= $BASE_URL;?>/images/avatar/luca.png"></div> |
|||
<div class="name">Luca</div> |
|||
<div class="rule">Stagista</div> |
|||
<div class="content"> |
|||
<div class="cloud left hidden"> |
|||
Un cliente sta da tempo osservando un prodotto nella zona giacche, potrebbe aver bisogno di aiuto! |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
|
|||
<audio id="notify1"> |
|||
<source src="<?= $BASE_URL;?>/sounds/message.wav" type="audio/wav"> |
|||
</audio> |
|||
|
|||
<div class="next"><i class="fa fa-arrow-right"></i></div> |
@ -0,0 +1,60 @@ |
|||
<div class="monitoring pattern"> |
|||
|
|||
<div class="row"> |
|||
<div class="col-12"> |
|||
<p class="font-14 p-5 page-title">Lo store è vuoto – COZe propone al venditore momenti di formazione</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row mb-5"> |
|||
<div class="col-10 mx-auto"> |
|||
<div class="row"> |
|||
<div class="col-8"> |
|||
<div class="store"> |
|||
<div class="people luca"></div> |
|||
<div class="people sarah"></div> |
|||
<div class="people fabio"></div> |
|||
<div class="people maria"></div> |
|||
<div class="people mariaSel"></div> |
|||
<div class="people lucia"></div> |
|||
<div class="people paolo"></div> |
|||
<div class="people paoloSel"></div> |
|||
</div> |
|||
</div> |
|||
<div class="col-4"> |
|||
<div class="phone mx-auto" id="usr_sarah"> |
|||
<div class="avatar"><img src="<?= $BASE_URL;?>/images/avatar/sara.png"></div> |
|||
<div class="name">Sarah</div> |
|||
<div class="rule">Venditore</div> |
|||
<div class="content"> |
|||
<div class="cloud left hidden"> |
|||
Ciao Sarah, vorrei discutere con te dell'importanza di non rispondere a domande non fatte dal cliente (tema 3, regola 1) |
|||
</div> |
|||
<div class="cloud empty"> |
|||
<button class="button dotted" data-cloud="sarah_1">Ok</button> |
|||
</div> |
|||
|
|||
<div class="cloud left hidden scroll" id="sarah_1"> |
|||
<b>TEMA 3 COMPETENZE DI VENDITA - REGOLA#1<br><br> |
|||
Non rispondere a domande non fatte</b><br><br> |
|||
Il cliente chiede di un prodotto. È meglio limitarsi a domandare cosa il cliente voglia sapere del prodotto.<br> |
|||
<b>Ad esempio, colore, materiale, taglia.</b> |
|||
|
|||
<img src="<?= $BASE_URL;?>/images/photo-compare2.jpg" width="100%"> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
|
|||
<audio id="notify1"> |
|||
<source src="<?= $BASE_URL;?>/sounds/message.wav" type="audio/wav"> |
|||
</audio> |
|||
|
@ -0,0 +1 @@ |
|||
../mime/cli.js |
@ -0,0 +1,212 @@ |
|||
1.3.3 / 2016-05-02 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.1.11 |
|||
- deps: mime-db@~1.23.0 |
|||
* deps: negotiator@0.6.1 |
|||
- perf: improve `Accept` parsing speed |
|||
- perf: improve `Accept-Charset` parsing speed |
|||
- perf: improve `Accept-Encoding` parsing speed |
|||
- perf: improve `Accept-Language` parsing speed |
|||
|
|||
1.3.2 / 2016-03-08 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.1.10 |
|||
- Fix extension of `application/dash+xml` |
|||
- Update primary extension for `audio/mp4` |
|||
- deps: mime-db@~1.22.0 |
|||
|
|||
1.3.1 / 2016-01-19 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.1.9 |
|||
- deps: mime-db@~1.21.0 |
|||
|
|||
1.3.0 / 2015-09-29 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.1.7 |
|||
- deps: mime-db@~1.19.0 |
|||
* deps: negotiator@0.6.0 |
|||
- Fix including type extensions in parameters in `Accept` parsing |
|||
- Fix parsing `Accept` parameters with quoted equals |
|||
- Fix parsing `Accept` parameters with quoted semicolons |
|||
- Lazy-load modules from main entry point |
|||
- perf: delay type concatenation until needed |
|||
- perf: enable strict mode |
|||
- perf: hoist regular expressions |
|||
- perf: remove closures getting spec properties |
|||
- perf: remove a closure from media type parsing |
|||
- perf: remove property delete from media type parsing |
|||
|
|||
1.2.13 / 2015-09-06 |
|||
=================== |
|||
|
|||
* deps: mime-types@~2.1.6 |
|||
- deps: mime-db@~1.18.0 |
|||
|
|||
1.2.12 / 2015-07-30 |
|||
=================== |
|||
|
|||
* deps: mime-types@~2.1.4 |
|||
- deps: mime-db@~1.16.0 |
|||
|
|||
1.2.11 / 2015-07-16 |
|||
=================== |
|||
|
|||
* deps: mime-types@~2.1.3 |
|||
- deps: mime-db@~1.15.0 |
|||
|
|||
1.2.10 / 2015-07-01 |
|||
=================== |
|||
|
|||
* deps: mime-types@~2.1.2 |
|||
- deps: mime-db@~1.14.0 |
|||
|
|||
1.2.9 / 2015-06-08 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.1.1 |
|||
- perf: fix deopt during mapping |
|||
|
|||
1.2.8 / 2015-06-07 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.1.0 |
|||
- deps: mime-db@~1.13.0 |
|||
* perf: avoid argument reassignment & argument slice |
|||
* perf: avoid negotiator recursive construction |
|||
* perf: enable strict mode |
|||
* perf: remove unnecessary bitwise operator |
|||
|
|||
1.2.7 / 2015-05-10 |
|||
================== |
|||
|
|||
* deps: negotiator@0.5.3 |
|||
- Fix media type parameter matching to be case-insensitive |
|||
|
|||
1.2.6 / 2015-05-07 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.11 |
|||
- deps: mime-db@~1.9.1 |
|||
* deps: negotiator@0.5.2 |
|||
- Fix comparing media types with quoted values |
|||
- Fix splitting media types with quoted commas |
|||
|
|||
1.2.5 / 2015-03-13 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.10 |
|||
- deps: mime-db@~1.8.0 |
|||
|
|||
1.2.4 / 2015-02-14 |
|||
================== |
|||
|
|||
* Support Node.js 0.6 |
|||
* deps: mime-types@~2.0.9 |
|||
- deps: mime-db@~1.7.0 |
|||
* deps: negotiator@0.5.1 |
|||
- Fix preference sorting to be stable for long acceptable lists |
|||
|
|||
1.2.3 / 2015-01-31 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.8 |
|||
- deps: mime-db@~1.6.0 |
|||
|
|||
1.2.2 / 2014-12-30 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.7 |
|||
- deps: mime-db@~1.5.0 |
|||
|
|||
1.2.1 / 2014-12-30 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.5 |
|||
- deps: mime-db@~1.3.1 |
|||
|
|||
1.2.0 / 2014-12-19 |
|||
================== |
|||
|
|||
* deps: negotiator@0.5.0 |
|||
- Fix list return order when large accepted list |
|||
- Fix missing identity encoding when q=0 exists |
|||
- Remove dynamic building of Negotiator class |
|||
|
|||
1.1.4 / 2014-12-10 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.4 |
|||
- deps: mime-db@~1.3.0 |
|||
|
|||
1.1.3 / 2014-11-09 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.3 |
|||
- deps: mime-db@~1.2.0 |
|||
|
|||
1.1.2 / 2014-10-14 |
|||
================== |
|||
|
|||
* deps: negotiator@0.4.9 |
|||
- Fix error when media type has invalid parameter |
|||
|
|||
1.1.1 / 2014-09-28 |
|||
================== |
|||
|
|||
* deps: mime-types@~2.0.2 |
|||
- deps: mime-db@~1.1.0 |
|||
* deps: negotiator@0.4.8 |
|||
- Fix all negotiations to be case-insensitive |
|||
- Stable sort preferences of same quality according to client order |
|||
|
|||
1.1.0 / 2014-09-02 |
|||
================== |
|||
|
|||
* update `mime-types` |
|||
|
|||
1.0.7 / 2014-07-04 |
|||
================== |
|||
|
|||
* Fix wrong type returned from `type` when match after unknown extension |
|||
|
|||
1.0.6 / 2014-06-24 |
|||
================== |
|||
|
|||
* deps: negotiator@0.4.7 |
|||
|
|||
1.0.5 / 2014-06-20 |
|||
================== |
|||
|
|||
* fix crash when unknown extension given |
|||
|
|||
1.0.4 / 2014-06-19 |
|||
================== |
|||
|
|||
* use `mime-types` |
|||
|
|||
1.0.3 / 2014-06-11 |
|||
================== |
|||
|
|||
* deps: negotiator@0.4.6 |
|||
- Order by specificity when quality is the same |
|||
|
|||
1.0.2 / 2014-05-29 |
|||
================== |
|||
|
|||
* Fix interpretation when header not in request |
|||
* deps: pin negotiator@0.4.5 |
|||
|
|||
1.0.1 / 2014-01-18 |
|||
================== |
|||
|
|||
* Identity encoding isn't always acceptable |
|||
* deps: negotiator@~0.4.0 |
|||
|
|||
1.0.0 / 2013-12-27 |
|||
================== |
|||
|
|||
* Genesis |
@ -0,0 +1,23 @@ |
|||
(The MIT License) |
|||
|
|||
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com> |
|||
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com> |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining |
|||
a copy of this software and associated documentation files (the |
|||
'Software'), to deal in the Software without restriction, including |
|||
without limitation the rights to use, copy, modify, merge, publish, |
|||
distribute, sublicense, and/or sell copies of the Software, and to |
|||
permit persons to whom the Software is furnished to do so, subject to |
|||
the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be |
|||
included in all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, |
|||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
|||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
|||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
|||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
|||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,135 @@ |
|||
# accepts |
|||
|
|||
[![NPM Version][npm-image]][npm-url] |
|||
[![NPM Downloads][downloads-image]][downloads-url] |
|||
[![Node.js Version][node-version-image]][node-version-url] |
|||
[![Build Status][travis-image]][travis-url] |
|||
[![Test Coverage][coveralls-image]][coveralls-url] |
|||
|
|||
Higher level content negotiation based on [negotiator](https://www.npmjs.com/package/negotiator). Extracted from [koa](https://www.npmjs.com/package/koa) for general use. |
|||
|
|||
In addition to negotiator, it allows: |
|||
|
|||
- Allows types as an array or arguments list, ie `(['text/html', 'application/json'])` as well as `('text/html', 'application/json')`. |
|||
- Allows type shorthands such as `json`. |
|||
- Returns `false` when no types match |
|||
- Treats non-existent headers as `*` |
|||
|
|||
## Installation |
|||
|
|||
```sh |
|||
npm install accepts |
|||
``` |
|||
|
|||
## API |
|||
|
|||
```js |
|||
var accepts = require('accepts') |
|||
``` |
|||
|
|||
### accepts(req) |
|||
|
|||
Create a new `Accepts` object for the given `req`. |
|||
|
|||
#### .charset(charsets) |
|||
|
|||
Return the first accepted charset. If nothing in `charsets` is accepted, |
|||
then `false` is returned. |
|||
|
|||
#### .charsets() |
|||
|
|||
Return the charsets that the request accepts, in the order of the client's |
|||
preference (most preferred first). |
|||
|
|||
#### .encoding(encodings) |
|||
|
|||
Return the first accepted encoding. If nothing in `encodings` is accepted, |
|||
then `false` is returned. |
|||
|
|||
#### .encodings() |
|||
|
|||
Return the encodings that the request accepts, in the order of the client's |
|||
preference (most preferred first). |
|||
|
|||
#### .language(languages) |
|||
|
|||
Return the first accepted language. If nothing in `languages` is accepted, |
|||
then `false` is returned. |
|||
|
|||
#### .languages() |
|||
|
|||
Return the languages that the request accepts, in the order of the client's |
|||
preference (most preferred first). |
|||
|
|||
#### .type(types) |
|||
|
|||
Return the first accepted type (and it is returned as the same text as what |
|||
appears in the `types` array). If nothing in `types` is accepted, then `false` |
|||
is returned. |
|||
|
|||
The `types` array can contain full MIME types or file extensions. Any value |
|||
that is not a full MIME types is passed to `require('mime-types').lookup`. |
|||
|
|||
#### .types() |
|||
|
|||
Return the types that the request accepts, in the order of the client's |
|||
preference (most preferred first). |
|||
|
|||
## Examples |
|||
|
|||
### Simple type negotiation |
|||
|
|||
This simple example shows how to use `accepts` to return a different typed |
|||
respond body based on what the client wants to accept. The server lists it's |
|||
preferences in order and will get back the best match between the client and |
|||
server. |
|||
|
|||
```js |
|||
var accepts = require('accepts') |
|||
var http = require('http') |
|||
|
|||
function app(req, res) { |
|||
var accept = accepts(req) |
|||
|
|||
// the order of this list is significant; should be server preferred order |
|||
switch(accept.type(['json', 'html'])) { |
|||
case 'json': |
|||
res.setHeader('Content-Type', 'application/json') |
|||
res.write('{"hello":"world!"}') |
|||
break |
|||
case 'html': |
|||
res.setHeader('Content-Type', 'text/html') |
|||
res.write('<b>hello, world!</b>') |
|||
break |
|||
default: |
|||
// the fallback is text/plain, so no need to specify it above |
|||
res.setHeader('Content-Type', 'text/plain') |
|||
res.write('hello, world!') |
|||
break |
|||
} |
|||
|
|||
res.end() |
|||
} |
|||
|
|||
http.createServer(app).listen(3000) |
|||
``` |
|||
|
|||
You can test this out with the cURL program: |
|||
```sh |
|||
curl -I -H'Accept: text/html' http://localhost:3000/ |
|||
``` |
|||
|
|||
## License |
|||
|
|||
[MIT](LICENSE) |
|||
|
|||
[npm-image]: https://img.shields.io/npm/v/accepts.svg |
|||
[npm-url]: https://npmjs.org/package/accepts |
|||
[node-version-image]: https://img.shields.io/node/v/accepts.svg |
|||
[node-version-url]: http://nodejs.org/download/ |
|||
[travis-image]: https://img.shields.io/travis/jshttp/accepts/master.svg |
|||
[travis-url]: https://travis-ci.org/jshttp/accepts |
|||
[coveralls-image]: https://img.shields.io/coveralls/jshttp/accepts/master.svg |
|||
[coveralls-url]: https://coveralls.io/r/jshttp/accepts |
|||
[downloads-image]: https://img.shields.io/npm/dm/accepts.svg |
|||
[downloads-url]: https://npmjs.org/package/accepts |
@ -0,0 +1,231 @@ |
|||
/*! |
|||
* accepts |
|||
* Copyright(c) 2014 Jonathan Ong |
|||
* Copyright(c) 2015 Douglas Christopher Wilson |
|||
* MIT Licensed |
|||
*/ |
|||
|
|||
'use strict' |
|||
|
|||
/** |
|||
* Module dependencies. |
|||
* @private |
|||
*/ |
|||
|
|||
var Negotiator = require('negotiator') |
|||
var mime = require('mime-types') |
|||
|
|||
/** |
|||
* Module exports. |
|||
* @public |
|||
*/ |
|||
|
|||
module.exports = Accepts |
|||
|
|||
/** |
|||
* Create a new Accepts object for the given req. |
|||
* |
|||
* @param {object} req |
|||
* @public |
|||
*/ |
|||
|
|||
function Accepts(req) { |
|||
if (!(this instanceof Accepts)) |
|||
return new Accepts(req) |
|||
|
|||
this.headers = req.headers |
|||
this.negotiator = new Negotiator(req) |
|||
} |
|||
|
|||
/** |
|||
* Check if the given `type(s)` is acceptable, returning |
|||
* the best match when true, otherwise `undefined`, in which |
|||
* case you should respond with 406 "Not Acceptable". |
|||
* |
|||
* The `type` value may be a single mime type string |
|||
* such as "application/json", the extension name |
|||
* such as "json" or an array `["json", "html", "text/plain"]`. When a list |
|||
* or array is given the _best_ match, if any is returned. |
|||
* |
|||
* Examples: |
|||
* |
|||
* // Accept: text/html
|
|||
* this.types('html'); |
|||
* // => "html"
|
|||
* |
|||
* // Accept: text/*, application/json
|
|||
* this.types('html'); |
|||
* // => "html"
|
|||
* this.types('text/html'); |
|||
* // => "text/html"
|
|||
* this.types('json', 'text'); |
|||
* // => "json"
|
|||
* this.types('application/json'); |
|||
* // => "application/json"
|
|||
* |
|||
* // Accept: text/*, application/json
|
|||
* this.types('image/png'); |
|||
* this.types('png'); |
|||
* // => undefined
|
|||
* |
|||
* // Accept: text/*;q=.5, application/json
|
|||
* this.types(['html', 'json']); |
|||
* this.types('html', 'json'); |
|||
* // => "json"
|
|||
* |
|||
* @param {String|Array} types... |
|||
* @return {String|Array|Boolean} |
|||
* @public |
|||
*/ |
|||
|
|||
Accepts.prototype.type = |
|||
Accepts.prototype.types = function (types_) { |
|||
var types = types_ |
|||
|
|||
// support flattened arguments
|
|||
if (types && !Array.isArray(types)) { |
|||
types = new Array(arguments.length) |
|||
for (var i = 0; i < types.length; i++) { |
|||
types[i] = arguments[i] |
|||
} |
|||
} |
|||
|
|||
// no types, return all requested types
|
|||
if (!types || types.length === 0) { |
|||
return this.negotiator.mediaTypes() |
|||
} |
|||
|
|||
if (!this.headers.accept) return types[0]; |
|||
var mimes = types.map(extToMime); |
|||
var accepts = this.negotiator.mediaTypes(mimes.filter(validMime)); |
|||
var first = accepts[0]; |
|||
if (!first) return false; |
|||
return types[mimes.indexOf(first)]; |
|||
} |
|||
|
|||
/** |
|||
* Return accepted encodings or best fit based on `encodings`. |
|||
* |
|||
* Given `Accept-Encoding: gzip, deflate` |
|||
* an array sorted by quality is returned: |
|||
* |
|||
* ['gzip', 'deflate'] |
|||
* |
|||
* @param {String|Array} encodings... |
|||
* @return {String|Array} |
|||
* @public |
|||
*/ |
|||
|
|||
Accepts.prototype.encoding = |
|||
Accepts.prototype.encodings = function (encodings_) { |
|||
var encodings = encodings_ |
|||
|
|||
// support flattened arguments
|
|||
if (encodings && !Array.isArray(encodings)) { |
|||
encodings = new Array(arguments.length) |
|||
for (var i = 0; i < encodings.length; i++) { |
|||
encodings[i] = arguments[i] |
|||
} |
|||
} |
|||
|
|||
// no encodings, return all requested encodings
|
|||
if (!encodings || encodings.length === 0) { |
|||
return this.negotiator.encodings() |
|||
} |
|||
|
|||
return this.negotiator.encodings(encodings)[0] || false |
|||
} |
|||
|
|||
/** |
|||
* Return accepted charsets or best fit based on `charsets`. |
|||
* |
|||
* Given `Accept-Charset: utf-8, iso-8859-1;q=0.2, utf-7;q=0.5` |
|||
* an array sorted by quality is returned: |
|||
* |
|||
* ['utf-8', 'utf-7', 'iso-8859-1'] |
|||
* |
|||
* @param {String|Array} charsets... |
|||
* @return {String|Array} |
|||
* @public |
|||
*/ |
|||
|
|||
Accepts.prototype.charset = |
|||
Accepts.prototype.charsets = function (charsets_) { |
|||
var charsets = charsets_ |
|||
|
|||
// support flattened arguments
|
|||
if (charsets && !Array.isArray(charsets)) { |
|||
charsets = new Array(arguments.length) |
|||
for (var i = 0; i < charsets.length; i++) { |
|||
charsets[i] = arguments[i] |
|||
} |
|||
} |
|||
|
|||
// no charsets, return all requested charsets
|
|||
if (!charsets || charsets.length === 0) { |
|||
return this.negotiator.charsets() |
|||
} |
|||
|
|||
return this.negotiator.charsets(charsets)[0] || false |
|||
} |
|||
|
|||
/** |
|||
* Return accepted languages or best fit based on `langs`. |
|||
* |
|||
* Given `Accept-Language: en;q=0.8, es, pt` |
|||
* an array sorted by quality is returned: |
|||
* |
|||
* ['es', 'pt', 'en'] |
|||
* |
|||
* @param {String|Array} langs... |
|||
* @return {Array|String} |
|||
* @public |
|||
*/ |
|||
|
|||
Accepts.prototype.lang = |
|||
Accepts.prototype.langs = |
|||
Accepts.prototype.language = |
|||
Accepts.prototype.languages = function (languages_) { |
|||
var languages = languages_ |
|||
|
|||
// support flattened arguments
|
|||
if (languages && !Array.isArray(languages)) { |
|||
languages = new Array(arguments.length) |
|||
for (var i = 0; i < languages.length; i++) { |
|||
languages[i] = arguments[i] |
|||
} |
|||
} |
|||
|
|||
// no languages, return all requested languages
|
|||
if (!languages || languages.length === 0) { |
|||
return this.negotiator.languages() |
|||
} |
|||
|
|||
return this.negotiator.languages(languages)[0] || false |
|||
} |
|||
|
|||
/** |
|||
* Convert extnames to mime. |
|||
* |
|||
* @param {String} type |
|||
* @return {String} |
|||
* @private |
|||
*/ |
|||
|
|||
function extToMime(type) { |
|||
return type.indexOf('/') === -1 |
|||
? mime.lookup(type) |
|||
: type |
|||
} |
|||
|
|||
/** |
|||
* Check if mime is valid. |
|||
* |
|||
* @param {String} type |
|||
* @return {String} |
|||
* @private |
|||
*/ |
|||
|
|||
function validMime(type) { |
|||
return typeof type === 'string'; |
|||
} |
@ -0,0 +1,77 @@ |
|||
{ |
|||
"_from": "accepts@1.3.3", |
|||
"_id": "accepts@1.3.3", |
|||
"_inBundle": false, |
|||
"_integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", |
|||
"_location": "/accepts", |
|||
"_phantomChildren": {}, |
|||
"_requested": { |
|||
"type": "version", |
|||
"registry": true, |
|||
"raw": "accepts@1.3.3", |
|||
"name": "accepts", |
|||
"escapedName": "accepts", |
|||
"rawSpec": "1.3.3", |
|||
"saveSpec": null, |
|||
"fetchSpec": "1.3.3" |
|||
}, |
|||
"_requiredBy": [ |
|||
"/engine.io" |
|||
], |
|||
"_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", |
|||
"_shasum": "c3ca7434938648c3e0d9c1e328dd68b622c284ca", |
|||
"_spec": "accepts@1.3.3", |
|||
"_where": "/var/www/htdocs/coze/node_modules/engine.io", |
|||
"bugs": { |
|||
"url": "https://github.com/jshttp/accepts/issues" |
|||
}, |
|||
"bundleDependencies": false, |
|||
"contributors": [ |
|||
{ |
|||
"name": "Douglas Christopher Wilson", |
|||
"email": "doug@somethingdoug.com" |
|||
}, |
|||
{ |
|||
"name": "Jonathan Ong", |
|||
"email": "me@jongleberry.com", |
|||
"url": "http://jongleberry.com" |
|||
} |
|||
], |
|||
"dependencies": { |
|||
"mime-types": "~2.1.11", |
|||
"negotiator": "0.6.1" |
|||
}, |
|||
"deprecated": false, |
|||
"description": "Higher-level content negotiation", |
|||
"devDependencies": { |
|||
"istanbul": "0.4.3", |
|||
"mocha": "~1.21.5" |
|||
}, |
|||
"engines": { |
|||
"node": ">= 0.6" |
|||
}, |
|||
"files": [ |
|||
"LICENSE", |
|||
"HISTORY.md", |
|||
"index.js" |
|||
], |
|||
"homepage": "https://github.com/jshttp/accepts#readme", |
|||
"keywords": [ |
|||
"content", |
|||
"negotiation", |
|||
"accept", |
|||
"accepts" |
|||
], |
|||
"license": "MIT", |
|||
"name": "accepts", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+https://github.com/jshttp/accepts.git" |
|||
}, |
|||
"scripts": { |
|||
"test": "mocha --reporter spec --check-leaks --bail test/", |
|||
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", |
|||
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" |
|||
}, |
|||
"version": "1.3.3" |
|||
} |
@ -0,0 +1,2 @@ |
|||
node_modules |
|||
.monitor |
@ -0,0 +1,12 @@ |
|||
language: node_js |
|||
node_js: |
|||
- 0.6 |
|||
- 0.8 |
|||
- 0.9 |
|||
- 0.10 |
|||
- 0.12 |
|||
- 4.2.4 |
|||
- 5.4.1 |
|||
- iojs-1 |
|||
- iojs-2 |
|||
- iojs-3 |
@ -0,0 +1,19 @@ |
|||
Copyright (c) 2011 Raynos. |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy |
|||
of this software and associated documentation files (the "Software"), to deal |
|||
in the Software without restriction, including without limitation the rights |
|||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|||
copies of the Software, and to permit persons to whom the Software is |
|||
furnished to do so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in |
|||
all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|||
THE SOFTWARE. |
@ -0,0 +1,115 @@ |
|||
# After [![Build Status][1]][2] |
|||
|
|||
Invoke callback after n calls |
|||
|
|||
## Status: production ready |
|||
|
|||
## Example |
|||
|
|||
```js |
|||
var after = require("after") |
|||
var db = require("./db") // some db. |
|||
|
|||
var updateUser = function (req, res) { |
|||
// use after to run two tasks in parallel, |
|||
// namely get request body and get session |
|||
// then run updateUser with the results |
|||
var next = after(2, updateUser) |
|||
var results = {} |
|||
|
|||
getJSONBody(req, res, function (err, body) { |
|||
if (err) return next(err) |
|||
|
|||
results.body = body |
|||
next(null, results) |
|||
}) |
|||
|
|||
getSessionUser(req, res, function (err, user) { |
|||
if (err) return next(err) |
|||
|
|||
results.user = user |
|||
next(null, results) |
|||
}) |
|||
|
|||
// now do the thing! |
|||
function updateUser(err, result) { |
|||
if (err) { |
|||
res.statusCode = 500 |
|||
return res.end("Unexpected Error") |
|||
} |
|||
|
|||
if (!result.user || result.user.role !== "admin") { |
|||
res.statusCode = 403 |
|||
return res.end("Permission Denied") |
|||
} |
|||
|
|||
db.put("users:" + req.params.userId, result.body, function (err) { |
|||
if (err) { |
|||
res.statusCode = 500 |
|||
return res.end("Unexpected Error") |
|||
} |
|||
|
|||
res.statusCode = 200 |
|||
res.end("Ok") |
|||
}) |
|||
} |
|||
} |
|||
``` |
|||
|
|||
## Naive Example |
|||
|
|||
```js |
|||
var after = require("after") |
|||
, next = after(3, logItWorks) |
|||
|
|||
next() |
|||
next() |
|||
next() // it works |
|||
|
|||
function logItWorks() { |
|||
console.log("it works!") |
|||
} |
|||
``` |
|||
|
|||
## Example with error handling |
|||
|
|||
```js |
|||
var after = require("after") |
|||
, next = after(3, logError) |
|||
|
|||
next() |
|||
next(new Error("oops")) // logs oops |
|||
next() // does nothing |
|||
|
|||
// This callback is only called once. |
|||
// If there is an error the callback gets called immediately |
|||
// this avoids the situation where errors get lost. |
|||
function logError(err) { |
|||
console.log(err) |
|||
} |
|||
``` |
|||
|
|||
## Installation |
|||
|
|||
`npm install after` |
|||
|
|||
## Tests |
|||
|
|||
`npm test` |
|||
|
|||
## Contributors |
|||
|
|||
- Raynos |
|||
- defunctzombie |
|||
|
|||
## MIT Licenced |
|||
|
|||
[1]: https://secure.travis-ci.org/Raynos/after.png |
|||
[2]: http://travis-ci.org/Raynos/after |
|||
[3]: http://raynos.org/blog/2/Flow-control-in-node.js |
|||
[4]: http://stackoverflow.com/questions/6852059/determining-the-end-of-asynchronous-operations-javascript/6852307#6852307 |
|||
[5]: http://stackoverflow.com/questions/6869872/in-javascript-what-are-best-practices-for-executing-multiple-asynchronous-functi/6870031#6870031 |
|||
[6]: http://stackoverflow.com/questions/6864397/javascript-performance-long-running-tasks/6889419#6889419 |
|||
[7]: http://stackoverflow.com/questions/6597493/synchronous-database-queries-with-node-js/6620091#6620091 |
|||
[8]: http://github.com/Raynos/iterators |
|||
[9]: http://github.com/Raynos/composite |
@ -0,0 +1,28 @@ |
|||
module.exports = after |
|||
|
|||
function after(count, callback, err_cb) { |
|||
var bail = false |
|||
err_cb = err_cb || noop |
|||
proxy.count = count |
|||
|
|||
return (count === 0) ? callback() : proxy |
|||
|
|||
function proxy(err, result) { |
|||
if (proxy.count <= 0) { |
|||
throw new Error('after called too many times') |
|||
} |
|||
--proxy.count |
|||
|
|||
// after first error, rest are passed to err_cb
|
|||
if (err) { |
|||
bail = true |
|||
callback(err) |
|||
// future error callbacks will go to error handler
|
|||
callback = err_cb |
|||
} else if (proxy.count === 0 && !bail) { |
|||
callback(null, result) |
|||
} |
|||
} |
|||
} |
|||
|
|||
function noop() {} |
@ -0,0 +1,63 @@ |
|||
{ |
|||
"_from": "after@0.8.2", |
|||
"_id": "after@0.8.2", |
|||
"_inBundle": false, |
|||
"_integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", |
|||
"_location": "/after", |
|||
"_phantomChildren": {}, |
|||
"_requested": { |
|||
"type": "version", |
|||
"registry": true, |
|||
"raw": "after@0.8.2", |
|||
"name": "after", |
|||
"escapedName": "after", |
|||
"rawSpec": "0.8.2", |
|||
"saveSpec": null, |
|||
"fetchSpec": "0.8.2" |
|||
}, |
|||
"_requiredBy": [ |
|||
"/engine.io-parser" |
|||
], |
|||
"_resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", |
|||
"_shasum": "fedb394f9f0e02aa9768e702bda23b505fae7e1f", |
|||
"_spec": "after@0.8.2", |
|||
"_where": "/var/www/htdocs/coze/node_modules/engine.io-parser", |
|||
"author": { |
|||
"name": "Raynos", |
|||
"email": "raynos2@gmail.com" |
|||
}, |
|||
"bugs": { |
|||
"url": "https://github.com/Raynos/after/issues" |
|||
}, |
|||
"bundleDependencies": false, |
|||
"contributors": [ |
|||
{ |
|||
"name": "Raynos", |
|||
"email": "raynos2@gmail.com", |
|||
"url": "http://raynos.org" |
|||
} |
|||
], |
|||
"deprecated": false, |
|||
"description": "after - tiny flow control", |
|||
"devDependencies": { |
|||
"mocha": "~1.8.1" |
|||
}, |
|||
"homepage": "https://github.com/Raynos/after#readme", |
|||
"keywords": [ |
|||
"flowcontrol", |
|||
"after", |
|||
"flow", |
|||
"control", |
|||
"arch" |
|||
], |
|||
"license": "MIT", |
|||
"name": "after", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git://github.com/Raynos/after.git" |
|||
}, |
|||
"scripts": { |
|||
"test": "mocha --ui tdd --reporter spec test/*.js" |
|||
}, |
|||
"version": "0.8.2" |
|||
} |
@ -0,0 +1,120 @@ |
|||
/*global suite, test*/ |
|||
|
|||
var assert = require("assert") |
|||
, after = require("../") |
|||
|
|||
test("exists", function () { |
|||
assert(typeof after === "function", "after is not a function") |
|||
}) |
|||
|
|||
test("after when called with 0 invokes", function (done) { |
|||
after(0, done) |
|||
}); |
|||
|
|||
test("after 1", function (done) { |
|||
var next = after(1, done) |
|||
next() |
|||
}) |
|||
|
|||
test("after 5", function (done) { |
|||
var next = after(5, done) |
|||
, i = 5 |
|||
|
|||
while (i--) { |
|||
next() |
|||
} |
|||
}) |
|||
|
|||
test("manipulate count", function (done) { |
|||
var next = after(1, done) |
|||
, i = 5 |
|||
|
|||
next.count = i |
|||
while (i--) { |
|||
next() |
|||
} |
|||
}) |
|||
|
|||
test("after terminates on error", function (done) { |
|||
var next = after(2, function(err) { |
|||
assert.equal(err.message, 'test'); |
|||
done(); |
|||
}) |
|||
next(new Error('test')) |
|||
next(new Error('test2')) |
|||
}) |
|||
|
|||
test('gee', function(done) { |
|||
done = after(2, done) |
|||
|
|||
function cb(err) { |
|||
assert.equal(err.message, 1); |
|||
done() |
|||
} |
|||
|
|||
var next = after(3, cb, function(err) { |
|||
assert.equal(err.message, 2) |
|||
done() |
|||
}); |
|||
|
|||
next() |
|||
next(new Error(1)) |
|||
next(new Error(2)) |
|||
}) |
|||
|
|||
test('eee', function(done) { |
|||
done = after(3, done) |
|||
|
|||
function cb(err) { |
|||
assert.equal(err.message, 1); |
|||
done() |
|||
} |
|||
|
|||
var next = after(3, cb, function(err) { |
|||
assert.equal(err.message, 2) |
|||
done() |
|||
}); |
|||
|
|||
next(new Error(1)) |
|||
next(new Error(2)) |
|||
next(new Error(2)) |
|||
}) |
|||
|
|||
test('gge', function(done) { |
|||
function cb(err) { |
|||
assert.equal(err.message, 1); |
|||
done() |
|||
} |
|||
|
|||
var next = after(3, cb, function(err) { |
|||
// should not happen
|
|||
assert.ok(false); |
|||
}); |
|||
|
|||
next() |
|||
next() |
|||
next(new Error(1)) |
|||
}) |
|||
|
|||
test('egg', function(done) { |
|||
function cb(err) { |
|||
assert.equal(err.message, 1); |
|||
done() |
|||
} |
|||
|
|||
var next = after(3, cb, function(err) { |
|||
// should not happen
|
|||
assert.ok(false); |
|||
}); |
|||
|
|||
next(new Error(1)) |
|||
next() |
|||
next() |
|||
}) |
|||
|
|||
test('throws on too many calls', function(done) { |
|||
var next = after(1, done); |
|||
next() |
|||
assert.throws(next, /after called too many times/); |
|||
}); |
|||
|
@ -0,0 +1,21 @@ |
|||
The MIT License (MIT) |
|||
|
|||
Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy |
|||
of this software and associated documentation files (the "Software"), to deal |
|||
in the Software without restriction, including without limitation the rights |
|||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|||
copies of the Software, and to permit persons to whom the Software is |
|||
furnished to do so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in |
|||
all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|||
THE SOFTWARE. |
@ -0,0 +1,43 @@ |
|||
# Array Flatten |
|||
|
|||
[![NPM version][npm-image]][npm-url] |
|||
[![NPM downloads][downloads-image]][downloads-url] |
|||
[![Build status][travis-image]][travis-url] |
|||
[![Test coverage][coveralls-image]][coveralls-url] |
|||
|
|||
> Flatten an array of nested arrays into a single flat array. Accepts an optional depth. |
|||
|
|||
## Installation |
|||
|
|||
``` |
|||
npm install array-flatten --save |
|||
``` |
|||
|
|||
## Usage |
|||
|
|||
```javascript |
|||
var flatten = require('array-flatten') |
|||
|
|||
flatten([1, [2, [3, [4, [5], 6], 7], 8], 9]) |
|||
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9] |
|||
|
|||
flatten([1, [2, [3, [4, [5], 6], 7], 8], 9], 2) |
|||
//=> [1, 2, 3, [4, [5], 6], 7, 8, 9] |
|||
|
|||
(function () { |
|||
flatten(arguments) //=> [1, 2, 3] |
|||
})(1, [2, 3]) |
|||
``` |
|||
|
|||
## License |
|||
|
|||
MIT |
|||
|
|||
[npm-image]: https://img.shields.io/npm/v/array-flatten.svg?style=flat |
|||
[npm-url]: https://npmjs.org/package/array-flatten |
|||
[downloads-image]: https://img.shields.io/npm/dm/array-flatten.svg?style=flat |
|||
[downloads-url]: https://npmjs.org/package/array-flatten |
|||
[travis-image]: https://img.shields.io/travis/blakeembrey/array-flatten.svg?style=flat |
|||
[travis-url]: https://travis-ci.org/blakeembrey/array-flatten |
|||
[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/array-flatten.svg?style=flat |
|||
[coveralls-url]: https://coveralls.io/r/blakeembrey/array-flatten?branch=master |
@ -0,0 +1,64 @@ |
|||
'use strict' |
|||
|
|||
/** |
|||
* Expose `arrayFlatten`. |
|||
*/ |
|||
module.exports = arrayFlatten |
|||
|
|||
/** |
|||
* Recursive flatten function with depth. |
|||
* |
|||
* @param {Array} array |
|||
* @param {Array} result |
|||
* @param {Number} depth |
|||
* @return {Array} |
|||
*/ |
|||
function flattenWithDepth (array, result, depth) { |
|||
for (var i = 0; i < array.length; i++) { |
|||
var value = array[i] |
|||
|
|||
if (depth > 0 && Array.isArray(value)) { |
|||
flattenWithDepth(value, result, depth - 1) |
|||
} else { |
|||
result.push(value) |
|||
} |
|||
} |
|||
|
|||
return result |
|||
} |
|||
|
|||
/** |
|||
* Recursive flatten function. Omitting depth is slightly faster. |
|||
* |
|||
* @param {Array} array |
|||
* @param {Array} result |
|||
* @return {Array} |
|||
*/ |
|||
function flattenForever (array, result) { |
|||
for (var i = 0; i < array.length; i++) { |
|||
var value = array[i] |
|||
|
|||
if (Array.isArray(value)) { |
|||
flattenForever(value, result) |
|||
} else { |
|||
result.push(value) |
|||
} |
|||
} |
|||
|
|||
return result |
|||
} |
|||
|
|||
/** |
|||
* Flatten an array, with the ability to define a depth. |
|||
* |
|||
* @param {Array} array |
|||
* @param {Number} depth |
|||
* @return {Array} |
|||
*/ |
|||
function arrayFlatten (array, depth) { |
|||
if (depth == null) { |
|||
return flattenForever(array, []) |
|||
} |
|||
|
|||
return flattenWithDepth(array, [], depth) |
|||
} |
@ -0,0 +1,64 @@ |
|||
{ |
|||
"_from": "array-flatten@1.1.1", |
|||
"_id": "array-flatten@1.1.1", |
|||
"_inBundle": false, |
|||
"_integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", |
|||
"_location": "/array-flatten", |
|||
"_phantomChildren": {}, |
|||
"_requested": { |
|||
"type": "version", |
|||
"registry": true, |
|||
"raw": "array-flatten@1.1.1", |
|||
"name": "array-flatten", |
|||
"escapedName": "array-flatten", |
|||
"rawSpec": "1.1.1", |
|||
"saveSpec": null, |
|||
"fetchSpec": "1.1.1" |
|||
}, |
|||
"_requiredBy": [ |
|||
"/express" |
|||
], |
|||
"_resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", |
|||
"_shasum": "9a5f699051b1e7073328f2a008968b64ea2955d2", |
|||
"_spec": "array-flatten@1.1.1", |
|||
"_where": "/var/www/htdocs/coze/node_modules/express", |
|||
"author": { |
|||
"name": "Blake Embrey", |
|||
"email": "hello@blakeembrey.com", |
|||
"url": "http://blakeembrey.me" |
|||
}, |
|||
"bugs": { |
|||
"url": "https://github.com/blakeembrey/array-flatten/issues" |
|||
}, |
|||
"bundleDependencies": false, |
|||
"deprecated": false, |
|||
"description": "Flatten an array of nested arrays into a single flat array", |
|||
"devDependencies": { |
|||
"istanbul": "^0.3.13", |
|||
"mocha": "^2.2.4", |
|||
"pre-commit": "^1.0.7", |
|||
"standard": "^3.7.3" |
|||
}, |
|||
"files": [ |
|||
"array-flatten.js", |
|||
"LICENSE" |
|||
], |
|||
"homepage": "https://github.com/blakeembrey/array-flatten", |
|||
"keywords": [ |
|||
"array", |
|||
"flatten", |
|||
"arguments", |
|||
"depth" |
|||
], |
|||
"license": "MIT", |
|||
"main": "array-flatten.js", |
|||
"name": "array-flatten", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git://github.com/blakeembrey/array-flatten.git" |
|||
}, |
|||
"scripts": { |
|||
"test": "istanbul cover _mocha -- -R spec" |
|||
}, |
|||
"version": "1.1.1" |
|||
} |
@ -0,0 +1,17 @@ |
|||
lib-cov |
|||
lcov.info |
|||
*.seed |
|||
*.log |
|||
*.csv |
|||
*.dat |
|||
*.out |
|||
*.pid |
|||
*.gz |
|||
|
|||
pids |
|||
logs |
|||
results |
|||
build |
|||
.grunt |
|||
|
|||
node_modules |
@ -0,0 +1,18 @@ |
|||
Copyright (C) 2013 Rase- |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy of |
|||
this software and associated documentation files (the "Software"), to deal in |
|||
the Software without restriction, including without limitation the rights to |
|||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
|||
of the Software, and to permit persons to whom the Software is furnished to do |
|||
so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in all |
|||
copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
|||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
|||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
|||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
|||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,8 @@ |
|||
|
|||
REPORTER = dot |
|||
|
|||
test: |
|||
@./node_modules/.bin/mocha \
|
|||
--reporter $(REPORTER) |
|||
|
|||
.PHONY: test |
@ -0,0 +1,17 @@ |
|||
# How to |
|||
```javascript |
|||
var sliceBuffer = require('arraybuffer.slice'); |
|||
var ab = (new Int8Array(5)).buffer; |
|||
var sliced = sliceBuffer(ab, 1, 3); |
|||
sliced = sliceBuffer(ab, 1); |
|||
``` |
|||
|
|||
# Licence (MIT) |
|||
Copyright (C) 2013 Rase- |
|||
|
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,29 @@ |
|||
/** |
|||
* An abstraction for slicing an arraybuffer even when |
|||
* ArrayBuffer.prototype.slice is not supported |
|||
* |
|||
* @api public |
|||
*/ |
|||
|
|||
module.exports = function(arraybuffer, start, end) { |
|||
var bytes = arraybuffer.byteLength; |
|||
start = start || 0; |
|||
end = end || bytes; |
|||
|
|||
if (arraybuffer.slice) { return arraybuffer.slice(start, end); } |
|||
|
|||
if (start < 0) { start += bytes; } |
|||
if (end < 0) { end += bytes; } |
|||
if (end > bytes) { end = bytes; } |
|||
|
|||
if (start >= bytes || start >= end || bytes === 0) { |
|||
return new ArrayBuffer(0); |
|||
} |
|||
|
|||
var abv = new Uint8Array(arraybuffer); |
|||
var result = new Uint8Array(end - start); |
|||
for (var i = start, ii = 0; i < end; i++, ii++) { |
|||
result[ii] = abv[i]; |
|||
} |
|||
return result.buffer; |
|||
}; |
@ -0,0 +1,44 @@ |
|||
{ |
|||
"_from": "arraybuffer.slice@~0.0.7", |
|||
"_id": "arraybuffer.slice@0.0.7", |
|||
"_inBundle": false, |
|||
"_integrity": "sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==", |
|||
"_location": "/arraybuffer.slice", |
|||
"_phantomChildren": {}, |
|||
"_requested": { |
|||
"type": "range", |
|||
"registry": true, |
|||
"raw": "arraybuffer.slice@~0.0.7", |
|||
"name": "arraybuffer.slice", |
|||
"escapedName": "arraybuffer.slice", |
|||
"rawSpec": "~0.0.7", |
|||
"saveSpec": null, |
|||
"fetchSpec": "~0.0.7" |
|||
}, |
|||
"_requiredBy": [ |
|||
"/engine.io-parser" |
|||
], |
|||
"_resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz", |
|||
"_shasum": "3bbc4275dd584cc1b10809b89d4e8b63a69e7675", |
|||
"_spec": "arraybuffer.slice@~0.0.7", |
|||
"_where": "/var/www/htdocs/coze/node_modules/engine.io-parser", |
|||
"bugs": { |
|||
"url": "https://github.com/rase-/arraybuffer.slice/issues" |
|||
}, |
|||
"bundleDependencies": false, |
|||
"dependencies": {}, |
|||
"deprecated": false, |
|||
"description": "Exports a function for slicing ArrayBuffers (no polyfilling)", |
|||
"devDependencies": { |
|||
"expect.js": "0.2.0", |
|||
"mocha": "1.17.1" |
|||
}, |
|||
"homepage": "https://github.com/rase-/arraybuffer.slice", |
|||
"license": "MIT", |
|||
"name": "arraybuffer.slice", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+ssh://git@github.com/rase-/arraybuffer.slice.git" |
|||
}, |
|||
"version": "0.0.7" |
|||
} |
@ -0,0 +1,227 @@ |
|||
/* |
|||
* Test dependencies |
|||
*/ |
|||
|
|||
var sliceBuffer = require('../index.js'); |
|||
var expect = require('expect.js'); |
|||
|
|||
/** |
|||
* Tests |
|||
*/ |
|||
|
|||
describe('sliceBuffer', function() { |
|||
describe('using standard slice', function() { |
|||
it('should slice correctly with only start provided', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, 3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 3, ii = 0; i < abv.length; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with start and end provided', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, 3, 8); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 3, ii = 0; i < 8; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with negative start', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, -3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = abv.length - 3, ii = 0; i < abv.length; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with negative end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, 0, -3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 0, ii = 0; i < abv.length - 3; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with negative start and end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, -6, -3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = abv.length - 6, ii = 0; i < abv.length - 3; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with equal start and end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, 1, 1); |
|||
expect(sliced.byteLength).to.equal(0); |
|||
}); |
|||
|
|||
it('should slice correctly when end larger than buffer', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, 0, 100); |
|||
expect(new Uint8Array(sliced)).to.eql(abv); |
|||
}); |
|||
|
|||
it('shoud slice correctly when start larger than end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
|
|||
var sliced = sliceBuffer(abv.buffer, 6, 5); |
|||
expect(sliced.byteLength).to.equal(0); |
|||
}); |
|||
}); |
|||
|
|||
describe('using fallback', function() { |
|||
it('should slice correctly with only start provided', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
var sliced = sliceBuffer(ab, 3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 3, ii = 0; i < abv.length; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with start and end provided', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
|
|||
var sliced = sliceBuffer(ab, 3, 8); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 3, ii = 0; i < 8; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with negative start', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
|
|||
var sliced = sliceBuffer(ab, -3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = abv.length - 3, ii = 0; i < abv.length; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with negative end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
var sliced = sliceBuffer(ab, 0, -3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 0, ii = 0; i < abv.length - 3; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with negative start and end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
var sliced = sliceBuffer(ab, -6, -3); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = abv.length - 6, ii = 0; i < abv.length - 3; i++, ii++) { |
|||
expect(abv[i]).to.equal(sabv[ii]); |
|||
} |
|||
}); |
|||
|
|||
it('should slice correctly with equal start and end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
var sliced = sliceBuffer(ab, 1, 1); |
|||
expect(sliced.byteLength).to.equal(0); |
|||
}); |
|||
|
|||
it('should slice correctly when end larger than buffer', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
var sliced = sliceBuffer(ab, 0, 100); |
|||
var sabv = new Uint8Array(sliced); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
expect(abv[i]).to.equal(sabv[i]); |
|||
} |
|||
}); |
|||
|
|||
it('shoud slice correctly when start larger than end', function() { |
|||
var abv = new Uint8Array(10); |
|||
for (var i = 0; i < abv.length; i++) { |
|||
abv[i] = i; |
|||
} |
|||
var ab = abv.buffer; |
|||
ab.slice = undefined; |
|||
|
|||
var sliced = sliceBuffer(ab, 6, 5); |
|||
expect(sliced.byteLength).to.equal(0); |
|||
}); |
|||
}); |
|||
}); |
@ -0,0 +1,7 @@ |
|||
language: node_js |
|||
node_js: |
|||
- "6" |
|||
- "node" |
|||
script: npm run travis |
|||
cache: |
|||
yarn: true |
@ -0,0 +1,8 @@ |
|||
The MIT License (MIT) |
|||
Copyright (c) 2017 Samuel Reed <samuel.trace.reed@gmail.com> |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1 @@ |
|||
{"/Users/samuelreed/git/forks/async-throttle/index.js":{"path":"/Users/samuelreed/git/forks/async-throttle/index.js","s":{"1":1,"2":7,"3":1,"4":6,"5":6,"6":6,"7":6,"8":6,"9":6,"10":1,"11":1,"12":3,"13":13,"14":13,"15":13,"16":1,"17":19,"18":1,"19":45,"20":6,"21":39,"22":13,"23":13,"24":13,"25":13,"26":39,"27":18,"28":6,"29":6,"30":1,"31":6,"32":6,"33":6,"34":1,"35":13,"36":13,"37":1},"b":{"1":[1,6],"2":[6,5],"3":[6,5],"4":[6,39],"5":[13,26],"6":[18,21],"7":[6,0]},"f":{"1":7,"2":3,"3":13,"4":19,"5":45,"6":6,"7":13},"fnMap":{"1":{"name":"Queue","line":3,"loc":{"start":{"line":3,"column":0},"end":{"line":3,"column":24}}},"2":{"name":"(anonymous_2)","line":22,"loc":{"start":{"line":22,"column":24},"end":{"line":22,"column":41}}},"3":{"name":"(anonymous_3)","line":23,"loc":{"start":{"line":23,"column":28},"end":{"line":23,"column":39}}},"4":{"name":"(anonymous_4)","line":31,"loc":{"start":{"line":31,"column":7},"end":{"line":31,"column":18}}},"5":{"name":"(anonymous_5)","line":36,"loc":{"start":{"line":36,"column":23},"end":{"line":36,"column":34}}},"6":{"name":"(anonymous_6)","line":55,"loc":{"start":{"line":55,"column":25},"end":{"line":55,"column":38}}},"7":{"name":"done","line":62,"loc":{"start":{"line":62,"column":0},"end":{"line":62,"column":16}}}},"statementMap":{"1":{"start":{"line":3,"column":0},"end":{"line":14,"column":1}},"2":{"start":{"line":4,"column":2},"end":{"line":6,"column":3}},"3":{"start":{"line":5,"column":4},"end":{"line":5,"column":30}},"4":{"start":{"line":8,"column":2},"end":{"line":8,"column":26}},"5":{"start":{"line":9,"column":2},"end":{"line":9,"column":53}},"6":{"start":{"line":10,"column":2},"end":{"line":10,"column":19}},"7":{"start":{"line":11,"column":2},"end":{"line":11,"column":17}},"8":{"start":{"line":12,"column":2},"end":{"line":12,"column":16}},"9":{"start":{"line":13,"column":2},"end":{"line":13,"column":31}},"10":{"start":{"line":16,"column":0},"end":{"line":20,"column":2}},"11":{"start":{"line":22,"column":0},"end":{"line":28,"column":3}},"12":{"start":{"line":23,"column":2},"end":{"line":27,"column":4}},"13":{"start":{"line":24,"column":4},"end":{"line":24,"column":75}},"14":{"start":{"line":25,"column":4},"end":{"line":25,"column":16}},"15":{"start":{"line":26,"column":4},"end":{"line":26,"column":24}},"16":{"start":{"line":30,"column":0},"end":{"line":34,"column":3}},"17":{"start":{"line":32,"column":4},"end":{"line":32,"column":43}},"18":{"start":{"line":36,"column":0},"end":{"line":53,"column":2}},"19":{"start":{"line":37,"column":2},"end":{"line":39,"column":3}},"20":{"start":{"line":38,"column":4},"end":{"line":38,"column":11}},"21":{"start":{"line":40,"column":2},"end":{"line":45,"column":3}},"22":{"start":{"line":41,"column":4},"end":{"line":41,"column":32}},"23":{"start":{"line":42,"column":4},"end":{"line":42,"column":19}},"24":{"start":{"line":43,"column":4},"end":{"line":43,"column":20}},"25":{"start":{"line":44,"column":4},"end":{"line":44,"column":16}},"26":{"start":{"line":47,"column":2},"end":{"line":52,"column":3}},"27":{"start":{"line":48,"column":4},"end":{"line":51,"column":5}},"28":{"start":{"line":49,"column":6},"end":{"line":49,"column":30}},"29":{"start":{"line":50,"column":6},"end":{"line":50,"column":27}},"30":{"start":{"line":55,"column":0},"end":{"line":60,"column":2}},"31":{"start":{"line":56,"column":2},"end":{"line":59,"column":3}},"32":{"start":{"line":57,"column":4},"end":{"line":57,"column":22}},"33":{"start":{"line":58,"column":4},"end":{"line":58,"column":16}},"34":{"start":{"line":62,"column":0},"end":{"line":65,"column":1}},"35":{"start":{"line":63,"column":2},"end":{"line":63,"column":17}},"36":{"start":{"line":64,"column":2},"end":{"line":64,"column":14}},"37":{"start":{"line":67,"column":0},"end":{"line":67,"column":23}}},"branchMap":{"1":{"line":4,"type":"if","locations":[{"start":{"line":4,"column":2},"end":{"line":4,"column":2}},{"start":{"line":4,"column":2},"end":{"line":4,"column":2}}]},"2":{"line":8,"type":"binary-expr","locations":[{"start":{"line":8,"column":12},"end":{"line":8,"column":19}},{"start":{"line":8,"column":23},"end":{"line":8,"column":25}}]},"3":{"line":9,"type":"binary-expr","locations":[{"start":{"line":9,"column":21},"end":{"line":9,"column":40}},{"start":{"line":9,"column":44},"end":{"line":9,"column":52}}]},"4":{"line":37,"type":"if","locations":[{"start":{"line":37,"column":2},"end":{"line":37,"column":2}},{"start":{"line":37,"column":2},"end":{"line":37,"column":2}}]},"5":{"line":40,"type":"if","locations":[{"start":{"line":40,"column":2},"end":{"line":40,"column":2}},{"start":{"line":40,"column":2},"end":{"line":40,"column":2}}]},"6":{"line":47,"type":"if","locations":[{"start":{"line":47,"column":2},"end":{"line":47,"column":2}},{"start":{"line":47,"column":2},"end":{"line":47,"column":2}}]},"7":{"line":56,"type":"if","locations":[{"start":{"line":56,"column":2},"end":{"line":56,"column":2}},{"start":{"line":56,"column":2},"end":{"line":56,"column":2}}]}}}} |
@ -0,0 +1,73 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<title>Code coverage report for async-throttle/</title> |
|||
<meta charset="utf-8"> |
|||
<link rel="stylesheet" href="../prettify.css"> |
|||
<link rel="stylesheet" href="../base.css"> |
|||
<style type='text/css'> |
|||
div.coverage-summary .sorter { |
|||
background-image: url(../sort-arrow-sprite.png); |
|||
} |
|||
</style> |
|||
</head> |
|||
<body> |
|||
<div class="header high"> |
|||
<h1>Code coverage report for <span class="entity">async-throttle/</span></h1> |
|||
<h2> |
|||
Statements: <span class="metric">100% <small>(37 / 37)</small></span> |
|||
Branches: <span class="metric">92.86% <small>(13 / 14)</small></span> |
|||
Functions: <span class="metric">100% <small>(7 / 7)</small></span> |
|||
Lines: <span class="metric">100% <small>(37 / 37)</small></span> |
|||
Ignored: <span class="metric"><span class="ignore-none">none</span></span> |
|||
</h2> |
|||
<div class="path"><a href="../index.html">All files</a> » async-throttle/</div> |
|||
</div> |
|||
<div class="body"> |
|||
<div class="coverage-summary"> |
|||
<table> |
|||
<thead> |
|||
<tr> |
|||
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th> |
|||
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th> |
|||
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th> |
|||
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th> |
|||
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th> |
|||
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th> |
|||
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
</tr> |
|||
</thead> |
|||
<tbody><tr> |
|||
<td class="file high" data-value="index.js"><a href="index.js.html">index.js</a></td> |
|||
<td data-value="100" class="pic high"><span class="cover-fill cover-full" style="width: 100px;"></span><span class="cover-empty" style="width:0px;"></span></td> |
|||
<td data-value="100" class="pct high">100%</td> |
|||
<td data-value="37" class="abs high">(37 / 37)</td> |
|||
<td data-value="92.86" class="pct high">92.86%</td> |
|||
<td data-value="14" class="abs high">(13 / 14)</td> |
|||
<td data-value="100" class="pct high">100%</td> |
|||
<td data-value="7" class="abs high">(7 / 7)</td> |
|||
<td data-value="100" class="pct high">100%</td> |
|||
<td data-value="37" class="abs high">(37 / 37)</td> |
|||
</tr> |
|||
|
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
</div> |
|||
<div class="footer"> |
|||
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Sep 11 2017 11:14:14 GMT-0500 (CDT)</div> |
|||
</div> |
|||
<script src="../prettify.js"></script> |
|||
<script> |
|||
window.onload = function () { |
|||
if (typeof prettyPrint === 'function') { |
|||
prettyPrint(); |
|||
} |
|||
}; |
|||
</script> |
|||
<script src="../sorter.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,246 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<title>Code coverage report for async-throttle/index.js</title> |
|||
<meta charset="utf-8"> |
|||
<link rel="stylesheet" href="../prettify.css"> |
|||
<link rel="stylesheet" href="../base.css"> |
|||
<style type='text/css'> |
|||
div.coverage-summary .sorter { |
|||
background-image: url(../sort-arrow-sprite.png); |
|||
} |
|||
</style> |
|||
</head> |
|||
<body> |
|||
<div class="header high"> |
|||
<h1>Code coverage report for <span class="entity">async-throttle/index.js</span></h1> |
|||
<h2> |
|||
Statements: <span class="metric">100% <small>(37 / 37)</small></span> |
|||
Branches: <span class="metric">92.86% <small>(13 / 14)</small></span> |
|||
Functions: <span class="metric">100% <small>(7 / 7)</small></span> |
|||
Lines: <span class="metric">100% <small>(37 / 37)</small></span> |
|||
Ignored: <span class="metric"><span class="ignore-none">none</span></span> |
|||
</h2> |
|||
<div class="path"><a href="../index.html">All files</a> » <a href="index.html">async-throttle/</a> » index.js</div> |
|||
</div> |
|||
<div class="body"> |
|||
<pre><table class="coverage"> |
|||
<tr><td class="line-count">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</td><td class="line-coverage"><span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-yes">7</span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-yes">3</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">19</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-yes">45</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">39</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">39</span> |
|||
<span class="cline-any cline-yes">18</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-yes">6</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-yes">13</span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-neutral"> </span> |
|||
<span class="cline-any cline-yes">1</span> |
|||
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">'use strict'; |
|||
|
|||
function Queue(options) { |
|||
if (!(this instanceof Queue)) { |
|||
return new Queue(options); |
|||
} |
|||
|
|||
options = options || {}; |
|||
this.concurrency = options.concurrency || Infinity; |
|||
this.pending = 0; |
|||
this.jobs = []; |
|||
this.cbs = []; |
|||
this._done = done.bind(this); |
|||
} |
|||
|
|||
var arrayAddMethods = [ |
|||
'push', |
|||
'unshift', |
|||
'splice' |
|||
]; |
|||
|
|||
arrayAddMethods.forEach(function(method) { |
|||
Queue.prototype[method] = function() { |
|||
var methodResult = Array.prototype[method].apply(this.jobs, arguments); |
|||
this._run(); |
|||
return methodResult; |
|||
}; |
|||
}); |
|||
|
|||
Object.defineProperty(Queue.prototype, 'length', { |
|||
get: function() { |
|||
return this.pending + this.jobs.length; |
|||
} |
|||
}); |
|||
|
|||
Queue.prototype._run = function() { |
|||
if (this.pending === this.concurrency) { |
|||
return; |
|||
} |
|||
if (this.jobs.length) { |
|||
var job = this.jobs.shift(); |
|||
this.pending++; |
|||
job(this._done); |
|||
this._run(); |
|||
} |
|||
|
|||
if (this.pending === 0) { |
|||
while (this.cbs.length !== 0) { |
|||
var cb = this.cbs.pop(); |
|||
process.nextTick(cb); |
|||
} |
|||
} |
|||
}; |
|||
|
|||
Queue.prototype.onDone = function(cb) { |
|||
<span class="missing-if-branch" title="else path not taken" >E</span>if (typeof cb === 'function') { |
|||
this.cbs.push(cb); |
|||
this._run(); |
|||
} |
|||
}; |
|||
|
|||
function done() { |
|||
this.pending--; |
|||
this._run(); |
|||
} |
|||
|
|||
module.exports = Queue; |
|||
</pre></td></tr> |
|||
</table></pre> |
|||
|
|||
</div> |
|||
<div class="footer"> |
|||
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Sep 11 2017 11:14:14 GMT-0500 (CDT)</div> |
|||
</div> |
|||
<script src="../prettify.js"></script> |
|||
<script> |
|||
window.onload = function () { |
|||
if (typeof prettyPrint === 'function') { |
|||
prettyPrint(); |
|||
} |
|||
}; |
|||
</script> |
|||
<script src="../sorter.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1,182 @@ |
|||
body, html { |
|||
margin:0; padding: 0; |
|||
} |
|||
body { |
|||
font-family: Helvetica Neue, Helvetica,Arial; |
|||
font-size: 10pt; |
|||
} |
|||
div.header, div.footer { |
|||
background: #eee; |
|||
padding: 1em; |
|||
} |
|||
div.header { |
|||
z-index: 100; |
|||
position: fixed; |
|||
top: 0; |
|||
border-bottom: 1px solid #666; |
|||
width: 100%; |
|||
} |
|||
div.footer { |
|||
border-top: 1px solid #666; |
|||
} |
|||
div.body { |
|||
margin-top: 10em; |
|||
} |
|||
div.meta { |
|||
font-size: 90%; |
|||
text-align: center; |
|||
} |
|||
h1, h2, h3 { |
|||
font-weight: normal; |
|||
} |
|||
h1 { |
|||
font-size: 12pt; |
|||
} |
|||
h2 { |
|||
font-size: 10pt; |
|||
} |
|||
pre { |
|||
font-family: Consolas, Menlo, Monaco, monospace; |
|||
margin: 0; |
|||
padding: 0; |
|||
line-height: 1.3; |
|||
font-size: 14px; |
|||
-moz-tab-size: 2; |
|||
-o-tab-size: 2; |
|||
tab-size: 2; |
|||
} |
|||
|
|||
div.path { font-size: 110%; } |
|||
div.path a:link, div.path a:visited { color: #000; } |
|||
table.coverage { border-collapse: collapse; margin:0; padding: 0 } |
|||
|
|||
table.coverage td { |
|||
margin: 0; |
|||
padding: 0; |
|||
color: #111; |
|||
vertical-align: top; |
|||
} |
|||
table.coverage td.line-count { |
|||
width: 50px; |
|||
text-align: right; |
|||
padding-right: 5px; |
|||
} |
|||
table.coverage td.line-coverage { |
|||
color: #777 !important; |
|||
text-align: right; |
|||
border-left: 1px solid #666; |
|||
border-right: 1px solid #666; |
|||
} |
|||
|
|||
table.coverage td.text { |
|||
} |
|||
|
|||
table.coverage td span.cline-any { |
|||
display: inline-block; |
|||
padding: 0 5px; |
|||
width: 40px; |
|||
} |
|||
table.coverage td span.cline-neutral { |
|||
background: #eee; |
|||
} |
|||
table.coverage td span.cline-yes { |
|||
background: #b5d592; |
|||
color: #999; |
|||
} |
|||
table.coverage td span.cline-no { |
|||
background: #fc8c84; |
|||
} |
|||
|
|||
.cstat-yes { color: #111; } |
|||
.cstat-no { background: #fc8c84; color: #111; } |
|||
.fstat-no { background: #ffc520; color: #111 !important; } |
|||
.cbranch-no { background: yellow !important; color: #111; } |
|||
|
|||
.cstat-skip { background: #ddd; color: #111; } |
|||
.fstat-skip { background: #ddd; color: #111 !important; } |
|||
.cbranch-skip { background: #ddd !important; color: #111; } |
|||
|
|||
.missing-if-branch { |
|||
display: inline-block; |
|||
margin-right: 10px; |
|||
position: relative; |
|||
padding: 0 4px; |
|||
background: black; |
|||
color: yellow; |
|||
} |
|||
|
|||
.skip-if-branch { |
|||
display: none; |
|||
margin-right: 10px; |
|||
position: relative; |
|||
padding: 0 4px; |
|||
background: #ccc; |
|||
color: white; |
|||
} |
|||
|
|||
.missing-if-branch .typ, .skip-if-branch .typ { |
|||
color: inherit !important; |
|||
} |
|||
|
|||
.entity, .metric { font-weight: bold; } |
|||
.metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; } |
|||
.metric small { font-size: 80%; font-weight: normal; color: #666; } |
|||
|
|||
div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; } |
|||
div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; } |
|||
div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; } |
|||
div.coverage-summary th.file { border-right: none !important; } |
|||
div.coverage-summary th.pic { border-left: none !important; text-align: right; } |
|||
div.coverage-summary th.pct { border-right: none !important; } |
|||
div.coverage-summary th.abs { border-left: none !important; text-align: right; } |
|||
div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; } |
|||
div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; } |
|||
div.coverage-summary td.file { border-left: 1px solid #666; white-space: nowrap; } |
|||
div.coverage-summary td.pic { min-width: 120px !important; } |
|||
div.coverage-summary a:link { text-decoration: none; color: #000; } |
|||
div.coverage-summary a:visited { text-decoration: none; color: #777; } |
|||
div.coverage-summary a:hover { text-decoration: underline; } |
|||
div.coverage-summary tfoot td { border-top: 1px solid #666; } |
|||
|
|||
div.coverage-summary .sorter { |
|||
height: 10px; |
|||
width: 7px; |
|||
display: inline-block; |
|||
margin-left: 0.5em; |
|||
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; |
|||
} |
|||
div.coverage-summary .sorted .sorter { |
|||
background-position: 0 -20px; |
|||
} |
|||
div.coverage-summary .sorted-desc .sorter { |
|||
background-position: 0 -10px; |
|||
} |
|||
|
|||
.high { background: #b5d592 !important; } |
|||
.medium { background: #ffe87c !important; } |
|||
.low { background: #fc8c84 !important; } |
|||
|
|||
span.cover-fill, span.cover-empty { |
|||
display:inline-block; |
|||
border:1px solid #444; |
|||
background: white; |
|||
height: 12px; |
|||
} |
|||
span.cover-fill { |
|||
background: #ccc; |
|||
border-right: 1px solid #444; |
|||
} |
|||
span.cover-empty { |
|||
background: white; |
|||
border-left: none; |
|||
} |
|||
span.cover-full { |
|||
border-right: none !important; |
|||
} |
|||
pre.prettyprint { |
|||
border: none !important; |
|||
padding: 0 !important; |
|||
margin: 0 !important; |
|||
} |
|||
.com { color: #999 !important; } |
|||
.ignore-none { color: #999; font-weight: normal; } |
@ -0,0 +1,73 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<title>Code coverage report for All files</title> |
|||
<meta charset="utf-8"> |
|||
<link rel="stylesheet" href="prettify.css"> |
|||
<link rel="stylesheet" href="base.css"> |
|||
<style type='text/css'> |
|||
div.coverage-summary .sorter { |
|||
background-image: url(sort-arrow-sprite.png); |
|||
} |
|||
</style> |
|||
</head> |
|||
<body> |
|||
<div class="header high"> |
|||
<h1>Code coverage report for <span class="entity">All files</span></h1> |
|||
<h2> |
|||
Statements: <span class="metric">100% <small>(37 / 37)</small></span> |
|||
Branches: <span class="metric">92.86% <small>(13 / 14)</small></span> |
|||
Functions: <span class="metric">100% <small>(7 / 7)</small></span> |
|||
Lines: <span class="metric">100% <small>(37 / 37)</small></span> |
|||
Ignored: <span class="metric"><span class="ignore-none">none</span></span> |
|||
</h2> |
|||
<div class="path"></div> |
|||
</div> |
|||
<div class="body"> |
|||
<div class="coverage-summary"> |
|||
<table> |
|||
<thead> |
|||
<tr> |
|||
<th data-col="file" data-fmt="html" data-html="true" class="file">File</th> |
|||
<th data-col="pic" data-type="number" data-fmt="html" data-html="true" class="pic"></th> |
|||
<th data-col="statements" data-type="number" data-fmt="pct" class="pct">Statements</th> |
|||
<th data-col="statements_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
<th data-col="branches" data-type="number" data-fmt="pct" class="pct">Branches</th> |
|||
<th data-col="branches_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
<th data-col="functions" data-type="number" data-fmt="pct" class="pct">Functions</th> |
|||
<th data-col="functions_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
<th data-col="lines" data-type="number" data-fmt="pct" class="pct">Lines</th> |
|||
<th data-col="lines_raw" data-type="number" data-fmt="html" class="abs"></th> |
|||
</tr> |
|||
</thead> |
|||
<tbody><tr> |
|||
<td class="file high" data-value="async-throttle/"><a href="async-throttle/index.html">async-throttle/</a></td> |
|||
<td data-value="100" class="pic high"><span class="cover-fill cover-full" style="width: 100px;"></span><span class="cover-empty" style="width:0px;"></span></td> |
|||
<td data-value="100" class="pct high">100%</td> |
|||
<td data-value="37" class="abs high">(37 / 37)</td> |
|||
<td data-value="92.86" class="pct high">92.86%</td> |
|||
<td data-value="14" class="abs high">(13 / 14)</td> |
|||
<td data-value="100" class="pct high">100%</td> |
|||
<td data-value="7" class="abs high">(7 / 7)</td> |
|||
<td data-value="100" class="pct high">100%</td> |
|||
<td data-value="37" class="abs high">(37 / 37)</td> |
|||
</tr> |
|||
|
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
</div> |
|||
<div class="footer"> |
|||
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Mon Sep 11 2017 11:14:14 GMT-0500 (CDT)</div> |
|||
</div> |
|||
<script src="prettify.js"></script> |
|||
<script> |
|||
window.onload = function () { |
|||
if (typeof prettyPrint === 'function') { |
|||
prettyPrint(); |
|||
} |
|||
}; |
|||
</script> |
|||
<script src="sorter.js"></script> |
|||
</body> |
|||
</html> |
@ -0,0 +1 @@ |
|||
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} |
After Width: | Height: | Size: 209 B |
@ -0,0 +1,156 @@ |
|||
var addSorting = (function () { |
|||
"use strict"; |
|||
var cols, |
|||
currentSort = { |
|||
index: 0, |
|||
desc: false |
|||
}; |
|||
|
|||
// returns the summary table element
|
|||
function getTable() { return document.querySelector('.coverage-summary table'); } |
|||
// returns the thead element of the summary table
|
|||
function getTableHeader() { return getTable().querySelector('thead tr'); } |
|||
// returns the tbody element of the summary table
|
|||
function getTableBody() { return getTable().querySelector('tbody'); } |
|||
// returns the th element for nth column
|
|||
function getNthColumn(n) { return getTableHeader().querySelectorAll('th')[n]; } |
|||
|
|||
// loads all columns
|
|||
function loadColumns() { |
|||
var colNodes = getTableHeader().querySelectorAll('th'), |
|||
colNode, |
|||
cols = [], |
|||
col, |
|||
i; |
|||
|
|||
for (i = 0; i < colNodes.length; i += 1) { |
|||
colNode = colNodes[i]; |
|||
col = { |
|||
key: colNode.getAttribute('data-col'), |
|||
sortable: !colNode.getAttribute('data-nosort'), |
|||
type: colNode.getAttribute('data-type') || 'string' |
|||
}; |
|||
cols.push(col); |
|||
if (col.sortable) { |
|||
col.defaultDescSort = col.type === 'number'; |
|||
colNode.innerHTML = colNode.innerHTML + '<span class="sorter"></span>'; |
|||
} |
|||
} |
|||
return cols; |
|||
} |
|||
// attaches a data attribute to every tr element with an object
|
|||
// of data values keyed by column name
|
|||
function loadRowData(tableRow) { |
|||
var tableCols = tableRow.querySelectorAll('td'), |
|||
colNode, |
|||
col, |
|||
data = {}, |
|||
i, |
|||
val; |
|||
for (i = 0; i < tableCols.length; i += 1) { |
|||
colNode = tableCols[i]; |
|||
col = cols[i]; |
|||
val = colNode.getAttribute('data-value'); |
|||
if (col.type === 'number') { |
|||
val = Number(val); |
|||
} |
|||
data[col.key] = val; |
|||
} |
|||
return data; |
|||
} |
|||
// loads all row data
|
|||
function loadData() { |
|||
var rows = getTableBody().querySelectorAll('tr'), |
|||
i; |
|||
|
|||
for (i = 0; i < rows.length; i += 1) { |
|||
rows[i].data = loadRowData(rows[i]); |
|||
} |
|||
} |
|||
// sorts the table using the data for the ith column
|
|||
function sortByIndex(index, desc) { |
|||
var key = cols[index].key, |
|||
sorter = function (a, b) { |
|||
a = a.data[key]; |
|||
b = b.data[key]; |
|||
return a < b ? -1 : a > b ? 1 : 0; |
|||
}, |
|||
finalSorter = sorter, |
|||
tableBody = document.querySelector('.coverage-summary tbody'), |
|||
rowNodes = tableBody.querySelectorAll('tr'), |
|||
rows = [], |
|||
i; |
|||
|
|||
if (desc) { |
|||
finalSorter = function (a, b) { |
|||
return -1 * sorter(a, b); |
|||
}; |
|||
} |
|||
|
|||
for (i = 0; i < rowNodes.length; i += 1) { |
|||
rows.push(rowNodes[i]); |
|||
tableBody.removeChild(rowNodes[i]); |
|||
} |
|||
|
|||
rows.sort(finalSorter); |
|||
|
|||
for (i = 0; i < rows.length; i += 1) { |
|||
tableBody.appendChild(rows[i]); |
|||
} |
|||
} |
|||
// removes sort indicators for current column being sorted
|
|||
function removeSortIndicators() { |
|||
var col = getNthColumn(currentSort.index), |
|||
cls = col.className; |
|||
|
|||
cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); |
|||
col.className = cls; |
|||
} |
|||
// adds sort indicators for current column being sorted
|
|||
function addSortIndicators() { |
|||
getNthColumn(currentSort.index).className += currentSort.desc ? ' sorted-desc' : ' sorted'; |
|||
} |
|||
// adds event listeners for all sorter widgets
|
|||
function enableUI() { |
|||
var i, |
|||
el, |
|||
ithSorter = function ithSorter(i) { |
|||
var col = cols[i]; |
|||
|
|||
return function () { |
|||
var desc = col.defaultDescSort; |
|||
|
|||
if (currentSort.index === i) { |
|||
desc = !currentSort.desc; |
|||
} |
|||
sortByIndex(i, desc); |
|||
removeSortIndicators(); |
|||
currentSort.index = i; |
|||
currentSort.desc = desc; |
|||
addSortIndicators(); |
|||
}; |
|||
}; |
|||
for (i =0 ; i < cols.length; i += 1) { |
|||
if (cols[i].sortable) { |
|||
el = getNthColumn(i).querySelector('.sorter'); |
|||
if (el.addEventListener) { |
|||
el.addEventListener('click', ithSorter(i)); |
|||
} else { |
|||
el.attachEvent('onclick', ithSorter(i)); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
// adds sorting functionality to the UI
|
|||
return function () { |
|||
if (!getTable()) { |
|||
return; |
|||
} |
|||
cols = loadColumns(); |
|||
loadData(cols); |
|||
addSortIndicators(); |
|||
enableUI(); |
|||
}; |
|||
})(); |
|||
|
|||
window.addEventListener('load', addSorting); |
@ -0,0 +1,74 @@ |
|||
TN: |
|||
SF:/Users/samuelreed/git/forks/async-throttle/index.js |
|||
FN:3,Queue |
|||
FN:22,(anonymous_2) |
|||
FN:23,(anonymous_3) |
|||
FN:31,(anonymous_4) |
|||
FN:36,(anonymous_5) |
|||
FN:55,(anonymous_6) |
|||
FN:62,done |
|||
FNF:7 |
|||
FNH:7 |
|||
FNDA:7,Queue |
|||
FNDA:3,(anonymous_2) |
|||
FNDA:13,(anonymous_3) |
|||
FNDA:19,(anonymous_4) |
|||
FNDA:45,(anonymous_5) |
|||
FNDA:6,(anonymous_6) |
|||
FNDA:13,done |
|||
DA:3,1 |
|||
DA:4,7 |
|||
DA:5,1 |
|||
DA:8,6 |
|||
DA:9,6 |
|||
DA:10,6 |
|||
DA:11,6 |
|||
DA:12,6 |
|||
DA:13,6 |
|||
DA:16,1 |
|||
DA:22,1 |
|||
DA:23,3 |
|||
DA:24,13 |
|||
DA:25,13 |
|||
DA:26,13 |
|||
DA:30,1 |
|||
DA:32,19 |
|||
DA:36,1 |
|||
DA:37,45 |
|||
DA:38,6 |
|||
DA:40,39 |
|||
DA:41,13 |
|||
DA:42,13 |
|||
DA:43,13 |
|||
DA:44,13 |
|||
DA:47,39 |
|||
DA:48,18 |
|||
DA:49,6 |
|||
DA:50,6 |
|||
DA:55,1 |
|||
DA:56,6 |
|||
DA:57,6 |
|||
DA:58,6 |
|||
DA:62,1 |
|||
DA:63,13 |
|||
DA:64,13 |
|||
DA:67,1 |
|||
LF:37 |
|||
LH:37 |
|||
BRDA:4,1,0,1 |
|||
BRDA:4,1,1,6 |
|||
BRDA:8,2,0,6 |
|||
BRDA:8,2,1,5 |
|||
BRDA:9,3,0,6 |
|||
BRDA:9,3,1,5 |
|||
BRDA:37,4,0,6 |
|||
BRDA:37,4,1,39 |
|||
BRDA:40,5,0,13 |
|||
BRDA:40,5,1,26 |
|||
BRDA:47,6,0,18 |
|||
BRDA:47,6,1,21 |
|||
BRDA:56,7,0,6 |
|||
BRDA:56,7,1,0 |
|||
BRF:14 |
|||
BRH:13 |
|||
end_of_record |
@ -0,0 +1,67 @@ |
|||
'use strict'; |
|||
|
|||
function Queue(options) { |
|||
if (!(this instanceof Queue)) { |
|||
return new Queue(options); |
|||
} |
|||
|
|||
options = options || {}; |
|||
this.concurrency = options.concurrency || Infinity; |
|||
this.pending = 0; |
|||
this.jobs = []; |
|||
this.cbs = []; |
|||
this._done = done.bind(this); |
|||
} |
|||
|
|||
var arrayAddMethods = [ |
|||
'push', |
|||
'unshift', |
|||
'splice' |
|||
]; |
|||
|
|||
arrayAddMethods.forEach(function(method) { |
|||
Queue.prototype[method] = function() { |
|||
var methodResult = Array.prototype[method].apply(this.jobs, arguments); |
|||
this._run(); |
|||
return methodResult; |
|||
}; |
|||
}); |
|||
|
|||
Object.defineProperty(Queue.prototype, 'length', { |
|||
get: function() { |
|||
return this.pending + this.jobs.length; |
|||
} |
|||
}); |
|||
|
|||
Queue.prototype._run = function() { |
|||
if (this.pending === this.concurrency) { |
|||
return; |
|||
} |
|||
if (this.jobs.length) { |
|||
var job = this.jobs.shift(); |
|||
this.pending++; |
|||
job(this._done); |
|||
this._run(); |
|||
} |
|||
|
|||
if (this.pending === 0) { |
|||
while (this.cbs.length !== 0) { |
|||
var cb = this.cbs.pop(); |
|||
process.nextTick(cb); |
|||
} |
|||
} |
|||
}; |
|||
|
|||
Queue.prototype.onDone = function(cb) { |
|||
if (typeof cb === 'function') { |
|||
this.cbs.push(cb); |
|||
this._run(); |
|||
} |
|||
}; |
|||
|
|||
function done() { |
|||
this.pending--; |
|||
this._run(); |
|||
} |
|||
|
|||
module.exports = Queue; |
@ -0,0 +1,69 @@ |
|||
{ |
|||
"_from": "async-limiter@~1.0.0", |
|||
"_id": "async-limiter@1.0.0", |
|||
"_inBundle": false, |
|||
"_integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", |
|||
"_location": "/async-limiter", |
|||
"_phantomChildren": {}, |
|||
"_requested": { |
|||
"type": "range", |
|||
"registry": true, |
|||
"raw": "async-limiter@~1.0.0", |
|||
"name": "async-limiter", |
|||
"escapedName": "async-limiter", |
|||
"rawSpec": "~1.0.0", |
|||
"saveSpec": null, |
|||
"fetchSpec": "~1.0.0" |
|||
}, |
|||
"_requiredBy": [ |
|||
"/ws" |
|||
], |
|||
"_resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", |
|||
"_shasum": "78faed8c3d074ab81f22b4e985d79e8738f720f8", |
|||
"_spec": "async-limiter@~1.0.0", |
|||
"_where": "/var/www/htdocs/coze/node_modules/ws", |
|||
"author": { |
|||
"name": "Samuel Reed" |
|||
}, |
|||
"bugs": { |
|||
"url": "https://github.com/strml/async-limiter/issues" |
|||
}, |
|||
"bundleDependencies": false, |
|||
"dependencies": {}, |
|||
"deprecated": false, |
|||
"description": "asynchronous function queue with adjustable concurrency", |
|||
"devDependencies": { |
|||
"coveralls": "^2.11.2", |
|||
"eslint": "^4.6.1", |
|||
"eslint-plugin-mocha": "^4.11.0", |
|||
"intelli-espower-loader": "^1.0.1", |
|||
"istanbul": "^0.3.2", |
|||
"mocha": "^3.5.2", |
|||
"power-assert": "^1.4.4" |
|||
}, |
|||
"homepage": "https://github.com/strml/async-limiter#readme", |
|||
"keywords": [ |
|||
"throttle", |
|||
"async", |
|||
"limiter", |
|||
"asynchronous", |
|||
"job", |
|||
"task", |
|||
"concurrency", |
|||
"concurrent" |
|||
], |
|||
"license": "MIT", |
|||
"name": "async-limiter", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+https://github.com/strml/async-limiter.git" |
|||
}, |
|||
"scripts": { |
|||
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls", |
|||
"example": "node example", |
|||
"lint": "eslint .", |
|||
"test": "mocha --R intelli-espower-loader test/", |
|||
"travis": "npm run lint && npm run coverage" |
|||
}, |
|||
"version": "1.0.0" |
|||
} |
@ -0,0 +1,132 @@ |
|||
# Async-Limiter |
|||
|
|||
A module for limiting concurrent asynchronous actions in flight. Forked from [queue](https://github.com/jessetane/queue). |
|||
|
|||
[](http://www.npmjs.org/async-limiter) |
|||
[](https://travis-ci.org/STRML/async-limiter) |
|||
[](https://coveralls.io/r/STRML/async-limiter) |
|||
|
|||
This module exports a class `Limiter` that implements some of the `Array` API. |
|||
Pass async functions (ones that accept a callback or return a promise) to an instance's additive array methods. |
|||
|
|||
## Motivation |
|||
|
|||
Certain functions, like `zlib`, have [undesirable behavior](https://github.com/nodejs/node/issues/8871#issuecomment-250915913) when |
|||
run at infinite concurrency. |
|||
|
|||
In this case, it is actually faster, and takes far less memory, to limit concurrency. |
|||
|
|||
This module should do the absolute minimum work necessary to queue up functions. PRs are welcome that would |
|||
make this module faster or lighter, but new functionality is not desired. |
|||
|
|||
Style should confirm to nodejs/node style. |
|||
|
|||
## Example |
|||
|
|||
``` javascript |
|||
var Limiter = require('async-limiter') |
|||
|
|||
var t = new Limiter({concurrency: 2}); |
|||
var results = [] |
|||
|
|||
// add jobs using the familiar Array API |
|||
t.push(function (cb) { |
|||
results.push('two') |
|||
cb() |
|||
}) |
|||
|
|||
t.push( |
|||
function (cb) { |
|||
results.push('four') |
|||
cb() |
|||
}, |
|||
function (cb) { |
|||
results.push('five') |
|||
cb() |
|||
} |
|||
) |
|||
|
|||
t.unshift(function (cb) { |
|||
results.push('one') |
|||
cb() |
|||
}) |
|||
|
|||
t.splice(2, 0, function (cb) { |
|||
results.push('three') |
|||
cb() |
|||
}) |
|||
|
|||
// Jobs run automatically. If you want a callback when all are done, |
|||
// call 'onDone()'. |
|||
t.onDone(function () { |
|||
console.log('all done:', results) |
|||
}) |
|||
``` |
|||
|
|||
## Zlib Example |
|||
|
|||
```js |
|||
const zlib = require('zlib'); |
|||
const Limiter = require('async-limiter'); |
|||
|
|||
const message = {some: "data"}; |
|||
const payload = new Buffer(JSON.stringify(message)); |
|||
|
|||
// Try with different concurrency values to see how this actually |
|||
// slows significantly with higher concurrency! |
|||
// |
|||
// 5: 1398.607ms |
|||
// 10: 1375.668ms |
|||
// Infinity: 4423.300ms |
|||
// |
|||
const t = new Limiter({concurrency: 5}); |
|||
function deflate(payload, cb) { |
|||
t.push(function(done) { |
|||
zlib.deflate(payload, function(err, buffer) { |
|||
done(); |
|||
cb(err, buffer); |
|||
}); |
|||
}); |
|||
} |
|||
|
|||
console.time('deflate'); |
|||
for(let i = 0; i < 30000; ++i) { |
|||
deflate(payload, function (err, buffer) {}); |
|||
} |
|||
q.onDone(function() { |
|||
console.timeEnd('deflate'); |
|||
}); |
|||
``` |
|||
|
|||
## Install |
|||
|
|||
`npm install async-limiter` |
|||
|
|||
## Test |
|||
|
|||
`npm test` |
|||
|
|||
## API |
|||
|
|||
### `var t = new Limiter([opts])` |
|||
Constructor. `opts` may contain inital values for: |
|||
* `q.concurrency` |
|||
|
|||
## Instance methods |
|||
|
|||
### `q.onDone(fn)` |
|||
`fn` will be called once and only once, when the queue is empty. |
|||
|
|||
## Instance methods mixed in from `Array` |
|||
Mozilla has docs on how these methods work [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array). |
|||
### `q.push(element1, ..., elementN)` |
|||
### `q.unshift(element1, ..., elementN)` |
|||
### `q.splice(index , howMany[, element1[, ...[, elementN]]])` |
|||
|
|||
## Properties |
|||
### `q.concurrency` |
|||
Max number of jobs the queue should process concurrently, defaults to `Infinity`. |
|||
|
|||
### `q.length` |
|||
Jobs pending + jobs to process (readonly). |
|||
|
@ -0,0 +1 @@ |
|||
node_modules/ |
@ -0,0 +1,12 @@ |
|||
|
|||
1.0.1 / 2014-02-17 |
|||
================== |
|||
|
|||
* go away decimal point |
|||
* history |
|||
|
|||
1.0.0 / 2014-02-17 |
|||
================== |
|||
|
|||
* add jitter option |
|||
* Initial commit |
@ -0,0 +1,8 @@ |
|||
|
|||
test: |
|||
@./node_modules/.bin/mocha \
|
|||
--require should \
|
|||
--reporter dot \
|
|||
--bail |
|||
|
|||
.PHONY: test |
@ -0,0 +1,34 @@ |
|||
# backo |
|||
|
|||
Simple exponential backoff because the others seem to have weird abstractions. |
|||
|
|||
## Installation |
|||
|
|||
``` |
|||
$ npm install backo |
|||
``` |
|||
|
|||
## Options |
|||
|
|||
- `min` initial timeout in milliseconds [100] |
|||
- `max` max timeout [10000] |
|||
- `jitter` [0] |
|||
- `factor` [2] |
|||
|
|||
## Example |
|||
|
|||
```js |
|||
var Backoff = require('backo'); |
|||
var backoff = new Backoff({ min: 100, max: 20000 }); |
|||
|
|||
setTimeout(function(){ |
|||
something.reconnect(); |
|||
}, backoff.duration()); |
|||
|
|||
// later when something works |
|||
backoff.reset() |
|||
``` |
|||
|
|||
# License |
|||
|
|||
MIT |
@ -0,0 +1,11 @@ |
|||
{ |
|||
"name": "backo", |
|||
"repo": "segmentio/backo", |
|||
"dependencies": {}, |
|||
"version": "1.0.1", |
|||
"description": "simple backoff without the weird abstractions", |
|||
"keywords": ["backoff"], |
|||
"license": "MIT", |
|||
"scripts": ["index.js"], |
|||
"main": "index.js" |
|||
} |
@ -0,0 +1,85 @@ |
|||
|
|||
/** |
|||
* Expose `Backoff`. |
|||
*/ |
|||
|
|||
module.exports = Backoff; |
|||
|
|||
/** |
|||
* Initialize backoff timer with `opts`. |
|||
* |
|||
* - `min` initial timeout in milliseconds [100] |
|||
* - `max` max timeout [10000] |
|||
* - `jitter` [0] |
|||
* - `factor` [2] |
|||
* |
|||
* @param {Object} opts |
|||
* @api public |
|||
*/ |
|||
|
|||
function Backoff(opts) { |
|||
opts = opts || {}; |
|||
this.ms = opts.min || 100; |
|||
this.max = opts.max || 10000; |
|||
this.factor = opts.factor || 2; |
|||
this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0; |
|||
this.attempts = 0; |
|||
} |
|||
|
|||
/** |
|||
* Return the backoff duration. |
|||
* |
|||
* @return {Number} |
|||
* @api public |
|||
*/ |
|||
|
|||
Backoff.prototype.duration = function(){ |
|||
var ms = this.ms * Math.pow(this.factor, this.attempts++); |
|||
if (this.jitter) { |
|||
var rand = Math.random(); |
|||
var deviation = Math.floor(rand * this.jitter * ms); |
|||
ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation; |
|||
} |
|||
return Math.min(ms, this.max) | 0; |
|||
}; |
|||
|
|||
/** |
|||
* Reset the number of attempts. |
|||
* |
|||
* @api public |
|||
*/ |
|||
|
|||
Backoff.prototype.reset = function(){ |
|||
this.attempts = 0; |
|||
}; |
|||
|
|||
/** |
|||
* Set the minimum duration |
|||
* |
|||
* @api public |
|||
*/ |
|||
|
|||
Backoff.prototype.setMin = function(min){ |
|||
this.ms = min; |
|||
}; |
|||
|
|||
/** |
|||
* Set the maximum duration |
|||
* |
|||
* @api public |
|||
*/ |
|||
|
|||
Backoff.prototype.setMax = function(max){ |
|||
this.max = max; |
|||
}; |
|||
|
|||
/** |
|||
* Set the jitter |
|||
* |
|||
* @api public |
|||
*/ |
|||
|
|||
Backoff.prototype.setJitter = function(jitter){ |
|||
this.jitter = jitter; |
|||
}; |
|||
|
@ -0,0 +1,47 @@ |
|||
{ |
|||
"_from": "backo2@1.0.2", |
|||
"_id": "backo2@1.0.2", |
|||
"_inBundle": false, |
|||
"_integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", |
|||
"_location": "/backo2", |
|||
"_phantomChildren": {}, |
|||
"_requested": { |
|||
"type": "version", |
|||
"registry": true, |
|||
"raw": "backo2@1.0.2", |
|||
"name": "backo2", |
|||
"escapedName": "backo2", |
|||
"rawSpec": "1.0.2", |
|||
"saveSpec": null, |
|||
"fetchSpec": "1.0.2" |
|||
}, |
|||
"_requiredBy": [ |
|||
"/socket.io-client" |
|||
], |
|||
"_resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", |
|||
"_shasum": "31ab1ac8b129363463e35b3ebb69f4dfcfba7947", |
|||
"_spec": "backo2@1.0.2", |
|||
"_where": "/var/www/htdocs/coze/node_modules/socket.io-client", |
|||
"bugs": { |
|||
"url": "https://github.com/mokesmokes/backo/issues" |
|||
}, |
|||
"bundleDependencies": false, |
|||
"dependencies": {}, |
|||
"deprecated": false, |
|||
"description": "simple backoff based on segmentio/backo", |
|||
"devDependencies": { |
|||
"mocha": "*", |
|||
"should": "*" |
|||
}, |
|||
"homepage": "https://github.com/mokesmokes/backo#readme", |
|||
"keywords": [ |
|||
"backoff" |
|||
], |
|||
"license": "MIT", |
|||
"name": "backo2", |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git+https://github.com/mokesmokes/backo.git" |
|||
}, |
|||
"version": "1.0.2" |
|||
} |
@ -0,0 +1,18 @@ |
|||
|
|||
var Backoff = require('..'); |
|||
var assert = require('assert'); |
|||
|
|||
describe('.duration()', function(){ |
|||
it('should increase the backoff', function(){ |
|||
var b = new Backoff; |
|||
|
|||
assert(100 == b.duration()); |
|||
assert(200 == b.duration()); |
|||
assert(400 == b.duration()); |
|||
assert(800 == b.duration()); |
|||
|
|||
b.reset(); |
|||
assert(100 == b.duration()); |
|||
assert(200 == b.duration()); |
|||
}) |
|||
}) |
@ -0,0 +1,3 @@ |
|||
/node_modules/ |
|||
Gruntfile.js |
|||
/test/ |
@ -0,0 +1,19 @@ |
|||
language: node_js |
|||
node_js: |
|||
- '0.12' |
|||
- iojs-1 |
|||
- iojs-2 |
|||
- iojs-3 |
|||
- '4.1' |
|||
before_script: |
|||
- npm install |
|||
before_install: npm install -g npm@'>=2.13.5' |
|||
deploy: |
|||
provider: npm |
|||
email: niklasvh@gmail.com |
|||
api_key: |
|||
secure: oHV9ArprTj5WOk7MP1UF7QMJ70huXw+y7xXb5wF4+V2H8Hyfa5TfE0DiOmqrube1WXTeH1FLgq54shp/sJWi47Hkg/GyeoB5NnsPhYEaJkaON9UG5blML+ODiNVsEnq/1kNBQ8e0+0JItMPLGySKyFmuZ3yflulXKS8O88mfINo= |
|||
on: |
|||
tags: true |
|||
branch: master |
|||
repo: niklasvh/base64-arraybuffer |