-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
238 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import Promises from '@promises/core'; | ||
import { IOptionalPromise } from '@promises/interfaces'; | ||
import whileSeries from './'; | ||
|
||
Promises._setOnConstructor('whileSeries', whileSeries); | ||
|
||
export default whileSeries; | ||
|
||
declare module '@promises/core' { | ||
namespace Promises { | ||
/** | ||
* @example | ||
* | ||
* ```typescript | ||
* let index: number = 0; | ||
* Promises.whileSeries(() => { | ||
* console.log(`test ${index}`); | ||
* return index++ < 3; | ||
* }, () => Promises.timeout((resolve) => { | ||
* console.log(`iteratee ${index}`); | ||
* resolve(); | ||
* }, 4 - index)).then(() => { | ||
* console.log('completed'); | ||
* }); | ||
* // => 'test 0' | ||
* // => 'iteratee 1' | ||
* // => 'test 1' | ||
* // => 'iteratee 2' | ||
* // => 'test 2' | ||
* // => 'iteratee 3' | ||
* // => 'test 3' | ||
* // => 'completed' | ||
* ``` | ||
*/ | ||
export function whileSeries(test: () => IOptionalPromise<boolean>, iteratee?: () => IOptionalPromise<any>): Promises<void>; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/** | ||
* @module @promises/while-series | ||
* @copyright © 2017 Yisrael Eliav <[email protected]> (https://github.com/yisraelx) | ||
* @license MIT | ||
*/ | ||
|
||
import { IOptionalPromise } from '@promises/interfaces'; | ||
import exec from '@promises/exec'; | ||
import doWhileSeries from '@promises/do-while-series'; | ||
|
||
/** | ||
* @example | ||
* | ||
* ```typescript | ||
* let index: number = 0; | ||
* whileSeries(() => { | ||
* console.log(`test ${index}`); | ||
* return index++ < 3; | ||
* }, () => timeout((resolve) => { | ||
* console.log(`iteratee ${index}`); | ||
* resolve(); | ||
* }, 4 - index)).then(() => { | ||
* console.log('completed'); | ||
* }); | ||
* // => 'test 0' | ||
* // => 'iteratee 1' | ||
* // => 'test 1' | ||
* // => 'iteratee 2' | ||
* // => 'test 2' | ||
* // => 'iteratee 3' | ||
* // => 'test 3' | ||
* // => 'completed' | ||
* ``` | ||
*/ | ||
function whileSeries(test: () => IOptionalPromise<boolean>, iteratee: () => IOptionalPromise<any> = () => { }): Promise<void> { | ||
return exec(test).then((isPass: boolean) => { | ||
if (isPass) { | ||
return doWhileSeries(test, iteratee); | ||
} | ||
}); | ||
} | ||
|
||
export default whileSeries; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "@promises/while-series", | ||
"version": "NEXT-PLACEHOLDER", | ||
"description": "While Series is package from Promises library", | ||
"main": "es5.js", | ||
"browser": "umd.min.js", | ||
"module": "index.js", | ||
"es2015": "index.js", | ||
"typings": "index.d.ts", | ||
"bundle": "bundle.min.js", | ||
"author": { | ||
"name": "Yisrael Eliev", | ||
"url": "https://github.com/yisraelx", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"promise", | ||
"promises", | ||
"utility", | ||
"modules", | ||
"async", | ||
"await", | ||
"deferred" | ||
], | ||
"homepage": "https://github.com/yisraelx/promises#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/yisraelx/promises.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/yisraelx/promises/issues" | ||
}, | ||
"optionalDependencies": { | ||
"@promises/core": "^0.2.0" | ||
}, | ||
"dependencies": { | ||
"@promises/do-while-series": "NEXT-PLACEHOLDER", | ||
"@promises/exec": "^0.2.0", | ||
"@promises/interfaces": "^0.2.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import whileSeries from '@promises/while-series'; | ||
import timeout from '@promises/timeout'; | ||
|
||
describe('whileSeries', () => { | ||
|
||
it('should be not iteratee if test not pass', () => { | ||
let test = 0; | ||
let iteratee = 0; | ||
return whileSeries(() => { | ||
test++; | ||
return false; | ||
}, () => { | ||
iteratee++; | ||
}).then(() => { | ||
expect(test).toBe(1); | ||
expect(iteratee).toBe(0); | ||
}); | ||
}); | ||
|
||
it('should be iteratee without iteratee function', () => { | ||
let index = 0; | ||
return whileSeries(() => { | ||
return index++ < 5; | ||
}).then(() => { | ||
expect(index).toBe(6); | ||
}); | ||
}); | ||
|
||
it('should be reject on test error', () => { | ||
return whileSeries(() => { | ||
throw 'test'; | ||
}, () => { | ||
throw 'iteratee'; | ||
}).then(() => { | ||
throw 'resolve'; | ||
}).catch((error) => { | ||
expect(error).toBe('test'); | ||
}); | ||
}); | ||
|
||
it('should be reject on iteratee error', () => { | ||
let stop = false; | ||
return whileSeries(() => { | ||
return stop = !stop; | ||
}, () => { | ||
throw 'iteratee'; | ||
}).then(() => { | ||
throw 'resolve'; | ||
}).catch((error) => { | ||
expect(error).toBe('iteratee'); | ||
}); | ||
}); | ||
|
||
it('should be iteratee series 5 times', () => { | ||
let count = 0; | ||
let length = 5; | ||
let test = []; | ||
let iteratee = []; | ||
return whileSeries(() => { | ||
test.push(count); | ||
return count++ < length; | ||
}, () => { | ||
iteratee.push(count); | ||
}).then(() => { | ||
expect(count).toBe(6); | ||
expect(test).toEqual([0, 1, 2, 3, 4, 5]); | ||
expect(iteratee).toEqual([1, 2, 3, 4, 5]); | ||
}); | ||
}); | ||
|
||
it('should be iteratee series 5 times with promise iteratee', () => { | ||
let count = 0; | ||
let length = 5; | ||
let test = []; | ||
let iteratee = []; | ||
return whileSeries(() => { | ||
test.push(count); | ||
return count++ < length; | ||
}, () => { | ||
return timeout((resolve) => { | ||
iteratee.push(count); | ||
resolve(); | ||
}, length - count); | ||
}).then(() => { | ||
expect(count).toBe(6); | ||
expect(test).toEqual([0, 1, 2, 3, 4, 5]); | ||
expect(iteratee).toEqual([1, 2, 3, 4, 5]); | ||
}); | ||
}); | ||
|
||
it('should be iteratee series 5 times with promise test', () => { | ||
let count = 0; | ||
let length = 5; | ||
let test = []; | ||
let iteratee = []; | ||
return whileSeries(() => { | ||
return timeout((resolve) => { | ||
test.push(count); | ||
resolve(count++ < length); | ||
}); | ||
}, () => { | ||
iteratee.push(count); | ||
}).then(() => { | ||
expect(count).toBe(6); | ||
expect(test).toEqual([0, 1, 2, 3, 4, 5]); | ||
expect(iteratee).toEqual([1, 2, 3, 4, 5]); | ||
}); | ||
}); | ||
}); |