26 Commits

Author SHA1 Message Date
1a36912461 1.0.22 2022-03-29 14:56:22 +02:00
1dcbdcc06d fix(core): update 2022-03-29 14:56:21 +02:00
c7d0c8723f 1.0.21 2022-03-29 13:18:10 +02:00
ae377b185e fix(core): update 2022-03-29 13:18:09 +02:00
eab145e736 1.0.20 2022-03-29 13:14:10 +02:00
4060d64ed4 fix(core): update 2022-03-29 13:14:10 +02:00
b7dfd8b1d5 1.0.19 2022-03-29 10:56:16 +02:00
82f2675910 fix(core): update 2022-03-29 10:56:16 +02:00
d1149d3877 1.0.18 2022-03-29 10:01:51 +02:00
758dcd671c fix(core): update 2022-03-29 10:01:50 +02:00
4c59d38971 1.0.17 2022-03-25 14:17:13 +01:00
385acfd951 fix(core): update 2022-03-25 14:17:13 +01:00
97eba85337 1.0.16 2022-01-28 17:59:07 +01:00
61936bbdd1 fix(core): update 2022-01-28 17:59:06 +01:00
4ab1b917a9 1.0.15 2022-01-28 17:40:12 +01:00
f299cff4c9 fix(core): update 2022-01-28 17:40:12 +01:00
a6e262bbae 1.0.14 2022-01-24 05:13:21 +01:00
8a8200ca8a fix(core): update 2022-01-24 05:13:19 +01:00
e7785cc31b 1.0.13 2022-01-24 05:11:56 +01:00
63610b66bc fix(core): update 2022-01-24 05:11:55 +01:00
d8d382b2fb 1.0.12 2022-01-24 04:52:41 +01:00
7c8a2eeaeb fix(core): update 2022-01-24 04:52:39 +01:00
a34e8f571d 1.0.11 2021-09-27 13:51:00 +02:00
2bf398cf97 fix(core): update 2021-09-27 13:50:59 +02:00
315bbffac2 1.0.10 2021-09-27 12:27:21 +02:00
52e77d1c3e fix(core): update 2021-09-27 12:27:20 +02:00
11 changed files with 14916 additions and 8003 deletions

View File

@@ -36,6 +36,7 @@ auditProductionDependencies:
- npmci command npm audit --audit-level=high --only=prod --production
tags:
- docker
allow_failure: true
auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci

22695
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,29 +1,29 @@
{
"name": "@designestate/dees-comms",
"version": "1.0.9",
"version": "1.0.22",
"private": false,
"description": "a comms module for communicating within the DOM",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^1.0.78",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.14.14",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsbundle": "^1.0.102",
"@gitzone/tstest": "^1.0.70",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.23"
},
"dependencies": {
"@apiglobal/typedrequest": "^1.0.56",
"@apiglobal/typedrequest": "^2.0.3",
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"broadcast-channel": "^3.3.0"
"@pushrocks/smartdelay": "^2.0.13",
"broadcast-channel": "^3.7.0"
},
"files": [
"ts/**/*",

38
test/test.both.ts Normal file
View File

@@ -0,0 +1,38 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as deesComms from '../ts/index.js';
let deesCommsTest: deesComms.DeesComms;
let deesCommsTest2: deesComms.DeesComms;
tap.test('first test', async (tools) => {
deesCommsTest = new deesComms.DeesComms();
deesCommsTest2 = new deesComms.DeesComms();
let counter = 1;
deesCommsTest2.createTypedHandler<any>('test', async (requestData) => {
console.log(`got the request ${counter++}`);
return { hitheretoo: `greetings to ${requestData.hithere}` };
});
// lets fire a request
const typedrequest = deesCommsTest.createTypedRequest<any>('test');
const result = await typedrequest.fire({
hithere: 'hello',
});
console.log(JSON.stringify(result));
// lets fire a request
const typedrequest2 = deesCommsTest.createTypedRequest<any>('test2');
// TODO: return response after timeout
/* const result2 = await typedrequest2.fire({
hithere: 'hello',
});
console.log(JSON.stringify(result2)); */
});
tap.test('should end on nodejs', async (toolsArg) => {
if (globalThis.process) {
toolsArg.delayFor(2000).then(() => globalThis.process.exit(0));
}
})
tap.start();

View File

@@ -1,20 +0,0 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as deesComms from '../ts/index';
let deesCommsTest: deesComms.DeesComms;
tap.test('first test', async (tools) => {
deesCommsTest = new deesComms.DeesComms();
deesCommsTest.createTypedHandler<any>('test', async (requestData) => {
return { hitheretoo: `greetings to ${requestData.hithere}` };
});
// lets fire a request
const typedrequest = deesCommsTest.createTypedRequest<any>('test');
const result = await typedrequest.fire({
hithere: 'hello',
});
console.log(JSON.stringify(result));
});
tap.start();

View File

@@ -1,5 +1,5 @@
import { TypedRequest } from '@apiglobal/typedrequest';
import * as plugins from './dees-comms.plugins';
import * as plugins from './dees-comms.plugins.js';
let BroadcastChannel = globalThis.BroadcastChannel;
if (!BroadcastChannel) {
@@ -10,8 +10,9 @@ if (!BroadcastChannel) {
* a comm class for client side communication between workers and tabs.
*/
export class DeesComms {
private broadcastChannel = new BroadcastChannel('dees-comms');
// sending messages
private postChannel = new BroadcastChannel('dees-comms');
public typedrouter = new plugins.typedrequest.TypedRouter();
public typedtarget = new plugins.typedrequest.TypedTarget({
postMethodWithTypedRouter: async (messageArg) => {
@@ -20,15 +21,16 @@ export class DeesComms {
typedRouterRef: this.typedrouter,
});
private subscriptionChannel = new BroadcastChannel('dees-comms');
// receiving messages
constructor() {
this.subscriptionChannel.onmessage = async (eventArg) => {
const message = eventArg.data;
this.broadcastChannel.onmessage = async (eventArg) => {
const message = (eventArg as any).method ? eventArg : eventArg.data;
console.log(JSON.stringify(message));
const response = await this.typedrouter.routeAndAddResponse(message);
if (response) {
if (response && !response.error) {
this.postMessage(response);
} else {
// console.log(response);
}
};
}
@@ -49,7 +51,7 @@ export class DeesComms {
public async postMessage<T = plugins.typedrequestInterfaces.ITypedRequest>(
messageArg: T
): Promise<void> {
this.postChannel.postMessage(messageArg);
this.broadcastChannel.postMessage(messageArg);
}
/**

View File

@@ -1,4 +1,4 @@
import * as plugins from './dees-comms.plugins';
import * as plugins from './dees-comms.plugins.js';
/**
* a message that can be sent

View File

@@ -1,10 +1,13 @@
// pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedrequest from '@apiglobal/typedrequest';
export { typedrequestInterfaces, typedrequest };
export { smartdelay, typedrequestInterfaces, typedrequest };
// third party scope
import { BroadcastChannel as BroadCastChannelPolyfill } from 'broadcast-channel';
export { BroadCastChannelPolyfill };
export {
BroadCastChannelPolyfill
}

View File

@@ -1 +1 @@
export * from './dees-comms.classes.deescomms';
export * from './dees-comms.classes.deescomms.js';

9
tsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext"
}
}

View File

@@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}