Compare commits
89 Commits
Author | SHA1 | Date | |
---|---|---|---|
4969a703da | |||
5e16294773 | |||
e0a4e5a076 | |||
23c6e17536 | |||
a0df30adf1 | |||
d4de9087d5 | |||
6c5a16bbdb | |||
4a03e952fc | |||
80b404a379 | |||
d7c1bd06f2 | |||
124400df69 | |||
84d3a6310d | |||
984f7e7bb6 | |||
f4e548aa2c | |||
3f85e9fa3c | |||
1b60ba805d | |||
ceddf45850 | |||
45fd82279e | |||
110a2e27cc | |||
a41652ba52 | |||
fad166c100 | |||
ed6db60055 | |||
0097f819a0 | |||
a3ed2e5dbd | |||
f9e43be46a | |||
ca22a417da | |||
093b1dd7a9 | |||
3c1bfaa1f7 | |||
83cd98022a | |||
b06ceaa9bf | |||
e8057c0c95 | |||
d389d180e5 | |||
d92123dcb9 | |||
5d8f569339 | |||
7168bd7ffd | |||
5031d28c32 | |||
4eaf91af3a | |||
511396894d | |||
a1bd0499a0 | |||
803c8a4d8f | |||
d5a2b0a78e | |||
5fdd756672 | |||
5f7580b28f | |||
bba7bb7eea | |||
552cae9755 | |||
610c1d6beb | |||
037e33caee | |||
2400e61024 | |||
0fe16f4fc4 | |||
fa8fb5b622 | |||
389f502dd0 | |||
ea3e7dd2ab | |||
e4ac6232b8 | |||
fd9c57dcd0 | |||
090142cb16 | |||
b05a8e4fa4 | |||
66ee8ba0df | |||
f9d8175c8c | |||
5e218e36a5 | |||
417772a1ec | |||
e34d9f7cad | |||
9908d759c6 | |||
c4d48b17e9 | |||
3cf9396773 | |||
3632941abc | |||
b8d7653434 | |||
f2b02a2f68 | |||
aa8e2a9ae4 | |||
bfff3b4da5 | |||
5e2d11980c | |||
71edd16d65 | |||
f572603e04 | |||
71a1cde491 | |||
487cd53c3b | |||
e050031313 | |||
cbbb31e0e7 | |||
a758196705 | |||
951d260103 | |||
9605721f75 | |||
fe484e334f | |||
76a2ce1a9d | |||
b4d9059f4f | |||
d1744b570d | |||
4d2ed1260d | |||
eb2d3e1b25 | |||
cd05c5c8d7 | |||
b1652cc2ed | |||
02bce51ef6 | |||
be57dd2dc5 |
66
.gitea/workflows/default_nottags.yaml
Normal file
66
.gitea/workflows/default_nottags.yaml
Normal file
@ -0,0 +1,66 @@
|
||||
name: Default (not tags)
|
||||
|
||||
on:
|
||||
push:
|
||||
tags-ignore:
|
||||
- '**'
|
||||
|
||||
env:
|
||||
IMAGE: code.foss.global/host.today/ht-docker-node:npmci
|
||||
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@/${{gitea.repository}}.git
|
||||
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||
|
||||
jobs:
|
||||
security:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Install pnpm and npmci
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @ship.zone/npmci
|
||||
|
||||
- name: Run npm prepare
|
||||
run: npmci npm prepare
|
||||
|
||||
- name: Audit production dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --prod
|
||||
continue-on-error: true
|
||||
|
||||
- name: Audit development dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --dev
|
||||
continue-on-error: true
|
||||
|
||||
test:
|
||||
if: ${{ always() }}
|
||||
needs: security
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Test stable
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm test
|
||||
|
||||
- name: Test build
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm build
|
124
.gitea/workflows/default_tags.yaml
Normal file
124
.gitea/workflows/default_tags.yaml
Normal file
@ -0,0 +1,124 @@
|
||||
name: Default (tags)
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
env:
|
||||
IMAGE: code.foss.global/host.today/ht-docker-node:npmci
|
||||
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@/${{gitea.repository}}.git
|
||||
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||
|
||||
jobs:
|
||||
security:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @ship.zone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Audit production dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --prod
|
||||
continue-on-error: true
|
||||
|
||||
- name: Audit development dependencies
|
||||
run: |
|
||||
npmci command npm config set registry https://registry.npmjs.org
|
||||
npmci command pnpm audit --audit-level=high --dev
|
||||
continue-on-error: true
|
||||
|
||||
test:
|
||||
if: ${{ always() }}
|
||||
needs: security
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @ship.zone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Test stable
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm test
|
||||
|
||||
- name: Test build
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
npmci npm build
|
||||
|
||||
release:
|
||||
needs: test
|
||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @ship.zone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Release
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm publish
|
||||
|
||||
metadata:
|
||||
needs: test
|
||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ${{ env.IMAGE }}
|
||||
continue-on-error: true
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
pnpm install -g pnpm
|
||||
pnpm install -g @ship.zone/npmci
|
||||
npmci npm prepare
|
||||
|
||||
- name: Code quality
|
||||
run: |
|
||||
npmci command npm install -g typescript
|
||||
npmci npm install
|
||||
|
||||
- name: Trigger
|
||||
run: npmci trigger
|
||||
|
||||
- name: Build docs and upload artifacts
|
||||
run: |
|
||||
npmci node install stable
|
||||
npmci npm install
|
||||
pnpm install -g @git.zone/tsdoc
|
||||
npmci command tsdoc
|
||||
continue-on-error: true
|
18
.gitignore
vendored
18
.gitignore
vendored
@ -1,5 +1,19 @@
|
||||
.nogit/
|
||||
node_modules/
|
||||
|
||||
# artifacts
|
||||
coverage/
|
||||
public/
|
||||
pages/
|
||||
|
||||
# installs
|
||||
node_modules/
|
||||
|
||||
# caches
|
||||
.yarn/
|
||||
.cache/
|
||||
.rpt2_cache
|
||||
|
||||
# builds
|
||||
dist/
|
||||
dist_*/
|
||||
|
||||
#------# custom
|
@ -1,86 +0,0 @@
|
||||
# gitzone standard
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- .yarn/
|
||||
key: "$CI_BUILD_STAGE"
|
||||
|
||||
stages:
|
||||
- mirror
|
||||
- test
|
||||
- release
|
||||
- trigger
|
||||
- pages
|
||||
|
||||
mirror:
|
||||
stage: mirror
|
||||
script:
|
||||
- npmci git mirror
|
||||
tags:
|
||||
- docker
|
||||
|
||||
testLEGACY:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install legacy
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
allow_failure: true
|
||||
|
||||
testLTS:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install lts
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
|
||||
testSTABLE:
|
||||
stage: test
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci npm install
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- docker
|
||||
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci npm publish
|
||||
only:
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
|
||||
trigger:
|
||||
stage: trigger
|
||||
script:
|
||||
- npmci trigger
|
||||
only:
|
||||
- tags
|
||||
tags:
|
||||
- docker
|
||||
|
||||
pages:
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
stage: pages
|
||||
script:
|
||||
- npmci command yarn global add npmpage
|
||||
- npmci command npmpage
|
||||
tags:
|
||||
- docker
|
||||
only:
|
||||
- tags
|
||||
artifacts:
|
||||
expire_in: 1 week
|
||||
paths:
|
||||
- public
|
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"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
146
changelog.md
Normal file
146
changelog.md
Normal file
@ -0,0 +1,146 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-04-25 - 3.0.10 - fix(ci)
|
||||
Update CI workflows, dependency versions, and TypeScript configuration
|
||||
|
||||
- Updated .gitea workflow files: changed IMAGE URL and npmci package name (@shipzone/npmci to @ship.zone/npmci)
|
||||
- Upgraded development dependencies from @gitzone/* to @git.zone/* packages
|
||||
- Enhanced tsconfig.json with emitDecoratorMetadata, baseUrl, and paths
|
||||
- Minor code formatting improvements and trailing comma adjustments in TypeScript files
|
||||
- Updated package.json homepage and added bugs/overrides configuration
|
||||
|
||||
## 2025-04-25 - 3.0.9 - fix(deps/ts_plugins)
|
||||
Update @types/node dependency and adjust rxjs operator exports ordering
|
||||
|
||||
- Upgraded @types/node from ^20.8.10 to ^22.15.2 in package.json
|
||||
- Reordered rxjs operator imports and exports in ts/smartrx.plugins.rxjs.ts for improved clarity
|
||||
|
||||
## 2024-05-29 - 3.0.8 - configuration updates
|
||||
Updated project description and configuration files.
|
||||
|
||||
- Updated description.
|
||||
- Revised tsconfig settings (2024-04-14 and 2024-04-01).
|
||||
- Updated npmextra.json githost entries (2024-04-01 and 2024-03-30).
|
||||
|
||||
## 2023-11-04 - 3.0.7 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2023-11-01 - 3.0.6 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2023-07-24 - 3.0.5 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2023-07-24 - 3.0.4 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2023-07-24 - 3.0.3 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2023-07-12 - 3.0.2 - core
|
||||
Fixed core functionality and organization scheme.
|
||||
|
||||
- Applied core fixes.
|
||||
- Switched to new organization scheme (commit dated 2023-07-10).
|
||||
|
||||
## 2023-06-11 - 3.0.1 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2023-06-10 - 3.0.0 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
---
|
||||
|
||||
## 2022-08-05 - 2.0.26 to 2.0.25 - core
|
||||
Included a breaking change alongside core fixes.
|
||||
|
||||
- BREAKING CHANGE: Switched to ESM.
|
||||
- Applied core fixes.
|
||||
|
||||
## 2022-01-24 - 2.0.24 to 2.0.19 - core
|
||||
Consolidated several minor core fixes.
|
||||
|
||||
- Applied multiple core update fixes.
|
||||
|
||||
## 2020-09-24 - 2.0.18 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fix.
|
||||
|
||||
## 2020-07-12 - 2.0.17 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fix.
|
||||
|
||||
## 2020-06-26 - 2.0.16 to 2.0.15 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2020-05-27 - 2.0.14 to 2.0.6 - core
|
||||
Fixed core functionality across several releases.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2020-05-26 - 2.0.5 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fix.
|
||||
|
||||
## 2019-09-10 - 2.0.4 to 2.0.3 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fixes.
|
||||
|
||||
## 2018-12-10 to 2018-11-23 - 2.0.2 to 2.0.1 - core & dependencies
|
||||
Fixed core functionality and updated dependencies.
|
||||
|
||||
- Applied core fixes (2.0.2).
|
||||
- Updated dependencies (2.0.1 fix).
|
||||
|
||||
## 2018-10-10 - 2.0.0 - core
|
||||
Fixed core functionality.
|
||||
|
||||
- Applied core fix.
|
||||
|
||||
---
|
||||
|
||||
## 2018-10-10 - 1.0.5 - scope change
|
||||
Introduced a breaking change in package scope.
|
||||
|
||||
- BREAKING CHANGE: Switched to the @pushrocks scope.
|
||||
|
||||
## 2017-11-01 - 1.0.4 - testing improvements
|
||||
Enhanced test quality and intake functionality.
|
||||
|
||||
- Improved tests.
|
||||
- Enabled working intake.
|
||||
|
||||
## 2017-10-30 - 1.0.3 - documentation
|
||||
Updated project documentation.
|
||||
|
||||
- Revised docs.
|
||||
|
||||
## 2017-10-30 - 1.0.2 - documentation
|
||||
Enhanced project information.
|
||||
|
||||
- Added README.
|
||||
|
||||
## 2017-10-26 - 1.0.1 - observable feature
|
||||
Introduced observability features.
|
||||
|
||||
- Added observable functionality.
|
@ -1,4 +0,0 @@
|
||||
module.name: smartmodule
|
||||
module.description: a smart description
|
||||
module.author: Lossless GmbH
|
||||
module.license: MIT
|
4
dist/index.d.ts
vendored
4
dist/index.d.ts
vendored
@ -1,3 +1,5 @@
|
||||
export declare let standardExport: string;
|
||||
export * from './smartrx.classes.observablemap';
|
||||
export * from './smartrx.classes.observable';
|
||||
export * from './smartrx.classes.observableintake';
|
||||
import * as rxjs from 'rxjs';
|
||||
export { rxjs };
|
||||
|
6
dist/index.js
vendored
6
dist/index.js
vendored
@ -5,5 +5,7 @@ function __export(m) {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.standardExport = 'Hi there! :) This is a exported string';
|
||||
__export(require("./smartrx.classes.observablemap"));
|
||||
__export(require("./smartrx.classes.observable"));
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUVXLFFBQUEsY0FBYyxHQUFHLHdDQUF3QyxDQUFBO0FBQ3BFLHFEQUErQztBQUMvQyxrREFBNEMifQ==
|
||||
__export(require("./smartrx.classes.observableintake"));
|
||||
const rxjs = require("rxjs");
|
||||
exports.rxjs = rxjs;
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUVXLFFBQUEsY0FBYyxHQUFHLHdDQUF3QyxDQUFBO0FBQ3BFLHFEQUErQztBQUMvQyx3REFBa0Q7QUFFbEQsNkJBQTRCO0FBRzFCLG9CQUFJIn0=
|
5
dist/smartrx.classes.observable.d.ts
vendored
5
dist/smartrx.classes.observable.d.ts
vendored
@ -1,5 +0,0 @@
|
||||
import { Observable as rxjsObservable } from 'rxjs';
|
||||
export { rxjsObservable };
|
||||
export declare class Observable<T> extends rxjsObservable<T> {
|
||||
static fromIntake(): void;
|
||||
}
|
9
dist/smartrx.classes.observable.js
vendored
9
dist/smartrx.classes.observable.js
vendored
@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const rxjs_1 = require("rxjs");
|
||||
exports.rxjsObservable = rxjs_1.Observable;
|
||||
class Observable extends rxjs_1.Observable {
|
||||
static fromIntake() { }
|
||||
}
|
||||
exports.Observable = Observable;
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRyeC5jbGFzc2VzLm9ic2VydmFibGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHJ4LmNsYXNzZXMub2JzZXJ2YWJsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLCtCQUFtRDtBQUVqRCx5QkFGcUIsaUJBQWMsQ0FFckI7QUFHaEIsZ0JBQTJCLFNBQVEsaUJBQWlCO0lBQ2xELE1BQU0sQ0FBQyxVQUFVLEtBQUssQ0FBQztDQUN4QjtBQUZELGdDQUVDIn0=
|
38
dist/smartrx.classes.observableintake.d.ts
vendored
Normal file
38
dist/smartrx.classes.observableintake.d.ts
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
import { Observable, Subscription } from 'rxjs';
|
||||
/**
|
||||
* ObservableIntake
|
||||
*/
|
||||
export declare class ObservableIntake<T> {
|
||||
observable: Observable<T>;
|
||||
completed: Promise<void>;
|
||||
private completedDeffered;
|
||||
private observableFunctions;
|
||||
private generator;
|
||||
private buffered;
|
||||
private payloadBuffer;
|
||||
constructor();
|
||||
setObservable(observableFunc: any): void;
|
||||
push(payloadArg: T): void;
|
||||
/**
|
||||
* pushes many payloads as array
|
||||
* @param payloadArgArray
|
||||
*/
|
||||
pushMany(payloadArgArray: T[]): void;
|
||||
/**
|
||||
* sets a generator to query the next pushed value
|
||||
* @param generatorArg
|
||||
*/
|
||||
setGenerator(generatorArg: any): void;
|
||||
makeBuffered(): void;
|
||||
subscribe(...args: any[]): Subscription;
|
||||
/**
|
||||
* request the next values in the quantity specified
|
||||
* @param howManyArg if a generator is set, of a buffer exists, this allows retrieving values
|
||||
*/
|
||||
request(howManyArg: number): void;
|
||||
/**
|
||||
* signals the completion of this observable
|
||||
*/
|
||||
signalComplete(): void;
|
||||
private internalPush(payloadArg);
|
||||
}
|
97
dist/smartrx.classes.observableintake.js
vendored
Normal file
97
dist/smartrx.classes.observableintake.js
vendored
Normal file
@ -0,0 +1,97 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const plugins = require("./smartrx.plugins");
|
||||
const rxjs_1 = require("rxjs");
|
||||
/**
|
||||
* ObservableIntake
|
||||
*/
|
||||
class ObservableIntake {
|
||||
constructor() {
|
||||
this.observableFunctions = {
|
||||
next: (payloadArg) => {
|
||||
// nothing
|
||||
},
|
||||
complete: (payloadArg) => {
|
||||
// nothing
|
||||
}
|
||||
};
|
||||
this.generator = null;
|
||||
this.buffered = false;
|
||||
this.payloadBuffer = [];
|
||||
this.observable = rxjs_1.Observable.create((observerArg) => {
|
||||
this.observableFunctions.next = (...args) => {
|
||||
return observerArg.next(...args);
|
||||
};
|
||||
this.observableFunctions.complete = (...args) => {
|
||||
this.completedDeffered.resolve();
|
||||
return observerArg.complete(...args);
|
||||
};
|
||||
});
|
||||
this.completedDeffered = plugins.smartq.defer();
|
||||
this.completed = this.completedDeffered.promise;
|
||||
}
|
||||
setObservable(observableFunc) {
|
||||
this.observable = observableFunc();
|
||||
}
|
||||
push(payloadArg) {
|
||||
if (this.buffered) {
|
||||
this.payloadBuffer.push(payloadArg);
|
||||
}
|
||||
else {
|
||||
this.internalPush(payloadArg);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* pushes many payloads as array
|
||||
* @param payloadArgArray
|
||||
*/
|
||||
pushMany(payloadArgArray) {
|
||||
for (let item of payloadArgArray) {
|
||||
this.push(item);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* sets a generator to query the next pushed value
|
||||
* @param generatorArg
|
||||
*/
|
||||
setGenerator(generatorArg) {
|
||||
this.generator = generatorArg;
|
||||
}
|
||||
makeBuffered() {
|
||||
this.buffered = true;
|
||||
}
|
||||
subscribe(...args) {
|
||||
return this.observable.subscribe(...args);
|
||||
}
|
||||
/**
|
||||
* request the next values in the quantity specified
|
||||
* @param howManyArg if a generator is set, of a buffer exists, this allows retrieving values
|
||||
*/
|
||||
request(howManyArg) {
|
||||
if (howManyArg === 0) {
|
||||
return;
|
||||
}
|
||||
else {
|
||||
for (let i = 0; i !== howManyArg; i++) {
|
||||
if (this.payloadBuffer.length > 0) {
|
||||
this.internalPush(this.payloadBuffer.shift());
|
||||
}
|
||||
else {
|
||||
const nextPayload = this.generator();
|
||||
this.internalPush(nextPayload);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* signals the completion of this observable
|
||||
*/
|
||||
signalComplete() {
|
||||
this.observableFunctions.complete();
|
||||
}
|
||||
internalPush(payloadArg) {
|
||||
this.observableFunctions.next(payloadArg);
|
||||
}
|
||||
}
|
||||
exports.ObservableIntake = ObservableIntake;
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRyeC5jbGFzc2VzLm9ic2VydmFibGVpbnRha2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHJ4LmNsYXNzZXMub2JzZXJ2YWJsZWludGFrZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDZDQUE0QztBQUM1QywrQkFBK0M7QUFHL0M7O0dBRUc7QUFDSDtJQWdCRTtRQVpRLHdCQUFtQixHQUFRO1lBQ2pDLElBQUksRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO2dCQUNuQixVQUFVO1lBQ1osQ0FBQztZQUNELFFBQVEsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO2dCQUN2QixVQUFVO1lBQ1osQ0FBQztTQUNGLENBQUE7UUFDTyxjQUFTLEdBQUcsSUFBSSxDQUFBO1FBQ2hCLGFBQVEsR0FBRyxLQUFLLENBQUE7UUFDaEIsa0JBQWEsR0FBRyxFQUFFLENBQUE7UUFHeEIsSUFBSSxDQUFDLFVBQVUsR0FBRyxpQkFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDLFdBQVcsRUFBRSxFQUFFO1lBQ2xELElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLEdBQUcsQ0FBQyxHQUFHLElBQUksRUFBRSxFQUFFO2dCQUMxQyxNQUFNLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFBO1lBQ2xDLENBQUMsQ0FBQTtZQUNELElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxRQUFRLEdBQUcsQ0FBQyxHQUFHLElBQUksRUFBRSxFQUFFO2dCQUM5QyxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxFQUFFLENBQUE7Z0JBQ2hDLE1BQU0sQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUE7WUFDdEMsQ0FBQyxDQUFBO1FBQ0gsQ0FBQyxDQUFDLENBQUE7UUFDRixJQUFJLENBQUMsaUJBQWlCLEdBQUcsT0FBTyxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQTtRQUMvQyxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLENBQUE7SUFDakQsQ0FBQztJQUVELGFBQWEsQ0FBRSxjQUFjO1FBQzNCLElBQUksQ0FBQyxVQUFVLEdBQUcsY0FBYyxFQUFFLENBQUE7SUFDcEMsQ0FBQztJQUVELElBQUksQ0FBRSxVQUFhO1FBQ2pCLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDO1lBQ2xCLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFBO1FBQ3JDLENBQUM7UUFBQyxJQUFJLENBQUMsQ0FBQztZQUNOLElBQUksQ0FBQyxZQUFZLENBQUMsVUFBVSxDQUFDLENBQUE7UUFDL0IsQ0FBQztJQUNILENBQUM7SUFFRDs7O09BR0c7SUFDSCxRQUFRLENBQUUsZUFBb0I7UUFDNUIsR0FBRyxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksZUFBZSxDQUFDLENBQUMsQ0FBQztZQUNqQyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFBO1FBQ2pCLENBQUM7SUFDSCxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsWUFBWSxDQUFFLFlBQVk7UUFDeEIsSUFBSSxDQUFDLFNBQVMsR0FBRyxZQUFZLENBQUE7SUFDL0IsQ0FBQztJQUVELFlBQVk7UUFDVixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQTtJQUN0QixDQUFDO0lBRUQsU0FBUyxDQUFFLEdBQUcsSUFBSTtRQUNoQixNQUFNLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQTtJQUMzQyxDQUFDO0lBRUQ7OztPQUdHO0lBQ0gsT0FBTyxDQUFFLFVBQWtCO1FBQ3pCLEVBQUUsQ0FBQyxDQUFDLFVBQVUsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ3JCLE1BQU0sQ0FBQTtRQUNSLENBQUM7UUFBQyxJQUFJLENBQUMsQ0FBQztZQUNOLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEtBQUssVUFBVSxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUM7Z0JBQ3RDLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsTUFBTSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUM7b0JBQ2xDLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFBO2dCQUMvQyxDQUFDO2dCQUFDLElBQUksQ0FBQyxDQUFDO29CQUNOLE1BQU0sV0FBVyxHQUFHLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQTtvQkFDcEMsSUFBSSxDQUFDLFlBQVksQ0FBQyxXQUFXLENBQUMsQ0FBQTtnQkFDaEMsQ0FBQztZQUNILENBQUM7UUFDSCxDQUFDO0lBQ0gsQ0FBQztJQUVEOztPQUVHO0lBQ0gsY0FBYztRQUNaLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxRQUFRLEVBQUUsQ0FBQTtJQUNyQyxDQUFDO0lBRU8sWUFBWSxDQUFFLFVBQVU7UUFDOUIsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQTtJQUMzQyxDQUFDO0NBQ0Y7QUFqR0QsNENBaUdDIn0=
|
4
dist/smartrx.classes.observablemap.d.ts
vendored
4
dist/smartrx.classes.observablemap.d.ts
vendored
@ -1,6 +1,6 @@
|
||||
/// <reference types="node" />
|
||||
import * as plugins from './smartrx.plugins';
|
||||
import { rxjsObservable } from './smartrx.classes.observable';
|
||||
import { Observable } from 'rxjs';
|
||||
import { Objectmap } from 'lik';
|
||||
/**
|
||||
* bundles an observable with an emitter
|
||||
@ -19,5 +19,5 @@ export declare class Observablemap {
|
||||
* creates a new observable if not yet registered for the same event.
|
||||
* In case event has been registered before the same observable is returned.
|
||||
*/
|
||||
getObservableForEmitterEvent(emitterArg: plugins.events.EventEmitter, eventArg: string): rxjsObservable<any>;
|
||||
getObservableForEmitterEvent(emitterArg: plugins.events.EventEmitter, eventArg: string): Observable<any>;
|
||||
}
|
||||
|
2
dist/smartrx.classes.observablemap.js
vendored
2
dist/smartrx.classes.observablemap.js
vendored
@ -32,4 +32,4 @@ class Observablemap {
|
||||
}
|
||||
}
|
||||
exports.Observablemap = Observablemap;
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRyeC5jbGFzc2VzLm9ic2VydmFibGVtYXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHJ4LmNsYXNzZXMub2JzZXJ2YWJsZW1hcC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDZDQUE0QztBQUc1Qyw2QkFBK0I7QUFZL0I7O0dBRUc7QUFDSDtJQUFBO1FBQ0UscUNBQWdDLEdBQUcsSUFBSSxlQUFTLEVBQTJCLENBQUE7SUFzQjdFLENBQUM7SUFwQkM7OztPQUdHO0lBQ0gsNEJBQTRCLENBQUUsVUFBdUMsRUFBRSxRQUFnQjtRQUNyRixJQUFJLGNBQWMsR0FBRyxJQUFJLENBQUMsZ0NBQWdDLENBQUMsSUFBSSxDQUFDLENBQUMsU0FBUyxFQUFFLEVBQUU7WUFDNUUsTUFBTSxDQUFDLENBQUMsU0FBUyxDQUFDLE9BQU8sS0FBSyxVQUFVLElBQUksU0FBUyxDQUFDLEtBQUssS0FBSyxRQUFRLENBQUMsQ0FBQTtRQUMzRSxDQUFDLENBQUMsQ0FBQTtRQUNGLEVBQUUsQ0FBQyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUM7WUFDbkIsTUFBTSxDQUFDLGNBQWMsQ0FBQyxVQUFVLENBQUE7UUFDbEMsQ0FBQztRQUFDLElBQUksQ0FBQyxDQUFDO1lBQ04sSUFBSSxpQkFBaUIsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUMsVUFBVSxFQUFFLFFBQVEsQ0FBQyxDQUFBO1lBQy9FLElBQUksQ0FBQyxnQ0FBZ0MsQ0FBQyxHQUFHLENBQUM7Z0JBQ3hDLFVBQVUsRUFBRSxpQkFBaUI7Z0JBQzdCLE9BQU8sRUFBRSxVQUFVO2dCQUNuQixLQUFLLEVBQUUsUUFBUTthQUNoQixDQUFDLENBQUE7WUFDRixNQUFNLENBQUMsaUJBQWlCLENBQUE7UUFDMUIsQ0FBQztJQUNILENBQUM7Q0FDRjtBQXZCRCxzQ0F1QkMifQ==
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRyeC5jbGFzc2VzLm9ic2VydmFibGVtYXAuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHJ4LmNsYXNzZXMub2JzZXJ2YWJsZW1hcC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDZDQUE0QztBQUU1Qyw2QkFBK0I7QUFZL0I7O0dBRUc7QUFDSDtJQUFBO1FBQ0UscUNBQWdDLEdBQUcsSUFBSSxlQUFTLEVBQTJCLENBQUE7SUFzQjdFLENBQUM7SUFwQkM7OztPQUdHO0lBQ0gsNEJBQTRCLENBQUUsVUFBdUMsRUFBRSxRQUFnQjtRQUNyRixJQUFJLGNBQWMsR0FBRyxJQUFJLENBQUMsZ0NBQWdDLENBQUMsSUFBSSxDQUFDLENBQUMsU0FBUyxFQUFFLEVBQUU7WUFDNUUsTUFBTSxDQUFDLENBQUMsU0FBUyxDQUFDLE9BQU8sS0FBSyxVQUFVLElBQUksU0FBUyxDQUFDLEtBQUssS0FBSyxRQUFRLENBQUMsQ0FBQTtRQUMzRSxDQUFDLENBQUMsQ0FBQTtRQUNGLEVBQUUsQ0FBQyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUM7WUFDbkIsTUFBTSxDQUFDLGNBQWMsQ0FBQyxVQUFVLENBQUE7UUFDbEMsQ0FBQztRQUFDLElBQUksQ0FBQyxDQUFDO1lBQ04sSUFBSSxpQkFBaUIsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUMsVUFBVSxFQUFFLFFBQVEsQ0FBQyxDQUFBO1lBQy9FLElBQUksQ0FBQyxnQ0FBZ0MsQ0FBQyxHQUFHLENBQUM7Z0JBQ3hDLFVBQVUsRUFBRSxpQkFBaUI7Z0JBQzdCLE9BQU8sRUFBRSxVQUFVO2dCQUNuQixLQUFLLEVBQUUsUUFBUTthQUNoQixDQUFDLENBQUE7WUFDRixNQUFNLENBQUMsaUJBQWlCLENBQUE7UUFDMUIsQ0FBQztJQUNILENBQUM7Q0FDRjtBQXZCRCxzQ0F1QkMifQ==
|
5
dist/smartrx.plugins.d.ts
vendored
5
dist/smartrx.plugins.d.ts
vendored
@ -2,4 +2,7 @@ import 'typings-global';
|
||||
import * as events from 'events';
|
||||
import * as lik from 'lik';
|
||||
import * as rxjs from 'rxjs';
|
||||
export { events, lik, rxjs };
|
||||
import * as smartevent from 'smartevent';
|
||||
import * as smartq from 'smartq';
|
||||
import 'typings-global';
|
||||
export { events, lik, rxjs, smartevent, smartq };
|
||||
|
7
dist/smartrx.plugins.js
vendored
7
dist/smartrx.plugins.js
vendored
@ -7,4 +7,9 @@ const lik = require("lik");
|
||||
exports.lik = lik;
|
||||
const rxjs = require("rxjs");
|
||||
exports.rxjs = rxjs;
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRyeC5wbHVnaW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvc21hcnRyeC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsMEJBQXVCO0FBQ3ZCLGlDQUFnQztBQUs5Qix3QkFBTTtBQUpSLDJCQUEwQjtBQUt4QixrQkFBRztBQUpMLDZCQUE0QjtBQUsxQixvQkFBSSJ9
|
||||
const smartevent = require("smartevent");
|
||||
exports.smartevent = smartevent;
|
||||
const smartq = require("smartq");
|
||||
exports.smartq = smartq;
|
||||
require("typings-global");
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRyeC5wbHVnaW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvc21hcnRyeC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsMEJBQXVCO0FBQ3ZCLGlDQUFnQztBQVE5Qix3QkFBTTtBQVBSLDJCQUEwQjtBQVF4QixrQkFBRztBQVBMLDZCQUE0QjtBQVExQixvQkFBSTtBQVBOLHlDQUF3QztBQVF0QyxnQ0FBVTtBQVBaLGlDQUFnQztBQVE5Qix3QkFBTTtBQVBSLDBCQUF1QiJ9
|
33
docs/index.md
Normal file
33
docs/index.md
Normal file
@ -0,0 +1,33 @@
|
||||
# smartrx
|
||||
|
||||
smart wrapper for rxjs
|
||||
|
||||
## Availabililty
|
||||
|
||||
[](https://www.npmjs.com/package/smartrx)
|
||||
[](https://GitLab.com/pushrocks/smartrx)
|
||||
[](https://github.com/pushrocks/smartrx)
|
||||
[](https://pushrocks.gitlab.io/smartrx/)
|
||||
|
||||
## Status for master
|
||||
|
||||
[](https://GitLab.com/pushrocks/smartrx/commits/master)
|
||||
[](https://GitLab.com/pushrocks/smartrx/commits/master)
|
||||
[](https://www.npmjs.com/package/smartrx)
|
||||
[](https://david-dm.org/pushrocks/smartrx)
|
||||
[](https://www.bithound.io/github/pushrocks/smartrx/master/dependencies/npm)
|
||||
[](https://www.bithound.io/github/pushrocks/smartrx)
|
||||
[](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.
|
||||
|
||||
For further information read the linked docs at the top of this README.
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
> | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||
|
||||
[](https://push.rocks)
|
8
docs/observablemap.md
Normal file
8
docs/observablemap.md
Normal file
@ -0,0 +1,8 @@
|
||||
# class Observablemap
|
||||
|
||||
Event Emitters are nice. However often times you end up with registering multiple listeners for the exact same thing.
|
||||
Observables have a smaller footprint and a more manageable subscribe logic.
|
||||
Observablemap registers only one rxjs observable per event and then continues to reference
|
||||
the same observable that you can subscribe to.
|
||||
|
||||
For further information read the linked docs at the top of this README.
|
@ -1,10 +1,33 @@
|
||||
{
|
||||
"npmci": {
|
||||
"npmGlobalTools": [
|
||||
"npmts"
|
||||
]
|
||||
"npmGlobalTools": [],
|
||||
"npmAccessLevel": "public"
|
||||
},
|
||||
"npmdocker": {
|
||||
"command": "rm -r node_modules && yarn install && yarn test"
|
||||
},
|
||||
"gitzone": {
|
||||
"projectType": "npm",
|
||||
"module": {
|
||||
"githost": "code.foss.global",
|
||||
"gitscope": "push.rocks",
|
||||
"gitrepo": "smartrx",
|
||||
"description": "A smart wrapper for rxjs to manage and extend observables.",
|
||||
"npmPackagename": "@push.rocks/smartrx",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"rxjs",
|
||||
"wrapper",
|
||||
"observables",
|
||||
"event emitter",
|
||||
"stream processing",
|
||||
"reactive programming",
|
||||
"backpressure",
|
||||
"event handling"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tsdoc": {
|
||||
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
||||
}
|
||||
}
|
66
package.json
66
package.json
@ -1,21 +1,65 @@
|
||||
{
|
||||
"name": "smartrx",
|
||||
"version": "1.0.2",
|
||||
"description": "smart wrapper for rxjs",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"name": "@push.rocks/smartrx",
|
||||
"version": "3.0.10",
|
||||
"private": false,
|
||||
"description": "A smart wrapper for rxjs to manage and extend observables.",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"type": "module",
|
||||
"author": "Lossless GmbH",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "(npmts)"
|
||||
"test": "(tstest test/)",
|
||||
"build": "(tsbuild --web && tsbundle npm)",
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tapbundle": "^1.0.13"
|
||||
"@git.zone/tsbuild": "^2.3.2",
|
||||
"@git.zone/tsbundle": "^2.2.5",
|
||||
"@git.zone/tsrun": "^1.3.3",
|
||||
"@git.zone/tstest": "^1.0.96",
|
||||
"@push.rocks/tapbundle": "^5.0.15",
|
||||
"@types/node": "^22.15.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"lik": "^1.0.43",
|
||||
"rxjs": "^5.5.2",
|
||||
"smartq": "^1.1.6",
|
||||
"typings-global": "^1.0.16"
|
||||
"@push.rocks/smartpromise": "^4.0.2",
|
||||
"rxjs": "^7.8.1"
|
||||
},
|
||||
"files": [
|
||||
"ts/**/*",
|
||||
"ts_web/**/*",
|
||||
"dist/**/*",
|
||||
"dist_*/**/*",
|
||||
"dist_ts/**/*",
|
||||
"dist_ts_web/**/*",
|
||||
"assets/**/*",
|
||||
"cli.js",
|
||||
"npmextra.json",
|
||||
"readme.md"
|
||||
],
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
],
|
||||
"keywords": [
|
||||
"rxjs",
|
||||
"wrapper",
|
||||
"observables",
|
||||
"event emitter",
|
||||
"stream processing",
|
||||
"reactive programming",
|
||||
"backpressure",
|
||||
"event handling"
|
||||
],
|
||||
"homepage": "https://code.foss.global/push.rocks/smartrx#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://code.foss.global/push.rocks/smartrx.git"
|
||||
},
|
||||
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6",
|
||||
"bugs": {
|
||||
"url": "https://code.foss.global/push.rocks/smartrx/issues"
|
||||
},
|
||||
"pnpm": {
|
||||
"overrides": {}
|
||||
}
|
||||
}
|
||||
|
9849
pnpm-lock.yaml
generated
Normal file
9849
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
||||
|
119
readme.md
Normal file
119
readme.md
Normal file
@ -0,0 +1,119 @@
|
||||
# @push.rocks/smartrx
|
||||
|
||||
smart wrapper for rxjs
|
||||
|
||||
## Install
|
||||
|
||||
To install `@push.rocks/smartrx`, run the following command in your terminal:
|
||||
|
||||
```bash
|
||||
npm install @push.rocks/smartrx --save
|
||||
```
|
||||
|
||||
This package is distributed via npm and should be saved as a dependency in your project's `package.json` file once installed.
|
||||
|
||||
## Usage
|
||||
|
||||
`@push.rocks/smartrx` provides a smart wrapper for working with RxJS, enhancing its already powerful reactive programming capabilities with additional functionalities, including easier observable map management and observable intake handling. We'll explore key features and how to use them in TypeScript.
|
||||
|
||||
First, ensure you're working in an environment configured for TypeScript and modern JavaScript development.
|
||||
|
||||
### Basic Setup
|
||||
|
||||
To start using `@push.rocks/smartrx`, first, import what you need from the package:
|
||||
|
||||
```typescript
|
||||
import { Observablemap, ObservableIntake, rxjs } from '@push.rocks/smartrx';
|
||||
```
|
||||
|
||||
### Observable Map Management
|
||||
|
||||
`Observablemap` helps manage observables efficiently, especially useful when you need to ensure a single observable per event or when working with event emitters.
|
||||
|
||||
#### Basic Observablemap Use
|
||||
|
||||
```typescript
|
||||
import { Observablemap } from '@push.rocks/smartrx';
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
// Initialize Observablemap
|
||||
const observableMap = new Observablemap();
|
||||
|
||||
// Your event emitter (node.js events in this case)
|
||||
const myEmitter = new EventEmitter();
|
||||
|
||||
// Get a Subject for a specific event
|
||||
const myEventSubject = observableMap.getSubjectForEmitterEvent(myEmitter, 'myEvent');
|
||||
|
||||
// Subscribe to the Subject
|
||||
myEventSubject.subscribe({
|
||||
next: (value) => console.log(`Received value: ${value}`),
|
||||
});
|
||||
|
||||
// Emit events
|
||||
myEmitter.emit('myEvent', 'Hello World!');
|
||||
```
|
||||
|
||||
This approach ensures that you have a single observable (Subject in this case) per event, efficiently reusing existing observables instead of creating new ones for the same event.
|
||||
|
||||
### Observable Intake
|
||||
|
||||
`ObservableIntake` is designed for efficiently managing and controlling the flow of data through observables, offering features like buffering and intake requests.
|
||||
|
||||
#### Using ObservableIntake
|
||||
|
||||
```typescript
|
||||
import { ObservableIntake } from '@push.rocks/smartrx';
|
||||
|
||||
// Initialize ObservableIntake
|
||||
const observableIntake = new ObservableIntake<string>();
|
||||
|
||||
// Listen to the observableIntake as you would with any RxJS Observable
|
||||
observableIntake.subscribe({
|
||||
next: (message) => console.log(message),
|
||||
complete: () => console.log('No more messages'),
|
||||
});
|
||||
|
||||
// Push messages into the observable intake
|
||||
observableIntake.push('Hello');
|
||||
observableIntake.push('World');
|
||||
|
||||
// Signal completion
|
||||
observableIntake.signalComplete();
|
||||
```
|
||||
|
||||
`ObservableIntake` offers the flexibility of adding values as they come and controlling when those values are emitted to subscribers, including buffering capabilities for managing backpressure.
|
||||
|
||||
#### Advanced Use-cases
|
||||
|
||||
`@push.rocks/smartrx` is built to handle more sophisticated scenarios like working with streams or handling events in a web environment.
|
||||
|
||||
- **From Streams with Backpressure**: Efficiently create observables from Node.js streams, applying backpressure as needed.
|
||||
- **Event Management in Browsers**: Easily map browser events to observables, enabling reactive programming principles in frontend development.
|
||||
|
||||
### Conclusion
|
||||
|
||||
`@push.rocks/smartrx` significantly simplifies some of the more tedious aspects of working with RxJS, making it easier to manage observables related to event emitters and providing helpful utilities like observable intake for controlling data flow. With its smart wrappers, developers can focus more on business logic rather than boilerplate code for observable management.
|
||||
|
||||
For more complex use cases, such as integrating with external data sources or managing complex state with Redux, `@push.rocks/smartrx` offers a solid foundation for building reactive applications with ease and efficiency.
|
||||
|
||||
Remember, reactive programming with RxJS is a powerful paradigm that can make handling asynchronous data streams simpler and more maintainable. `@push.rocks/smartrx` enhances this paradigm by providing tools that make working with RxJS even more pleasant and productive.
|
||||
|
||||
## License and Legal Information
|
||||
|
||||
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
||||
|
||||
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
||||
|
||||
### Trademarks
|
||||
|
||||
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
||||
|
||||
### Company Information
|
||||
|
||||
Task Venture Capital GmbH
|
||||
Registered at District court Bremen HRB 35230 HB, Germany
|
||||
|
||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||
|
||||
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
38
test/test.observableintake.both.ts
Normal file
38
test/test.observableintake.both.ts
Normal file
@ -0,0 +1,38 @@
|
||||
import { tap, expect } from '@push.rocks/tapbundle';
|
||||
|
||||
import * as smartrx from '../ts/index.js';
|
||||
|
||||
tap.test('should create a valid instance of observableinstake', async () => {
|
||||
const testObservableIntake = new smartrx.ObservableIntake();
|
||||
expect(testObservableIntake).toBeInstanceOf(smartrx.ObservableIntake);
|
||||
});
|
||||
|
||||
tap.test('expect testObserservableIntake to push things', async (tools) => {
|
||||
const testObserservableIntake = new smartrx.ObservableIntake();
|
||||
testObserservableIntake.subscribe((value: any) => {
|
||||
console.log(value);
|
||||
});
|
||||
|
||||
testObserservableIntake.push('hi');
|
||||
testObserservableIntake.push('wow');
|
||||
testObserservableIntake.signalComplete();
|
||||
await testObserservableIntake.completed;
|
||||
});
|
||||
|
||||
tap.test('expect testObserservableIntake to push things', async (tools) => {
|
||||
const testObserservableIntake = new smartrx.ObservableIntake();
|
||||
testObserservableIntake.push('hi');
|
||||
testObserservableIntake.push('wow');
|
||||
testObserservableIntake.makeBuffered();
|
||||
testObserservableIntake.push('jo');
|
||||
testObserservableIntake.subscribe((value: any) => {
|
||||
console.log(value);
|
||||
testObserservableIntake.signalComplete();
|
||||
});
|
||||
testObserservableIntake.request(1);
|
||||
await testObserservableIntake.completed;
|
||||
});
|
||||
|
||||
tap.test('', async () => {});
|
||||
|
||||
tap.start();
|
36
test/test.observablemap.node.ts
Normal file
36
test/test.observablemap.node.ts
Normal file
@ -0,0 +1,36 @@
|
||||
// import test framework
|
||||
import { expect, tap } from '@push.rocks/tapbundle';
|
||||
import * as events from 'events';
|
||||
import * as rx from 'rxjs';
|
||||
import * as smartpromise from '@push.rocks/smartpromise';
|
||||
|
||||
// import the module
|
||||
import * as smartrx from '../ts/index.js';
|
||||
|
||||
let testObservablemap: smartrx.Observablemap;
|
||||
let testObservable1: rx.Observable<any>;
|
||||
let testObservable2: rx.Observable<any>;
|
||||
let testObservable3: rx.Observable<any>;
|
||||
let testEmitter: events.EventEmitter;
|
||||
|
||||
tap.test('should create an instance', async () => {
|
||||
testObservablemap = new smartrx.Observablemap();
|
||||
expect(testObservablemap).toBeInstanceOf(smartrx.Observablemap);
|
||||
});
|
||||
|
||||
tap.test('should accept a new emitter', async () => {
|
||||
let done = smartpromise.defer();
|
||||
testEmitter = new events.EventEmitter();
|
||||
testObservable1 = testObservablemap.getSubjectForEmitterEvent(testEmitter, 'event1');
|
||||
testObservable1.subscribe((x) => {
|
||||
done.resolve();
|
||||
});
|
||||
testObservable2 = testObservablemap.getSubjectForEmitterEvent(testEmitter, 'event1');
|
||||
testObservable3 = testObservablemap.getSubjectForEmitterEvent(testEmitter, 'event2');
|
||||
expect(testObservable1 === testObservable2).toBeTrue();
|
||||
expect(testObservable1 === testObservable3).toBeFalse();
|
||||
testEmitter.emit('event1');
|
||||
await done.promise;
|
||||
});
|
||||
|
||||
tap.start();
|
@ -1,38 +0,0 @@
|
||||
// import test framework
|
||||
import { expect, tap } from 'tapbundle'
|
||||
import * as events from 'events'
|
||||
import * as rx from 'rxjs/Rx'
|
||||
import * as smartq from 'smartq'
|
||||
|
||||
// import the module
|
||||
import * as smartrx from '../ts/index'
|
||||
|
||||
let testObservablemap: smartrx.Observablemap
|
||||
let testObservable1: rx.Observable<any>
|
||||
let testObservable2: rx.Observable<any>
|
||||
let testObservable3: rx.Observable<any>
|
||||
let testEmitter: events.EventEmitter
|
||||
|
||||
tap.test('should create an instance', async () => {
|
||||
testObservablemap = new smartrx.Observablemap()
|
||||
expect(testObservablemap).be.instanceof(smartrx.Observablemap)
|
||||
})
|
||||
|
||||
tap.test('should accept a new emitter', async () => {
|
||||
let done = smartq.defer()
|
||||
testEmitter = new events.EventEmitter()
|
||||
testObservable1 = testObservablemap.getObservableForEmitterEvent(testEmitter, 'event1')
|
||||
testObservable1.subscribe(x => {
|
||||
done.resolve()
|
||||
})
|
||||
testObservable2 = testObservablemap.getObservableForEmitterEvent(testEmitter, 'event1')
|
||||
testObservable3 = testObservablemap.getObservableForEmitterEvent(testEmitter, 'event2')
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
expect(testObservable1 === testObservable2).be.true
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
expect(testObservable1 === testObservable3).be.false
|
||||
testEmitter.emit('event1')
|
||||
await done.promise
|
||||
})
|
||||
|
||||
tap.start()
|
@ -1,8 +0,0 @@
|
||||
import { expect, tap } from 'tapbundle'
|
||||
import * as smartrx from '../ts/index'
|
||||
|
||||
tap.test('first test', async () => {
|
||||
console.log(smartrx.standardExport)
|
||||
})
|
||||
|
||||
tap.start()
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @push.rocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartrx',
|
||||
version: '3.0.10',
|
||||
description: 'A smart wrapper for rxjs to manage and extend observables.'
|
||||
}
|
11
ts/index.ts
11
ts/index.ts
@ -1,5 +1,6 @@
|
||||
import * as plugins from './smartrx.plugins'
|
||||
|
||||
export let standardExport = 'Hi there! :) This is a exported string'
|
||||
export * from './smartrx.classes.observablemap'
|
||||
export * from './smartrx.classes.observable'
|
||||
import * as plugins from './smartrx.plugins.js';
|
||||
export * from './smartrx.classes.observablemap.js';
|
||||
export * from './smartrx.classes.observableintake.js';
|
||||
export * from './smartrx.functions.js';
|
||||
import * as rxjs from './smartrx.plugins.rxjs.js';
|
||||
export { rxjs };
|
||||
|
@ -1,8 +0,0 @@
|
||||
import { Observable as rxjsObservable } from 'rxjs'
|
||||
export {
|
||||
rxjsObservable
|
||||
}
|
||||
|
||||
export class Observable<T> extends rxjsObservable<T> {
|
||||
static fromIntake () {}
|
||||
}
|
105
ts/smartrx.classes.observableintake.ts
Normal file
105
ts/smartrx.classes.observableintake.ts
Normal file
@ -0,0 +1,105 @@
|
||||
import * as plugins from './smartrx.plugins.js';
|
||||
|
||||
import * as rxjs from './smartrx.plugins.rxjs.js';
|
||||
|
||||
/**
|
||||
* ObservableIntake
|
||||
*/
|
||||
export class ObservableIntake<T> {
|
||||
public observable: rxjs.Observable<T>;
|
||||
public completed: Promise<void>;
|
||||
private completedDeffered: plugins.smartpromise.Deferred<void>;
|
||||
private observableFunctions: any = {
|
||||
next: (payloadArg: T) => {
|
||||
// nothing
|
||||
},
|
||||
complete: (payloadArg: T) => {
|
||||
// nothing
|
||||
},
|
||||
};
|
||||
private generator: Generator<T> = null;
|
||||
private buffered = false;
|
||||
private payloadBuffer: any[] = [];
|
||||
|
||||
constructor() {
|
||||
this.observable = new rxjs.Observable((observerArg: rxjs.Observer<any>) => {
|
||||
this.observableFunctions.next = (...args: any) => {
|
||||
return observerArg.next(args);
|
||||
};
|
||||
this.observableFunctions.complete = () => {
|
||||
this.completedDeffered.resolve();
|
||||
return observerArg.complete();
|
||||
};
|
||||
});
|
||||
this.completedDeffered = plugins.smartpromise.defer();
|
||||
this.completed = this.completedDeffered.promise;
|
||||
}
|
||||
|
||||
public setObservable(observableFunc: rxjs.Observable<any>) {
|
||||
this.observable = observableFunc;
|
||||
}
|
||||
|
||||
public push(payloadArg: T) {
|
||||
if (this.buffered) {
|
||||
this.payloadBuffer.push(payloadArg);
|
||||
} else {
|
||||
this.internalPush(payloadArg);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* pushes many payloads as array
|
||||
* @param payloadArgArray
|
||||
*/
|
||||
public pushMany(payloadArgArray: T[]) {
|
||||
for (const item of payloadArgArray) {
|
||||
this.push(item);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* sets a generator to query the next pushed value
|
||||
* @param generatorArg
|
||||
*/
|
||||
public setGenerator(generatorArg: Generator<T>) {
|
||||
this.generator = generatorArg;
|
||||
}
|
||||
|
||||
public makeBuffered() {
|
||||
this.buffered = true;
|
||||
}
|
||||
|
||||
public subscribe(...args: any) {
|
||||
return this.observable.subscribe(...args);
|
||||
}
|
||||
|
||||
/**
|
||||
* request the next values in the quantity specified
|
||||
* @param howManyArg if a generator is set, of a buffer exists, this allows retrieving values
|
||||
*/
|
||||
public request(howManyArg: number) {
|
||||
if (howManyArg === 0) {
|
||||
return;
|
||||
} else {
|
||||
for (let i = 0; i !== howManyArg; i++) {
|
||||
if (this.payloadBuffer.length > 0) {
|
||||
this.internalPush(this.payloadBuffer.shift());
|
||||
} else {
|
||||
const nextPayload = this.generator.next();
|
||||
this.internalPush(nextPayload.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* signals the completion of this observable
|
||||
*/
|
||||
public signalComplete() {
|
||||
this.observableFunctions.complete();
|
||||
}
|
||||
|
||||
private internalPush(payloadArg: T) {
|
||||
this.observableFunctions.next(payloadArg);
|
||||
}
|
||||
}
|
@ -1,42 +1,73 @@
|
||||
import * as plugins from './smartrx.plugins'
|
||||
import { Observable, rxjsObservable } from './smartrx.classes.observable'
|
||||
import * as plugins from './smartrx.plugins.js';
|
||||
import * as rxjs from './smartrx.plugins.rxjs.js';
|
||||
|
||||
import { Objectmap } from 'lik'
|
||||
import { Stringmap } from 'lik'
|
||||
export interface IEventEmitter<T = any> {
|
||||
on: (eventNameArg: string, eventHandlerArg: (eventPayload: T) => any) => void;
|
||||
}
|
||||
|
||||
/**
|
||||
* bundles an observable with an emitter
|
||||
*/
|
||||
export interface ObservableEmitterBundle {
|
||||
observable: plugins.rxjs.Observable<any>
|
||||
emitter: plugins.events.EventEmitter
|
||||
event: string
|
||||
export interface IObservableEventBundle<T> {
|
||||
subject: rxjs.Subject<any>;
|
||||
eventRef: T;
|
||||
event: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* manages observables by making sure that only one observable is regsitered per event
|
||||
*/
|
||||
export class Observablemap {
|
||||
ObservableEmitterBundleObjectmap = new Objectmap<ObservableEmitterBundle>()
|
||||
public observableEventEmitterBundleArray = new Array<
|
||||
IObservableEventBundle<IEventEmitter<unknown>>
|
||||
>();
|
||||
public observableEventTargetBundleArray = new Array<IObservableEventBundle<EventTarget>>();
|
||||
|
||||
/**
|
||||
* creates a new observable if not yet registered for the same event.
|
||||
* creates a hot subject if not yet registered for the event.
|
||||
* In case event has been registered before the same observable is returned.
|
||||
*/
|
||||
getObservableForEmitterEvent (emitterArg: plugins.events.EventEmitter, eventArg: string) {
|
||||
let existingBundle = this.ObservableEmitterBundleObjectmap.find((bundleArg) => {
|
||||
return (bundleArg.emitter === emitterArg && bundleArg.event === eventArg)
|
||||
})
|
||||
public getSubjectForEmitterEvent<T>(
|
||||
emitterArg: IEventEmitter<T>,
|
||||
eventArg: string,
|
||||
): rxjs.Subject<T> {
|
||||
const existingBundle = this.observableEventEmitterBundleArray.find((bundleArg) => {
|
||||
return bundleArg.eventRef === emitterArg && bundleArg.event === eventArg;
|
||||
});
|
||||
if (existingBundle) {
|
||||
return existingBundle.observable
|
||||
return existingBundle.subject;
|
||||
} else {
|
||||
let emitterObservable = plugins.rxjs.Observable.fromEvent(emitterArg, eventArg)
|
||||
this.ObservableEmitterBundleObjectmap.add({
|
||||
observable: emitterObservable,
|
||||
emitter: emitterArg,
|
||||
event: eventArg
|
||||
})
|
||||
return emitterObservable
|
||||
const emitterObservable = rxjs.fromEvent<T>(emitterArg as any, eventArg);
|
||||
const emitterSubject = new rxjs.Subject();
|
||||
emitterObservable.subscribe(emitterSubject);
|
||||
const newBundle: IObservableEventBundle<IEventEmitter> = {
|
||||
subject: emitterSubject,
|
||||
eventRef: emitterArg,
|
||||
event: eventArg,
|
||||
};
|
||||
this.observableEventEmitterBundleArray.push(newBundle);
|
||||
return newBundle.subject;
|
||||
}
|
||||
}
|
||||
|
||||
public getSubjectForEventTarget<T>(
|
||||
eventTargetArg: EventTarget,
|
||||
eventNameArg: string,
|
||||
): rxjs.Subject<T> {
|
||||
const existingBundle = this.observableEventTargetBundleArray.find((bundleArg) => {
|
||||
return bundleArg.eventRef === eventTargetArg && bundleArg.event === eventNameArg;
|
||||
});
|
||||
if (existingBundle) {
|
||||
return existingBundle.subject;
|
||||
} else {
|
||||
const emitterSubject = new rxjs.Subject();
|
||||
const newBundle: IObservableEventBundle<EventTarget> = {
|
||||
subject: emitterSubject,
|
||||
eventRef: eventTargetArg,
|
||||
event: eventNameArg,
|
||||
};
|
||||
this.observableEventTargetBundleArray.push(newBundle);
|
||||
return newBundle.subject;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
32
ts/smartrx.functions.ts
Normal file
32
ts/smartrx.functions.ts
Normal file
@ -0,0 +1,32 @@
|
||||
import { Observable } from 'rxjs';
|
||||
import type { Readable } from 'stream';
|
||||
|
||||
export function fromStreamWithBackpressure<T>(stream: Readable): Observable<T> {
|
||||
return new Observable<T>((subscriber) => {
|
||||
const pauseStream = () => stream.pause();
|
||||
const resumeStream = () => process.nextTick(() => stream.resume());
|
||||
|
||||
// Handler for each piece of data
|
||||
const onData = (data: T) => {
|
||||
// Pause the stream to apply backpressure
|
||||
pauseStream();
|
||||
// Emit data and resume the stream if the subscriber is ready
|
||||
subscriber.next(data);
|
||||
resumeStream();
|
||||
};
|
||||
|
||||
// Subscribe to stream events
|
||||
stream.on('data', onData);
|
||||
stream.on('error', (error) => subscriber.error(error));
|
||||
stream.on('end', () => subscriber.complete());
|
||||
stream.on('close', () => subscriber.complete());
|
||||
|
||||
// If the subscriber unsubscribes, clean up the stream listeners
|
||||
return () => {
|
||||
stream.removeListener('data', onData);
|
||||
stream.removeListener('error', subscriber.error);
|
||||
stream.removeListener('end', subscriber.complete);
|
||||
stream.removeListener('close', subscriber.complete);
|
||||
};
|
||||
});
|
||||
}
|
31
ts/smartrx.plugins.rxjs.ts
Normal file
31
ts/smartrx.plugins.rxjs.ts
Normal file
@ -0,0 +1,31 @@
|
||||
// this file is intended to keep the bundle size down
|
||||
|
||||
export { Observable, Subject, fromEvent, ReplaySubject, Subscription, from, of } from 'rxjs';
|
||||
|
||||
export type { Observer } from 'rxjs';
|
||||
|
||||
import {
|
||||
buffer,
|
||||
bufferCount,
|
||||
bufferTime,
|
||||
debounce,
|
||||
debounceTime,
|
||||
filter,
|
||||
map,
|
||||
startWith,
|
||||
takeUntil,
|
||||
throttleTime,
|
||||
} from 'rxjs/operators';
|
||||
|
||||
export const ops = {
|
||||
buffer,
|
||||
bufferCount,
|
||||
bufferTime,
|
||||
debounce,
|
||||
debounceTime,
|
||||
filter,
|
||||
map,
|
||||
startWith,
|
||||
takeUntil,
|
||||
throttleTime,
|
||||
};
|
@ -1,10 +1,3 @@
|
||||
import 'typings-global'
|
||||
import * as events from 'events'
|
||||
import * as lik from 'lik'
|
||||
import * as rxjs from 'rxjs'
|
||||
import * as smartpromise from '@push.rocks/smartpromise';
|
||||
|
||||
export {
|
||||
events,
|
||||
lik,
|
||||
rxjs
|
||||
}
|
||||
export { smartpromise };
|
||||
|
17
tsconfig.json
Normal file
17
tsconfig.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {}
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"extends": "tslint-config-standard"
|
||||
}
|
363
yarn.lock
363
yarn.lock
@ -1,363 +0,0 @@
|
||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
"@types/code@^4.0.3":
|
||||
version "4.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@types/code/-/code-4.0.3.tgz#9c4de39f86eb3eba070146d2dab7dbc3f8eac35f"
|
||||
|
||||
"@types/glob@*":
|
||||
version "5.0.33"
|
||||
resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.33.tgz#3dff7c6ce09d65abe919c7961dc3dee016f36ad7"
|
||||
dependencies:
|
||||
"@types/minimatch" "*"
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/lodash@^4.14.74":
|
||||
version "4.14.80"
|
||||
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.80.tgz#a6b8b7900e6a7dcbc2e90d9b6dfbe3f6a7f69951"
|
||||
|
||||
"@types/minimatch@*", "@types/minimatch@3.x.x":
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.1.tgz#b683eb60be358304ef146f5775db4c0e3696a550"
|
||||
|
||||
"@types/node@*", "@types/node@^8.0.33":
|
||||
version "8.0.47"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.47.tgz#968e596f91acd59069054558a00708c445ca30c2"
|
||||
|
||||
"@types/shelljs@^0.7.4":
|
||||
version "0.7.5"
|
||||
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.7.5.tgz#5834fb7385d1137bd2be5842f2c278ac36a117f4"
|
||||
dependencies:
|
||||
"@types/glob" "*"
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/which@^1.0.28":
|
||||
version "1.0.28"
|
||||
resolved "https://registry.yarnpkg.com/@types/which/-/which-1.0.28.tgz#016e387629b8817bed653fe32eab5d11279c8df6"
|
||||
|
||||
ansi-256-colors@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/ansi-256-colors/-/ansi-256-colors-1.1.0.tgz#910de50efcc7c09e3d82f2f87abd6b700c18818a"
|
||||
|
||||
balanced-match@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
||||
|
||||
beautycolor@^1.0.7:
|
||||
version "1.0.11"
|
||||
resolved "https://registry.yarnpkg.com/beautycolor/-/beautycolor-1.0.11.tgz#71c5568d5a7ed5c144d3a54f753ad1b08862aea5"
|
||||
dependencies:
|
||||
ansi-256-colors "^1.1.0"
|
||||
typings-global "^1.0.14"
|
||||
|
||||
bindings@^1.2.1:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7"
|
||||
|
||||
brace-expansion@^1.1.7:
|
||||
version "1.1.8"
|
||||
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
|
||||
dependencies:
|
||||
balanced-match "^1.0.0"
|
||||
concat-map "0.0.1"
|
||||
|
||||
code@^5.1.0:
|
||||
version "5.1.0"
|
||||
resolved "https://registry.yarnpkg.com/code/-/code-5.1.0.tgz#205e4213536c3cf21b12194384901fadcd81bc1a"
|
||||
dependencies:
|
||||
hoek "4.x.x"
|
||||
|
||||
concat-map@0.0.1:
|
||||
version "0.0.1"
|
||||
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
||||
|
||||
define-properties@^1.1.2:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
|
||||
dependencies:
|
||||
foreach "^2.0.5"
|
||||
object-keys "^1.0.8"
|
||||
|
||||
early@^2.1.1:
|
||||
version "2.1.1"
|
||||
resolved "https://registry.yarnpkg.com/early/-/early-2.1.1.tgz#841e23254ea5dc54d8afaeee82f5ab65c00ee23c"
|
||||
dependencies:
|
||||
beautycolor "^1.0.7"
|
||||
smartq "^1.1.1"
|
||||
typings-global "^1.0.16"
|
||||
|
||||
es-abstract@^1.5.1:
|
||||
version "1.9.0"
|
||||
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.9.0.tgz#690829a07cae36b222e7fd9b75c0d0573eb25227"
|
||||
dependencies:
|
||||
es-to-primitive "^1.1.1"
|
||||
function-bind "^1.1.1"
|
||||
has "^1.0.1"
|
||||
is-callable "^1.1.3"
|
||||
is-regex "^1.0.4"
|
||||
|
||||
es-to-primitive@^1.1.1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
|
||||
dependencies:
|
||||
is-callable "^1.1.1"
|
||||
is-date-object "^1.0.1"
|
||||
is-symbol "^1.0.1"
|
||||
|
||||
es6-error@^4.0.2:
|
||||
version "4.0.2"
|
||||
resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98"
|
||||
|
||||
foreach@^2.0.5:
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
|
||||
|
||||
fs.realpath@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
||||
|
||||
function-bind@^1.0.2, function-bind@^1.1.1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
||||
|
||||
glob@^7.0.0:
|
||||
version "7.1.2"
|
||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
||||
dependencies:
|
||||
fs.realpath "^1.0.0"
|
||||
inflight "^1.0.4"
|
||||
inherits "2"
|
||||
minimatch "^3.0.4"
|
||||
once "^1.3.0"
|
||||
path-is-absolute "^1.0.0"
|
||||
|
||||
has@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
|
||||
dependencies:
|
||||
function-bind "^1.0.2"
|
||||
|
||||
hoek@4.x.x:
|
||||
version "4.2.0"
|
||||
resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"
|
||||
|
||||
inflight@^1.0.4:
|
||||
version "1.0.6"
|
||||
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
||||
dependencies:
|
||||
once "^1.3.0"
|
||||
wrappy "1"
|
||||
|
||||
inherits@2:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
||||
|
||||
interpret@^1.0.0:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0"
|
||||
|
||||
is-callable@^1.1.1, is-callable@^1.1.3:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
||||
|
||||
is-date-object@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
|
||||
|
||||
is-regex@^1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
|
||||
dependencies:
|
||||
has "^1.0.1"
|
||||
|
||||
is-symbol@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
|
||||
|
||||
isexe@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
||||
|
||||
leakage@^0.3.0:
|
||||
version "0.3.0"
|
||||
resolved "https://registry.yarnpkg.com/leakage/-/leakage-0.3.0.tgz#15d698abdc76bbc6439601f4f3020e77e2d50c39"
|
||||
dependencies:
|
||||
es6-error "^4.0.2"
|
||||
left-pad "^1.1.3"
|
||||
memwatch-next "^0.3.0"
|
||||
minimist "^1.2.0"
|
||||
pretty-bytes "^4.0.2"
|
||||
|
||||
left-pad@^1.1.3:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a"
|
||||
|
||||
lik@^1.0.43:
|
||||
version "1.0.43"
|
||||
resolved "https://registry.yarnpkg.com/lik/-/lik-1.0.43.tgz#e81709290fb85ff61dabfa008791ba9ffed0c666"
|
||||
dependencies:
|
||||
"@types/lodash" "^4.14.74"
|
||||
"@types/minimatch" "3.x.x"
|
||||
lodash "^4.17.4"
|
||||
minimatch "^3.0.4"
|
||||
rxjs "^5.4.3"
|
||||
smartq "^1.1.6"
|
||||
typings-global "^1.0.20"
|
||||
|
||||
lodash@^4.17.4:
|
||||
version "4.17.4"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
||||
|
||||
memwatch-next@^0.3.0:
|
||||
version "0.3.0"
|
||||
resolved "https://registry.yarnpkg.com/memwatch-next/-/memwatch-next-0.3.0.tgz#2111050f9a906e0aa2d72a4ec0f0089c78726f8f"
|
||||
dependencies:
|
||||
bindings "^1.2.1"
|
||||
nan "^2.3.2"
|
||||
|
||||
minimatch@^3.0.4:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
||||
dependencies:
|
||||
brace-expansion "^1.1.7"
|
||||
|
||||
minimist@^1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
||||
|
||||
nan@^2.3.2:
|
||||
version "2.7.0"
|
||||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
|
||||
|
||||
object-keys@^1.0.8:
|
||||
version "1.0.11"
|
||||
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
|
||||
|
||||
object.getownpropertydescriptors@^2.0.3:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
|
||||
dependencies:
|
||||
define-properties "^1.1.2"
|
||||
es-abstract "^1.5.1"
|
||||
|
||||
once@^1.3.0:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
||||
dependencies:
|
||||
wrappy "1"
|
||||
|
||||
path-is-absolute@^1.0.0:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
||||
|
||||
path-parse@^1.0.5:
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
|
||||
|
||||
pretty-bytes@^4.0.2:
|
||||
version "4.0.2"
|
||||
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
|
||||
|
||||
rechoir@^0.6.2:
|
||||
version "0.6.2"
|
||||
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
|
||||
dependencies:
|
||||
resolve "^1.1.6"
|
||||
|
||||
resolve@^1.1.6:
|
||||
version "1.5.0"
|
||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
|
||||
dependencies:
|
||||
path-parse "^1.0.5"
|
||||
|
||||
rxjs@^5.4.3, rxjs@^5.5.2:
|
||||
version "5.5.2"
|
||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.2.tgz#28d403f0071121967f18ad665563255d54236ac3"
|
||||
dependencies:
|
||||
symbol-observable "^1.0.1"
|
||||
|
||||
semver@^5.3.0:
|
||||
version "5.4.1"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
||||
|
||||
shelljs@^0.7.8:
|
||||
version "0.7.8"
|
||||
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3"
|
||||
dependencies:
|
||||
glob "^7.0.0"
|
||||
interpret "^1.0.0"
|
||||
rechoir "^0.6.2"
|
||||
|
||||
smartchai@^1.0.3:
|
||||
version "1.0.8"
|
||||
resolved "https://registry.yarnpkg.com/smartchai/-/smartchai-1.0.8.tgz#a074836f4ddd4b98c50f1e7ae9e8e8ad9f6f1902"
|
||||
dependencies:
|
||||
"@types/code" "^4.0.3"
|
||||
code "^5.1.0"
|
||||
typings-global "^1.0.20"
|
||||
|
||||
smartdelay@^1.0.3:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/smartdelay/-/smartdelay-1.0.4.tgz#791c1a4ee6770494064c10b1d2d2b8e6f3105b82"
|
||||
dependencies:
|
||||
smartq "^1.1.1"
|
||||
typings-global "^1.0.16"
|
||||
|
||||
smartq@^1.1.1, smartq@^1.1.6:
|
||||
version "1.1.6"
|
||||
resolved "https://registry.yarnpkg.com/smartq/-/smartq-1.1.6.tgz#0c1ff4336d95e95b4f1fdd8ccd7e2c5a323b8412"
|
||||
dependencies:
|
||||
typings-global "^1.0.19"
|
||||
util.promisify "^1.0.0"
|
||||
|
||||
smartshell@^1.0.6:
|
||||
version "1.0.18"
|
||||
resolved "https://registry.yarnpkg.com/smartshell/-/smartshell-1.0.18.tgz#b84ccc65cedf3a875bf676cec78ee07f4b4aa9e5"
|
||||
dependencies:
|
||||
"@types/shelljs" "^0.7.4"
|
||||
"@types/which" "^1.0.28"
|
||||
shelljs "^0.7.8"
|
||||
smartq "^1.1.6"
|
||||
typings-global "^1.0.20"
|
||||
which "^1.3.0"
|
||||
|
||||
symbol-observable@^1.0.1:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
|
||||
|
||||
tapbundle@^1.0.13:
|
||||
version "1.1.8"
|
||||
resolved "https://registry.yarnpkg.com/tapbundle/-/tapbundle-1.1.8.tgz#e08aee0e100a830d8a26a583a85d37ce53312e02"
|
||||
dependencies:
|
||||
"@types/node" "^8.0.33"
|
||||
early "^2.1.1"
|
||||
leakage "^0.3.0"
|
||||
smartchai "^1.0.3"
|
||||
smartdelay "^1.0.3"
|
||||
smartq "^1.1.1"
|
||||
typings-global "^1.0.19"
|
||||
|
||||
typings-global@^1.0.14, typings-global@^1.0.16, typings-global@^1.0.19, typings-global@^1.0.20:
|
||||
version "1.0.20"
|
||||
resolved "https://registry.yarnpkg.com/typings-global/-/typings-global-1.0.20.tgz#3da769c54db538247c5d877d1d9e97eb2ec981ff"
|
||||
dependencies:
|
||||
semver "^5.3.0"
|
||||
smartshell "^1.0.6"
|
||||
|
||||
util.promisify@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
|
||||
dependencies:
|
||||
define-properties "^1.1.2"
|
||||
object.getownpropertydescriptors "^2.0.3"
|
||||
|
||||
which@^1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
|
||||
dependencies:
|
||||
isexe "^2.0.0"
|
||||
|
||||
wrappy@1:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
Loading…
x
Reference in New Issue
Block a user