Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c561b2a25 | |||
| de4342aa18 | |||
| eeb05aa987 | |||
| 1cc575d2c8 | |||
| 3bcddff4ab | |||
| b7da538595 | |||
| aee7e17035 | |||
| ddd6e45662 | |||
| 3a9a8686a1 | |||
| 499ae24297 | |||
| 820c6ccb74 | |||
| 9b8198d592 | |||
| 1f0e574854 | |||
| 9f305070eb | |||
| 062f99990b | |||
| d3201b0d35 | |||
| 5df94778dd | |||
| 2dc91dc2f0 | |||
| 3784de03ce | |||
| e49be654eb | |||
| 9f599e79a1 | |||
| 3821799070 | |||
| 80de670cad | |||
| 2d64c43b55 | |||
| 0da614f1c0 | |||
| 7daefcac11 | |||
| 912bdc61fb | |||
| 4b5581a6f1 | |||
| 4aa3d18219 | |||
| 21f3a1dc59 | |||
| 69d9881215 | |||
| f218d24c97 | |||
| 29983e44fa |
20
.gitignore
vendored
20
.gitignore
vendored
@@ -1,4 +1,20 @@
|
|||||||
node_modules/
|
.nogit/
|
||||||
docs/
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# caches
|
||||||
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_*/
|
||||||
|
|
||||||
|
# custom
|
||||||
105
.gitlab-ci.yml
105
.gitlab-ci.yml
@@ -1,10 +1,10 @@
|
|||||||
# gitzone standard
|
# gitzone ci_default
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- .npmci_cache/
|
- .npmci_cache/
|
||||||
key: "$CI_BUILD_STAGE"
|
key: '$CI_BUILD_STAGE'
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- security
|
- security
|
||||||
@@ -12,54 +12,44 @@ stages:
|
|||||||
- release
|
- release
|
||||||
- metadata
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- pnpm install -g pnpm
|
||||||
|
- pnpm install -g @shipzone/npmci
|
||||||
|
- npmci npm prepare
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# security stage
|
# security stage
|
||||||
# ====================
|
# ====================
|
||||||
mirror:
|
# ====================
|
||||||
|
# security stage
|
||||||
|
# ====================
|
||||||
|
auditProductionDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci git mirror
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
- npmci command pnpm audit --audit-level=high --prod
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
allow_failure: true
|
||||||
|
|
||||||
snyk:
|
auditDevDependencies:
|
||||||
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g snyk
|
- npmci command npm config set registry https://registry.npmjs.org
|
||||||
- npmci command npm install --ignore-scripts
|
- npmci command pnpm audit --audit-level=high --dev
|
||||||
- npmci command snyk test
|
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
allow_failure: true
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# test stage
|
# test stage
|
||||||
# ====================
|
# ====================
|
||||||
testLEGACY:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci node install legacy
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
testLTS:
|
testStable:
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci node install lts
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
testSTABLE:
|
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci node install stable
|
- npmci node install stable
|
||||||
@@ -68,7 +58,16 @@ testSTABLE:
|
|||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
|
||||||
|
testBuild:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm build
|
||||||
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
@@ -78,6 +77,7 @@ release:
|
|||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
@@ -86,20 +86,15 @@ release:
|
|||||||
# ====================
|
# ====================
|
||||||
codequality:
|
codequality:
|
||||||
stage: metadata
|
stage: metadata
|
||||||
image: docker:stable
|
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
services:
|
only:
|
||||||
- docker:stable-dind
|
- tags
|
||||||
script:
|
script:
|
||||||
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
- npmci command npm install -g typescript
|
||||||
- docker run
|
- npmci npm prepare
|
||||||
--env SOURCE_CODE="$PWD"
|
- npmci npm install
|
||||||
--volume "$PWD":/code
|
|
||||||
--volume /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
|
||||||
artifacts:
|
|
||||||
paths: [codeclimate.json]
|
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- priv
|
- priv
|
||||||
|
|
||||||
@@ -110,16 +105,18 @@ trigger:
|
|||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: hosttoday/ht-docker-node:npmci
|
|
||||||
stage: metadata
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g npmpage
|
- npmci node install stable
|
||||||
- npmci command npmpage
|
- npmci npm install
|
||||||
|
- npmci command npm run buildDocs
|
||||||
tags:
|
tags:
|
||||||
|
- lossless
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
only:
|
only:
|
||||||
@@ -129,13 +126,3 @@ pages:
|
|||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
||||||
windowsCompatibility:
|
|
||||||
image: stefanscherer/node-windows:10-build-tools
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npm install & npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- windows
|
|
||||||
allow_failure: true
|
|
||||||
|
|||||||
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "npm test",
|
||||||
|
"name": "Run npm test",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"json.schemas": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["/npmextra.json"],
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"npmci": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for npmci"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for gitzone",
|
||||||
|
"properties": {
|
||||||
|
"projectType": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
37
README.md
37
README.md
@@ -1,37 +0,0 @@
|
|||||||
# @pushrocks/smartdelay
|
|
||||||
|
|
||||||
timeouts for the async/await era, written in TypeScript
|
|
||||||
|
|
||||||
## Availabililty
|
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/smartdelay)
|
|
||||||
[](https://GitLab.com/pushrocks/smartdelay)
|
|
||||||
[](https://github.com/pushrocks/smartdelay)
|
|
||||||
[](https://pushrocks.gitlab.io/smartdelay/)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
|
|
||||||
[](https://GitLab.com/pushrocks/smartdelay/commits/master)
|
|
||||||
[](https://GitLab.com/pushrocks/smartdelay/commits/master)
|
|
||||||
[](https://www.npmjs.com/package/smartdelay)
|
|
||||||
[](https://david-dm.org/pushrocks/smartdelay)
|
|
||||||
[](https://www.bithound.io/github/pushrocks/smartdelay/master/dependencies/npm)
|
|
||||||
[](https://www.bithound.io/github/pushrocks/smartdelay)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
Use TypeScript for best in class instellisense.
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
import * as smartdelay from 'smartdelay';
|
|
||||||
|
|
||||||
(async () => {
|
|
||||||
await smartdelay.delayFor('3000'); // excution will halt here 3 seconds for this function scope BUT NOT BLOCK anything else
|
|
||||||
console.log();
|
|
||||||
})();
|
|
||||||
```
|
|
||||||
|
|
||||||
[](https://push.rocks)
|
|
||||||
@@ -2,5 +2,16 @@
|
|||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [],
|
"npmGlobalTools": [],
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"projectType": "npm",
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "push.rocks",
|
||||||
|
"gitrepo": "smartdelay",
|
||||||
|
"description": "timeouts for the async/await era, written in TypeScript",
|
||||||
|
"npmPackagename": "@push.rocks/smartdelay",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
1663
package-lock.json
generated
1663
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
42
package.json
42
package.json
@@ -1,13 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartdelay",
|
"name": "@push.rocks/smartdelay",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "2.0.3",
|
"version": "3.0.5",
|
||||||
"description": "timeouts for the async/await era, written in TypeScript",
|
"description": "timeouts for the async/await era, written in TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/)",
|
"test": "(tstest test/)",
|
||||||
"build": "(tsbuild)"
|
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
|
||||||
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -20,13 +21,30 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/smartdelay#README",
|
"homepage": "https://gitlab.com/pushrocks/smartdelay#README",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/smartpromise": "^3.0.2"
|
"@push.rocks/smartpromise": "^4.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.8",
|
"@gitzone/tsbuild": "^2.1.66",
|
||||||
"@gitzone/tsrun": "^1.2.1",
|
"@gitzone/tsbundle": "^2.0.8",
|
||||||
"@gitzone/tstest": "^1.0.18",
|
"@gitzone/tsrun": "^1.2.42",
|
||||||
"@types/node": "^11.11.7",
|
"@gitzone/tstest": "^1.0.74",
|
||||||
"tapbundle": "^2.0.2"
|
"@push.rocks/tapbundle": "^5.0.8",
|
||||||
}
|
"@types/node": "^20.4.1"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/**/*",
|
||||||
|
"ts_web/**/*",
|
||||||
|
"dist/**/*",
|
||||||
|
"dist_*/**/*",
|
||||||
|
"dist_ts/**/*",
|
||||||
|
"dist_ts_web/**/*",
|
||||||
|
"assets/**/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
],
|
||||||
|
"browserslist": [
|
||||||
|
"last 1 chrome versions"
|
||||||
|
],
|
||||||
|
"type": "module"
|
||||||
}
|
}
|
||||||
|
|||||||
4711
pnpm-lock.yaml
generated
Normal file
4711
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
50
readme.md
Normal file
50
readme.md
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
# @push.rocks/smartdelay
|
||||||
|
timeouts for the async/await era, written in TypeScript
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@push.rocks/smartdelay)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartdelay)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartdelay)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartdelay/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
|
||||||
|
Status Category | Status Badge
|
||||||
|
-- | --
|
||||||
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
|
npm | [](https://lossless.cloud)
|
||||||
|
Snyk | [](https://lossless.cloud)
|
||||||
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
Code Style | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
import * as smartdelay from 'smartdelay';
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
await smartdelay.delayFor(3000); // excution will halt here 3 seconds for this function scope BUT NOT BLOCK anything else
|
||||||
|
console.log('hi there');
|
||||||
|
|
||||||
|
// You can also go random
|
||||||
|
await smartdelay.delayForRandom(2000, 6000); // this will delay exection somewhere between 2 and 6 seconds.
|
||||||
|
console.log('Yay. You did not see me coming at this exact time');
|
||||||
|
})();
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
|
||||||
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
## Legal
|
||||||
|
> MIT licensed | **©** [Task Venture Capital GmbH](https://task.vc)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
34
test/test.ts
34
test/test.ts
@@ -1,8 +1,8 @@
|
|||||||
import { expect, tap } from 'tapbundle';
|
import { expect, tap } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
import * as smartdelay from '../ts/index';
|
import * as smartdelay from '../ts/index.js';
|
||||||
|
|
||||||
tap.test('.delayFor should delay async', async tools => {
|
tap.test('.delayFor should delay async', async (tools) => {
|
||||||
tools.timeout(5000);
|
tools.timeout(5000);
|
||||||
let timePassed = false;
|
let timePassed = false;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
@@ -10,31 +10,33 @@ tap.test('.delayFor should delay async', async tools => {
|
|||||||
}, 2000);
|
}, 2000);
|
||||||
await smartdelay.delayFor(3000).then(async () => {
|
await smartdelay.delayFor(3000).then(async () => {
|
||||||
// tslint:disable-next-line:no-unused-expression
|
// tslint:disable-next-line:no-unused-expression
|
||||||
expect(timePassed).to.be.true;
|
expect(timePassed).toBeTrue();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('.delayForRandpm should delay async for a random time period', async tools => {
|
tap.test('.delayForRandom should delay async for a random time period', async (tools) => {
|
||||||
tools.timeout(5000);
|
let timePassedBefore = false;
|
||||||
let timePassed = false;
|
let timePassedAfter = false;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
timePassed = true;
|
timePassedBefore = true;
|
||||||
}, 3000);
|
}, 3000);
|
||||||
await smartdelay.delayForRandom(3000, 4900).then(async () => {
|
setTimeout(() => {
|
||||||
// tslint:disable-next-line:no-unused-expression
|
timePassedAfter = true;
|
||||||
expect(timePassed).to.be.true;
|
}, 5000);
|
||||||
});
|
await smartdelay.delayForRandom(3000, 4900);
|
||||||
|
expect(timePassedBefore).toBeTrue();
|
||||||
|
expect(timePassedAfter).toBeFalse();
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('.delayFor should pass on a type', async tools => {
|
tap.test('.delayFor should pass on a type', async (tools) => {
|
||||||
tools.timeout(5000);
|
tools.timeout(5000);
|
||||||
let timePassed = false;
|
let timePassed = false;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
timePassed = true;
|
timePassed = true;
|
||||||
}, 2000);
|
}, 2000);
|
||||||
let hey = 'heyThere';
|
let hey = 'heyThere';
|
||||||
await smartdelay.delayFor<string>(3000, hey).then(async stringArg => {
|
await smartdelay.delayFor<string>(3000, hey).then(async (stringArg) => {
|
||||||
expect(stringArg).equal('heyThere');
|
expect(stringArg).toEqual('heyThere');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -43,7 +45,7 @@ tap.test('smartdelay.Timeout', async () => {
|
|||||||
await timeout.promise;
|
await timeout.promise;
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.test('smartdelay.Timeout should cancel', async tools => {
|
tap.test('smartdelay.Timeout should cancel', async (tools) => {
|
||||||
let timeout = new smartdelay.Timeout(60000);
|
let timeout = new smartdelay.Timeout(60000);
|
||||||
timeout.cancel();
|
timeout.cancel();
|
||||||
});
|
});
|
||||||
|
|||||||
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@push.rocks/smartdelay',
|
||||||
|
version: '3.0.5',
|
||||||
|
description: 'timeouts for the async/await era, written in TypeScript'
|
||||||
|
}
|
||||||
80
ts/index.ts
80
ts/index.ts
@@ -1,41 +1,48 @@
|
|||||||
import * as smartpromise from '@pushrocks/smartpromise';
|
import * as smartpromise from '@push.rocks/smartpromise';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* delay something, works like setTimeout
|
* delay something, works like setTimeout
|
||||||
* @param timeInMillisecond
|
* @param timeInMillisecondArg
|
||||||
* @param passOn
|
* @param passOnArg
|
||||||
*/
|
*/
|
||||||
export let delayFor = async <T>(timeInMillisecond: number, passOn?: T) => {
|
export let delayFor = async <T>(
|
||||||
await new Promise((resolve, reject) => {
|
timeInMillisecondArg: number,
|
||||||
setTimeout(() => {
|
passOnArg?: T,
|
||||||
resolve();
|
unrefedArg = false
|
||||||
}, timeInMillisecond);
|
) => {
|
||||||
});
|
const timeout = new Timeout(timeInMillisecondArg, null, unrefedArg);
|
||||||
return passOn;
|
await timeout.promise;
|
||||||
|
return passOnArg;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* delay for a random time
|
* delay for a random time
|
||||||
*/
|
*/
|
||||||
export let delayForRandom = async <T>(
|
export let delayForRandom = async <T>(
|
||||||
timeMinInMillisecond: number,
|
timeMinInMillisecondArg: number,
|
||||||
timeMaxInMillisecond: number,
|
timeMaxInMillisecondArg: number,
|
||||||
passOn?: T
|
passOnArg?: T,
|
||||||
|
unrefedArg = false
|
||||||
) => {
|
) => {
|
||||||
await new Promise((resolve, reject) => {
|
await delayFor(
|
||||||
setTimeout(() => {
|
Math.random() * (timeMaxInMillisecondArg - timeMinInMillisecondArg) + timeMinInMillisecondArg,
|
||||||
resolve();
|
null,
|
||||||
}, Math.random() * (timeMaxInMillisecond - timeMinInMillisecond) + timeMinInMillisecond);
|
unrefedArg
|
||||||
});
|
);
|
||||||
return passOn;
|
return passOnArg;
|
||||||
};
|
};
|
||||||
|
|
||||||
export class Timeout<T> {
|
export class Timeout<T> {
|
||||||
promise: Promise<T>;
|
promise: Promise<T>;
|
||||||
private _deferred: smartpromise.Deferred<T>;
|
private _deferred: smartpromise.Deferred<T>;
|
||||||
private _timeout: any;
|
private _timeout;
|
||||||
private _cancelled: boolean = false;
|
private _cancelled: boolean = false;
|
||||||
constructor(timeInMillisecondArg, passOn?: T) {
|
|
||||||
|
private timeoutInMillis: number;
|
||||||
|
private started: number;
|
||||||
|
|
||||||
|
constructor(timeInMillisecondArg, passOn?: T, unrefedArg = false) {
|
||||||
|
this.timeoutInMillis = timeInMillisecondArg;
|
||||||
this._deferred = smartpromise.defer<T>();
|
this._deferred = smartpromise.defer<T>();
|
||||||
this.promise = this._deferred.promise;
|
this.promise = this._deferred.promise;
|
||||||
this._timeout = setTimeout(() => {
|
this._timeout = setTimeout(() => {
|
||||||
@@ -43,14 +50,29 @@ export class Timeout<T> {
|
|||||||
this._deferred.resolve(passOn);
|
this._deferred.resolve(passOn);
|
||||||
}
|
}
|
||||||
}, timeInMillisecondArg);
|
}, timeInMillisecondArg);
|
||||||
}
|
this.started = Date.now();
|
||||||
|
if (unrefedArg) {
|
||||||
makeUnrefed() {
|
|
||||||
this._timeout.unref();
|
|
||||||
}
|
|
||||||
|
|
||||||
cancel() {
|
|
||||||
this._cancelled = true;
|
|
||||||
this.makeUnrefed();
|
this.makeUnrefed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* unreffing a timeout causes the node process to not wait for completion before exit
|
||||||
|
*/
|
||||||
|
public makeUnrefed() {
|
||||||
|
this._timeout.unref();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* cancels the timer
|
||||||
|
*/
|
||||||
|
public cancel() {
|
||||||
|
this._cancelled = true;
|
||||||
|
clearTimeout(this._timeout);
|
||||||
|
}
|
||||||
|
|
||||||
|
public getTimeLeft() {
|
||||||
|
const result = this.started + this.timeoutInMillis - Date.now();
|
||||||
|
return result > 0 ? result : 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
10
tsconfig.json
Normal file
10
tsconfig.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "ES2022",
|
||||||
|
"moduleResolution": "nodenext",
|
||||||
|
"esModuleInterop": true
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "tslint-config-standard"
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user