fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-10 07:25:59 +02:00
parent e050031313
commit 487cd53c3b
4 changed files with 648 additions and 640 deletions

1242
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -12,18 +12,18 @@
"build": "(tsbuild)" "build": "(tsbuild)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.3", "@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.1.17", "@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.18", "@gitzone/tstest": "^1.0.24",
"@pushrocks/tapbundle": "^3.0.7", "@pushrocks/tapbundle": "^3.0.13",
"@types/node": "^10.12.12", "@types/node": "^12.7.4",
"tslint": "^5.11.0", "tslint": "^5.20.0",
"tslint-config-prettier": "^1.17.0" "tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/lik": "^3.0.2", "@pushrocks/lik": "^3.0.11",
"@pushrocks/smartevent": "^2.0.3", "@pushrocks/smartevent": "^2.0.3",
"@pushrocks/smartpromise": "^2.0.5", "@pushrocks/smartpromise": "^3.0.2",
"rxjs": "^6.3.3" "rxjs": "^6.5.3"
} }
} }

View File

@ -1,6 +1,4 @@
import * as plugins from './smartrx.plugins'; 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.observablemap';
export * from './smartrx.classes.observableintake'; export * from './smartrx.classes.observableintake';

View File

@ -1,13 +1,13 @@
import * as plugins from './smartrx.plugins'; import * as plugins from './smartrx.plugins';
import { Observable, Subscription } from 'rxjs'; import { Observable, Subscription } from 'rxjs';
import { Deferred } from 'smartq'; import { Deferred } from '@pushrocks/smartpromise';
/** /**
* ObservableIntake * ObservableIntake
*/ */
export class ObservableIntake<T> { export class ObservableIntake<T> {
observable: Observable<T>; public observable: Observable<T>;
completed: Promise<void>; public completed: Promise<void>;
private completedDeffered: Deferred<void>; private completedDeffered: Deferred<void>;
private observableFunctions: any = { private observableFunctions: any = {
next: payloadArg => { next: payloadArg => {
@ -35,11 +35,11 @@ export class ObservableIntake<T> {
this.completed = this.completedDeffered.promise; this.completed = this.completedDeffered.promise;
} }
setObservable(observableFunc) { public setObservable(observableFunc) {
this.observable = observableFunc(); this.observable = observableFunc();
} }
push(payloadArg: T) { public push(payloadArg: T) {
if (this.buffered) { if (this.buffered) {
this.payloadBuffer.push(payloadArg); this.payloadBuffer.push(payloadArg);
} else { } else {
@ -51,8 +51,8 @@ export class ObservableIntake<T> {
* pushes many payloads as array * pushes many payloads as array
* @param payloadArgArray * @param payloadArgArray
*/ */
pushMany(payloadArgArray: T[]) { public pushMany(payloadArgArray: T[]) {
for (let item of payloadArgArray) { for (const item of payloadArgArray) {
this.push(item); this.push(item);
} }
} }
@ -61,15 +61,15 @@ export class ObservableIntake<T> {
* sets a generator to query the next pushed value * sets a generator to query the next pushed value
* @param generatorArg * @param generatorArg
*/ */
setGenerator(generatorArg) { public setGenerator(generatorArg) {
this.generator = generatorArg; this.generator = generatorArg;
} }
makeBuffered() { public makeBuffered() {
this.buffered = true; this.buffered = true;
} }
subscribe(...args) { public subscribe(...args) {
return this.observable.subscribe(...args); return this.observable.subscribe(...args);
} }
@ -77,7 +77,7 @@ export class ObservableIntake<T> {
* request the next values in the quantity specified * request the next values in the quantity specified
* @param howManyArg if a generator is set, of a buffer exists, this allows retrieving values * @param howManyArg if a generator is set, of a buffer exists, this allows retrieving values
*/ */
request(howManyArg: number) { public request(howManyArg: number) {
if (howManyArg === 0) { if (howManyArg === 0) {
return; return;
} else { } else {
@ -95,7 +95,7 @@ export class ObservableIntake<T> {
/** /**
* signals the completion of this observable * signals the completion of this observable
*/ */
signalComplete() { public signalComplete() {
this.observableFunctions.complete(); this.observableFunctions.complete();
} }