@esfaenza/signalr-notifications 11.2.11 → 11.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -50,7 +50,7 @@
50
50
  /**
51
51
  * Hub a cui collegarsi
52
52
  */
53
- var HUB_URL = new core.InjectionToken('HUB_URL');
53
+ var ENDPOINT_URL = new core.InjectionToken('ENDPOINT_URL');
54
54
  /**
55
55
  * Indica se la libreria dev'essere attiva o no
56
56
  */
@@ -76,6 +76,7 @@
76
76
  * Oggetto statico di localizzazione per i messaggi scritti dal servizio
77
77
  */
78
78
  var Loc = {
79
+ "Recovering request to Endpoint": { "en-US": "Recovering request to Endpoint", "it-IT": "Recupero richiesta verso l'Endpoint" },
79
80
  "Building SignalR Hub with Automatic Reconnection": { "en-US": "Building SignalR Hub with Automatic Reconnection", "it-IT": "Compilo l'Hub di SignalR con riconnessione automatica", },
80
81
  "Cannot reconnect SignalR, frontend HUB offline": { "en-US": "Cannot reconnect SignalR, frontend HUB offline", "it-IT": "Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline", },
81
82
  "Send request sent before a connection was in stable State, waiting 1 second and retrying": { "en-US": "Send request sent before a connection was in stable State, waiting 1 second and retrying", "it-IT": "Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo", },
@@ -98,34 +99,28 @@
98
99
  };
99
100
 
100
101
  // Angular
101
- /**
102
- * Servizio che gestisce la comunicazione con un Hub SignalR in base alle configurazioni fornite dall'applicazione
103
- */
102
+ /** Servizio che gestisce la comunicazione con un Hub SignalR in base alle configurazioni fornite dall'applicazione */
104
103
  var NotificationsService = /** @class */ (function () {
105
- /**
106
- * Costruttore
107
- *
108
- * @ignore
109
- */
110
- function NotificationsService(MessageDef, hub_url, msgpack, enabled, debug, autoreconnect, locale) {
104
+ /** @ignore Costruttore */
105
+ function NotificationsService(MessageDef, endpoint_url, msgpack, enabled, debug, autoreconnect, locale) {
111
106
  var _this = this;
112
107
  this.MessageDef = MessageDef;
113
- this.hub_url = hub_url;
108
+ this.endpoint_url = endpoint_url;
114
109
  this.msgpack = msgpack;
115
110
  this.enabled = enabled;
116
111
  this.debug = debug;
117
112
  this.locale = locale;
118
- /**
119
- * Cache degli Observable generati in base agli Endpoint disponibili
120
- */
113
+ /** Cache degli Observable generati in base agli Endpoint disponibili */
121
114
  this.notifications$ = {};
115
+ /** Coda di chiamate da recuperare quando la connessione viene finalmente aperta */
116
+ this.RequestsToRecover = [];
122
117
  if (!this.enabled) {
123
118
  this.log(this.loc("SignalR won't be enabled as per configuration"));
124
119
  return;
125
120
  }
126
121
  this.MessageDef.AllDefinitions.forEach(function (def) { _this.notifications$[def.endpoint] = new rxjs.Subject(); });
127
122
  var pars = { skipNegotiation: true, transport: signalR__namespace.HttpTransportType.WebSockets, logger: debug ? signalR__namespace.LogLevel.Debug : signalR__namespace.LogLevel.None };
128
- var builder = new signalR__namespace.HubConnectionBuilder().withUrl(this.hub_url, pars);
123
+ var builder = new signalR__namespace.HubConnectionBuilder().withUrl("/" + this.endpoint_url, pars);
129
124
  if (autoreconnect) {
130
125
  this.log(this.loc("Building SignalR Hub with Automatic Reconnection"));
131
126
  // 100 tentativi di riconnessione, 1 ogni 5 secondi
@@ -137,14 +132,22 @@
137
132
  builder = builder.withHubProtocol(new mphpModule.MessagePackHubProtocol());
138
133
  }
139
134
  this.connection = builder.build();
140
- this.connect();
135
+ this.connect(function () {
136
+ if (_this.RequestsToRecover.length == 0)
137
+ return;
138
+ for (var i = 0; i < _this.RequestsToRecover.length; i++) {
139
+ _this.log(_this.loc("Recovering request to Endpoint") + " " + _this.RequestsToRecover[i].item.endpoint);
140
+ _this.send(_this.RequestsToRecover[i].item, _this.RequestsToRecover[i].dto);
141
+ }
142
+ _this.RequestsToRecover = [];
143
+ });
141
144
  }
142
145
  /**
143
146
  * Effettua la connessione all'Hub Signalr e registra tutti gli Endpoint per cui il Backend comunica con il Frontend sulla **connection**
144
147
  */
145
- NotificationsService.prototype.connect = function () {
148
+ NotificationsService.prototype.connect = function (onConnected) {
146
149
  var _this = this;
147
- this.connection.start().catch(function (err) { return console.log(err); });
150
+ this.connection.start().catch(function (err) { return console.log(err); }).then(function (_) { return onConnected === null || onConnected === void 0 ? void 0 : onConnected(); });
148
151
  this.MessageDef.AllDefinitions.forEach(function (d) {
149
152
  //Registro solo le cose di IN, quelle di out sono chiamate che faccio io al BE quindi non servono
150
153
  if (d.inTypeDefault !== null && d.outTypeDefault === null)
@@ -187,6 +190,10 @@
187
190
  */
188
191
  NotificationsService.prototype.send = function (item, dto) {
189
192
  var _this = this;
193
+ if (!this.connection) {
194
+ this.RequestsToRecover.push({ item: item, dto: dto });
195
+ return;
196
+ }
190
197
  if (!this.enabled) {
191
198
  this.log(this.loc("Send request ignored because SignalR is not active by configuration"));
192
199
  return rxjs.EMPTY;
@@ -318,7 +325,7 @@
318
325
  ];
319
326
  NotificationsService.ctorParameters = function () { return [
320
327
  { type: BaseMessageService },
321
- { type: String, decorators: [{ type: core.Inject, args: [HUB_URL,] }] },
328
+ { type: String, decorators: [{ type: core.Inject, args: [ENDPOINT_URL,] }] },
322
329
  { type: Boolean, decorators: [{ type: core.Inject, args: [MESSAGE_PACK,] }] },
323
330
  { type: Boolean, decorators: [{ type: core.Inject, args: [SIGNALR_ENABLED,] }] },
324
331
  { type: Boolean, decorators: [{ type: core.Inject, args: [DEBUG_MODE,] }] },
@@ -335,7 +342,7 @@
335
342
  providers: [
336
343
  NotificationsService,
337
344
  { provide: BaseMessageService, useClass: (config === null || config === void 0 ? void 0 : config.messageService) || BaseMessageService },
338
- { provide: HUB_URL, useValue: config === null || config === void 0 ? void 0 : config.hubUrl },
345
+ { provide: ENDPOINT_URL, useValue: config === null || config === void 0 ? void 0 : config.endpointUrl },
339
346
  { provide: LOCALE, useValue: (config === null || config === void 0 ? void 0 : config.locale) || 'it-IT' },
340
347
  { provide: SIGNALR_ENABLED, useValue: (config === null || config === void 0 ? void 0 : config.enabled) != null ? config === null || config === void 0 ? void 0 : config.enabled : true },
341
348
  { provide: DEBUG_MODE, useValue: (config === null || config === void 0 ? void 0 : config.debugMode) != null ? config === null || config === void 0 ? void 0 : config.debugMode : false },
@@ -403,7 +410,7 @@
403
410
  exports.NotificationsService = NotificationsService;
404
411
  exports.SignalrNotificationsModule = SignalrNotificationsModule;
405
412
  exports.SignalrNotificationsModuleConfig = SignalrNotificationsModuleConfig;
406
- exports["ɵa"] = HUB_URL;
413
+ exports["ɵa"] = ENDPOINT_URL;
407
414
  exports["ɵb"] = SIGNALR_ENABLED;
408
415
  exports["ɵc"] = DEBUG_MODE;
409
416
  exports["ɵd"] = LOCALE;
@@ -1 +1 @@
1
- {"version":3,"file":"esfaenza-signalr-notifications.umd.js","sources":["../../../projects/signalr-notifications/src/lib/models/BaseMessageService.ts","../../../projects/signalr-notifications/src/lib/tokens.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.loc.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.module.ts","../../../projects/signalr-notifications/src/lib/models/EndpointDef.ts","../../../projects/signalr-notifications/src/lib/config/SignalrNotificationsModuleConfig.ts","../../../projects/signalr-notifications/src/public-api.ts","../../../projects/signalr-notifications/src/esfaenza-signalr-notifications.ts"],"sourcesContent":["// Angular\r\nimport { Injectable } from '@angular/core';\r\n\r\n// Modelli\r\nimport { EndpointDef } from './EndpointDef';\r\n\r\n/**\r\n * Classe base da estendere con la definizione degli Endpoint supportati dall'applicazione\r\n */\r\n@Injectable()\r\nexport class BaseMessageService {\r\n\r\n private definitions: EndpointDef<any, any>[] = [];\r\n\r\n /** Entrypoint che restituisce tutti gli Endpoint dell'applicazione. Da overridare qualora non venga utilizzato il metodo **add** */\r\n public get AllDefinitions(): EndpointDef<any, any>[] { return this.definitions; }\r\n\r\n public add(endpoint: EndpointDef<any, any>) {\r\n this.definitions.push(endpoint);\r\n }\r\n}","import { InjectionToken } from '@angular/core';\r\n\r\n/**\r\n * Hub a cui collegarsi\r\n */\r\nexport const HUB_URL: InjectionToken<string> = new InjectionToken<string>('HUB_URL');\r\n\r\n/**\r\n * Indica se la libreria dev'essere attiva o no\r\n */\r\nexport const SIGNALR_ENABLED: InjectionToken<string> = new InjectionToken<boolean>('SIGNALR_ENABLED');\r\n\r\n/**\r\n * Indica se stampare messaggi di debug in console\r\n */\r\nexport const DEBUG_MODE: InjectionToken<string> = new InjectionToken<boolean>('DEBUG_MODE');\r\n\r\n/**\r\n * Indica il locale utilizzato dalla libreria per i messaggi. Sono supportati \"it-IT\" ed \"en-US\"\r\n */\r\nexport const LOCALE: InjectionToken<string> = new InjectionToken<string>('LOCALE');\r\n\r\n/**\r\n * Indica se utilizzare il protocollo di trasferimento \"MessagePack\"\r\n */\r\nexport const MESSAGE_PACK: InjectionToken<boolean> = new InjectionToken<boolean>('MESSAGE_PACK');\r\n\r\n/**\r\n * Indica se tentare in automatico la riconnessione\r\n */\r\nexport const AUTO_RECONNECT: InjectionToken<boolean> = new InjectionToken<boolean>('AUTO_RECONNECT');","/**\r\n * Oggetto statico di localizzazione per i messaggi scritti dal servizio\r\n */\r\nexport const Loc ={\r\n \"Building SignalR Hub with Automatic Reconnection\": { \"en-US\": \"Building SignalR Hub with Automatic Reconnection\", \"it-IT\": \"Compilo l'Hub di SignalR con riconnessione automatica\", },\r\n \"Cannot reconnect SignalR, frontend HUB offline\": { \"en-US\": \"Cannot reconnect SignalR, frontend HUB offline\", \"it-IT\": \"Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline\", },\r\n \"Send request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Send request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Invoke' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Connection lost or missing, reconnecting...\" : { \"en-US\": \"Connection lost or missing, reconnecting...\", \"it-IT\": \"Connessione persa o mancante, mi riconnetto...\", },\r\n \"SignalR won't be enabled as per configuration\": { \"en-US\": \"SignalR won't be enabled as per configuration\", \"it-IT\": \"SignalR non verrà attivato come da configurazione\", },\r\n \"Building SignalR Hub with MessagePack protocol\": { \"en-US\": \"Building SignalR Hub with MessagePack protocol\", \"it-IT\": \"Compilo l'Hub di SignalR con protocollo MessagePack\", },\r\n \"Request received from the server for endpoint\": { \"en-US\": \"Request received from the server for endpoint\", \"it-IT\": \"Richiesta ricevuta dal server per endpoint\", },\r\n \"Refusing to register endpoint\": { \"en-US\": \"Refusing to register endpoint\", \"it-IT\": \"Rifiuto di registrare l'endpoint\", },\r\n \"because it is not declared as IN - ONLY\": { \"en-US\": \"because it is not declared as IN - ONLY\", \"it-IT\": \"in quanto non è registrato solo come IN\", },\r\n \"Send request ignored because SignalR is not active by configuration\": { \"en-US\": \"Send request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta send ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request sent to server\": { \"en-US\": \"Request sent to server\", \"it-IT\": \"Richiesta inviata al server\", },\r\n \"Invoke request ignored because SignalR is not active by configuration\": { \"en-US\": \"Invoke request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta invoke ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request invoked to server\": { \"en-US\": \"Request invoked to server\", \"it-IT\": \"Richiesta invoke inviata al server\", },\r\n \"Observe request ignored because SignalR is not active by configuration\": { \"en-US\": \"Observe request ignored because SignalR is not active by configuration\", \"it-IT\": \"Osservazione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Returning observable for required endpoint\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituisco l'observable per l'endpoint richiesto\", },\r\n \"Disconnection request ignored because SignalR is not active by configuration\": { \"en-US\": \"Disconnection request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta di disconnesione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Disconnection request honored\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituito observable per l'endpoint richiesto\", },\r\n \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\": { \"en-US\": \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\", \"it-IT\": \"ERRORE nella riconnessione precedente a un nuovo tentativo di 'Send'. Il messaggio in questione SARA' PERSO\"}\r\n}","// Angular\r\nimport { Injectable, Inject } from \"@angular/core\";\r\n\r\n// Direttive, Componenti, Librerie\r\nimport * as signalR from '@microsoft/signalr';\r\nimport { HubConnectionState } from \"@microsoft/signalr\";\r\nimport { Observable, Subject, EMPTY, from, of } from \"rxjs\";\r\nimport { catchError, concatMap, delay, tap } from \"rxjs/operators\";\r\n\r\n// Modelli\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { EndpointDef } from './models/EndpointDef';\r\nimport { DEBUG_MODE, HUB_URL, LOCALE, MESSAGE_PACK, SIGNALR_ENABLED, AUTO_RECONNECT } from \"./tokens\";\r\n\r\n// Localizzazione\r\nimport { Loc } from './signalr-notifications.service.loc';\r\n\r\n/**\r\n * Servizio che gestisce la comunicazione con un Hub SignalR in base alle configurazioni fornite dall'applicazione\r\n */\r\n@Injectable()\r\nexport class NotificationsService {\r\n\r\n /**\r\n * Cache degli Observable generati in base agli Endpoint disponibili\r\n */\r\n private notifications$: { [index: string]: Subject<any> } = {};\r\n\r\n /**\r\n * Connessione Signalr\r\n */\r\n private connection: signalR.HubConnection;\r\n\r\n /**\r\n * Costruttore\r\n * \r\n * @ignore\r\n */\r\n constructor(private MessageDef: BaseMessageService, @Inject(HUB_URL) private hub_url: string, @Inject(MESSAGE_PACK) private msgpack: boolean, @Inject(SIGNALR_ENABLED) private enabled: boolean, @Inject(DEBUG_MODE) private debug: boolean, @Inject(AUTO_RECONNECT) autoreconnect: boolean, @Inject(LOCALE) private locale : string) {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"SignalR won't be enabled as per configuration\"));\r\n return;\r\n }\r\n\r\n this.MessageDef.AllDefinitions.forEach(def => { this.notifications$[def.endpoint] = new Subject<typeof def.inTypeDefault>(); });\r\n\r\n let pars: signalR.IHttpConnectionOptions = { skipNegotiation: true, transport: signalR.HttpTransportType.WebSockets, logger: debug ? signalR.LogLevel.Debug : signalR.LogLevel.None };\r\n var builder = new signalR.HubConnectionBuilder().withUrl(this.hub_url, pars);\r\n\r\n if (autoreconnect) {\r\n this.log(this.loc(\"Building SignalR Hub with Automatic Reconnection\"));\r\n // 100 tentativi di riconnessione, 1 ogni 5 secondi\r\n builder = builder.withAutomaticReconnect(new Array(100).fill(5 * 1000));\r\n }\r\n\r\n if (this.msgpack) {\r\n this.log(this.loc(\"Building SignalR Hub with MessagePack protocol\"));\r\n var mphpModule = require(\"@microsoft/signalr-protocol-msgpack\");\r\n builder = builder.withHubProtocol(new mphpModule.MessagePackHubProtocol())\r\n }\r\n\r\n this.connection = builder.build();\r\n this.connect();\r\n }\r\n\r\n /**\r\n * Effettua la connessione all'Hub Signalr e registra tutti gli Endpoint per cui il Backend comunica con il Frontend sulla **connection**\r\n */\r\n private connect() {\r\n this.connection.start().catch(err => console.log(err));\r\n this.MessageDef.AllDefinitions.forEach(d => {\r\n //Registro solo le cose di IN, quelle di out sono chiamate che faccio io al BE quindi non servono\r\n if (d.inTypeDefault !== null && d.outTypeDefault === null)\r\n this.connection.on(d.endpoint, (message) => {\r\n this.log(this.loc(\"Request received from the server for endpoint\") + \" '\" + d.endpoint + \"': \" + this.substringLog(JSON.stringify(message)));\r\n this.notifications$[d.endpoint].next(message);\r\n });\r\n else\r\n this.log(this.loc(\"Refusing to register endpoint\") + \" \" + d.endpoint + \" \" + this.loc(\"because it is not declared as IN - ONLY\"));\r\n });\r\n }\r\n\r\n /**\r\n * Effettua verifiche sulla connessione e, in caso non fosse collegata, tenta di riconnetterla\r\n * \r\n * @returns {Promise<'OK' | 'KO' | 'NO-OP'>} 'OK' Se la connessione è già connessa o è stata riconnessa con successo, 'KO' Se non è stato possibile riconnettere \r\n * una connessione disconnessa, 'NO-OP' se la connesisone è in uno stato intermedio che non può essere modificato\r\n */\r\n public ensureConnected(): Promise<'OK' | 'KO' | 'NO-OP'> {\r\n if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.log(this.loc(\"Connection lost or missing, reconnecting...\"));\r\n\r\n return this.connection.start()\r\n .then(_ => {\r\n return Promise.resolve(\"OK\");\r\n }, _ => {\r\n this.log(this.loc(\"Cannot reconnect SignalR, frontend HUB offline\"));\r\n return Promise.resolve(\"KO\");\r\n });\r\n }\r\n else if (this.connection.state == HubConnectionState.Connected)\r\n return Promise.resolve(\"OK\");\r\n else\r\n return Promise.resolve(\"NO-OP\");\r\n }\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend\r\n * \r\n * @param {EndpointDef<TOut, any>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n */\r\n public send<TOut>(item: EndpointDef<TOut, any>, dto: TOut) {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Send request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Send request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n setTimeout(() => { this.send(item, dto); }, 1000);\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.ensureConnected().then(t => {\r\n if (t == \"KO\") this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n else this.send(item, dto);\r\n })\r\n }\r\n else {\r\n this.connection.send(item.endpoint, dto).then(_ => {\r\n if (this.debug)\r\n console.info(this.loc(\"Request sent to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n });\r\n }\r\n }\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend, aspettandosi una risposta\r\n * \r\n * @param {EndpointDef<TOut, TIn>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere il risultato della chiamata\r\n */\r\n public invoke<TOut, TIn>(item: EndpointDef<TOut, TIn>, dto: TOut): Observable<TIn> {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Invoke request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n return of().pipe(delay(1000), concatMap(() => this.invoke(item, dto)));\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n return from(this.ensureConnected()).pipe(concatMap((res) => {\r\n if (res == \"KO\") {\r\n this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n return EMPTY;\r\n }\r\n else return this.invoke(item, dto);\r\n }))\r\n }\r\n else {\r\n return from(this.connection.invoke<TIn>(item.endpoint, dto)).pipe(\r\n tap(() => {\r\n if (this.debug) console.log(this.loc(\"Request invoked to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n })\r\n );\r\n }\r\n }\r\n\r\n /**\r\n * Hook per osservare i dati spediti ad un Endpoint dal Backend\r\n * \r\n * @param {EndpointDef<TIn, any>} item Endpoint su cui ascoltare\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere l'oggetto generato ad ogni chiamata dal Backend al Frontend\r\n */\r\n public observe<TIn>(item: EndpointDef<TIn, any>): Observable<TIn> {\r\n if (!this.enabled)\r\n {\r\n this.log(this.loc(\"Observe request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n this.log(this.loc(\"Returning observable for required endpoint\") + \": \" + item.endpoint);\r\n return <Observable<TIn>>this.notifications$[item.endpoint];\r\n }\r\n\r\n /**\r\n * Disconnessione del sistema di SignalR\r\n * \r\n * @returns {Observable<void>} Observable a cui registrarsi che viene chiamato quando la disconnessione è terminata\r\n */\r\n public disconnect(): Observable<void> {\r\n //NO-OP se non attivo\r\n if (!this.enabled)\r\n {\r\n this.log(this.loc(\"Disconnection request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n return from(this.connection.stop()).pipe(\r\n catchError((err, caught) => { console.log(err); return of(null); }),\r\n tap(() => {\r\n this.log(this.loc(\"Disconnection request honored\"));\r\n })\r\n );\r\n }\r\n\r\n /**\r\n * Taglia un log troppo lungo\r\n * \r\n * @param {string} text Log da tagliare\r\n * @param {number} maxchars Numero massimo di caratteri da tenere\r\n * \r\n * @returns {string} Log tagliato\r\n */\r\n private substringLog(text: string, maxchars: number = 120) : string {\r\n return text.length > maxchars ? text.substr(0, maxchars) + \"[...]\" : text;\r\n }\r\n\r\n /**\r\n * Stampa un log a console\r\n * \r\n * @param {string} message Messaggio da stampare\r\n */\r\n private log(message: string) {\r\n if (this.debug)\r\n console.log(\"@signalr-notifications: \" + message)\r\n }\r\n\r\n /**\r\n * Helper di localizzazione\r\n * \r\n * @param {string} message Messaggio da tradurre\r\n * \r\n * @returns {string} Messaggio tradotto\r\n */\r\n private loc(message: string) : string{\r\n if(!Loc[message])\r\n {\r\n console.warn(\"Untranslated message: \" + message)\r\n return \"\";\r\n }\r\n return Loc[message][this.locale];\r\n }\r\n}","\r\nimport { NgModule, ModuleWithProviders } from '@angular/core';\r\nimport { SignalrNotificationsModuleConfig } from './config/SignalrNotificationsModuleConfig';\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { NotificationsService } from './signalr-notifications.service';\r\nimport { HUB_URL, SIGNALR_ENABLED, DEBUG_MODE, LOCALE, MESSAGE_PACK, AUTO_RECONNECT } from './tokens';\r\n\r\n@NgModule()\r\nexport class SignalrNotificationsModule {\r\n static forRoot(config?: SignalrNotificationsModuleConfig): ModuleWithProviders<SignalrNotificationsModule> {\r\n return {\r\n ngModule: SignalrNotificationsModule,\r\n providers: [\r\n NotificationsService,\r\n { provide: BaseMessageService, useClass: config?.messageService || BaseMessageService },\r\n { provide: HUB_URL, useValue: config?.hubUrl },\r\n { provide: LOCALE, useValue: config?.locale || 'it-IT' },\r\n { provide: SIGNALR_ENABLED, useValue: config?.enabled != null ? config?.enabled : true },\r\n { provide: DEBUG_MODE, useValue: config?.debugMode != null ? config?.debugMode : false },\r\n { provide: MESSAGE_PACK, useValue: config?.autoReconnect != null ? config?.autoReconnect : false },\r\n { provide: AUTO_RECONNECT, useValue: config?.useMessagePack != null ? config?.useMessagePack : false },\r\n ]\r\n };\r\n }\r\n}","/**\r\n * Definisce un Endpoint che spedisce un'informazione di tipo TIn e restituisce un'informazione di tipo TOut\r\n */\r\nexport class EndpointDef<TIn, TOut> {\r\n\r\n /**\r\n * Costruttore\r\n * \r\n * @param {string} endpoint Nome del metodo da chiamare nell'Hub del Backend contattato\r\n * @param {TIn} inTypeDefault Default per il tipo TIn. Utilizzato per fare Typecheck sulle chiamate da Backend a Frontend\r\n * @param {TOut} outTypeDefault Default per il tipo TOut. Utilizzato per fare Typecheck sulle chiamate da Frontend a Backend\r\n */\r\n constructor(public endpoint: string, public inTypeDefault: TIn, public outTypeDefault: TOut) { }\r\n\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo INPUT */\r\n public static In<TIn>(name: string, inTypeDefault: TIn): EndpointDef<TIn, void> {\r\n return new EndpointDef<TIn, void>(name, inTypeDefault, undefined);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo OUTPUT */\r\n public static Out<TOut>(name: string, outTypeDefault: TOut): EndpointDef<void, TOut> {\r\n return new EndpointDef<void, TOut>(name, undefined, outTypeDefault);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di INPUT e OUTPUT (BIDIREZIONALE) */\r\n public static Bi<TIn, TOut>(name: string, inTypeDefault: TIn, outTypeDefault: TOut): EndpointDef<TIn, TOut> {\r\n return new EndpointDef<TIn, TOut>(name, inTypeDefault, outTypeDefault);\r\n }\r\n}","// Angular\r\nimport { Type } from '@angular/core';\r\n\r\n// Modelli\r\nimport { BaseMessageService } from '../models/BaseMessageService';\r\n\r\n/**\r\n * Classe di configurazione per la libreria\r\n */\r\nexport class SignalrNotificationsModuleConfig {\r\n\r\n /**\r\n * Url nei confronti del quale aprire la connessione SignalR\r\n */\r\n hubUrl : string;\r\n\r\n /**\r\n * Servizio che definisce i messaggi di IN e OUT coi loro default\r\n */\r\n messageService? : Type<BaseMessageService>;\r\n\r\n /**\r\n * Indica se abilitare o meno la connessione SignalR nei confronti dell'URL **hubUrl**\r\n */\r\n enabled? : boolean;\r\n\r\n /**\r\n * Indica se utilizzare message pack come protocollo di trasmissione\r\n */\r\n useMessagePack? : boolean;\r\n\r\n /**\r\n * Indica se tentare di riconnettersi automaticamente quando la connessione cade\r\n */\r\n autoReconnect? : boolean;\r\n\r\n /**\r\n * Indica se scrivere o meno i messaggi di debug\r\n */\r\n debugMode? : boolean;\r\n\r\n /**\r\n * Lingua dei feedback a console, sono supportati 'it-IT' ed 'en-US'\r\n */\r\n locale? : string\r\n}","/*\n * Public API Surface of signalr-notifications\n */\n\nexport * from './lib/signalr-notifications.service';\nexport * from './lib/signalr-notifications.module';\nexport * from './lib/models/BaseMessageService';\nexport * from './lib/models/EndpointDef';\nexport * from './lib/config/SignalrNotificationsModuleConfig';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n\nexport {AUTO_RECONNECT as ɵf,DEBUG_MODE as ɵc,HUB_URL as ɵa,LOCALE as ɵd,MESSAGE_PACK as ɵe,SIGNALR_ENABLED as ɵb} from './lib/tokens';"],"names":["Injectable","InjectionToken","Subject","signalR","HubConnectionState","EMPTY","of","delay","concatMap","from","tap","catchError","Inject","NgModule"],"mappings":"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"}
1
+ {"version":3,"file":"esfaenza-signalr-notifications.umd.js","sources":["../../../projects/signalr-notifications/src/lib/models/BaseMessageService.ts","../../../projects/signalr-notifications/src/lib/tokens.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.loc.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.module.ts","../../../projects/signalr-notifications/src/lib/models/EndpointDef.ts","../../../projects/signalr-notifications/src/lib/config/SignalrNotificationsModuleConfig.ts","../../../projects/signalr-notifications/src/public-api.ts","../../../projects/signalr-notifications/src/esfaenza-signalr-notifications.ts"],"sourcesContent":["// Angular\r\nimport { Injectable } from '@angular/core';\r\n\r\n// Modelli\r\nimport { EndpointDef } from './EndpointDef';\r\n\r\n/**\r\n * Classe base da estendere con la definizione degli Endpoint supportati dall'applicazione\r\n */\r\n@Injectable()\r\nexport class BaseMessageService {\r\n\r\n private definitions: EndpointDef<any, any>[] = [];\r\n\r\n /** Entrypoint che restituisce tutti gli Endpoint dell'applicazione. Da overridare qualora non venga utilizzato il metodo **add** */\r\n public get AllDefinitions(): EndpointDef<any, any>[] { return this.definitions; }\r\n\r\n public add(endpoint: EndpointDef<any, any>) {\r\n this.definitions.push(endpoint);\r\n }\r\n}","import { InjectionToken } from '@angular/core';\r\n\r\n/**\r\n * Hub a cui collegarsi\r\n */\r\nexport const ENDPOINT_URL: InjectionToken<string> = new InjectionToken<string>('ENDPOINT_URL');\r\n\r\n/**\r\n * Indica se la libreria dev'essere attiva o no\r\n */\r\nexport const SIGNALR_ENABLED: InjectionToken<string> = new InjectionToken<boolean>('SIGNALR_ENABLED');\r\n\r\n/**\r\n * Indica se stampare messaggi di debug in console\r\n */\r\nexport const DEBUG_MODE: InjectionToken<string> = new InjectionToken<boolean>('DEBUG_MODE');\r\n\r\n/**\r\n * Indica il locale utilizzato dalla libreria per i messaggi. Sono supportati \"it-IT\" ed \"en-US\"\r\n */\r\nexport const LOCALE: InjectionToken<string> = new InjectionToken<string>('LOCALE');\r\n\r\n/**\r\n * Indica se utilizzare il protocollo di trasferimento \"MessagePack\"\r\n */\r\nexport const MESSAGE_PACK: InjectionToken<boolean> = new InjectionToken<boolean>('MESSAGE_PACK');\r\n\r\n/**\r\n * Indica se tentare in automatico la riconnessione\r\n */\r\nexport const AUTO_RECONNECT: InjectionToken<boolean> = new InjectionToken<boolean>('AUTO_RECONNECT');","/**\r\n * Oggetto statico di localizzazione per i messaggi scritti dal servizio\r\n */\r\nexport const Loc ={\r\n \"Recovering request to Endpoint\": {\"en-US\": \"Recovering request to Endpoint\", \"it-IT\": \"Recupero richiesta verso l'Endpoint\"},\r\n \"Building SignalR Hub with Automatic Reconnection\": { \"en-US\": \"Building SignalR Hub with Automatic Reconnection\", \"it-IT\": \"Compilo l'Hub di SignalR con riconnessione automatica\", },\r\n \"Cannot reconnect SignalR, frontend HUB offline\": { \"en-US\": \"Cannot reconnect SignalR, frontend HUB offline\", \"it-IT\": \"Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline\", },\r\n \"Send request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Send request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Invoke' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Connection lost or missing, reconnecting...\" : { \"en-US\": \"Connection lost or missing, reconnecting...\", \"it-IT\": \"Connessione persa o mancante, mi riconnetto...\", },\r\n \"SignalR won't be enabled as per configuration\": { \"en-US\": \"SignalR won't be enabled as per configuration\", \"it-IT\": \"SignalR non verrà attivato come da configurazione\", },\r\n \"Building SignalR Hub with MessagePack protocol\": { \"en-US\": \"Building SignalR Hub with MessagePack protocol\", \"it-IT\": \"Compilo l'Hub di SignalR con protocollo MessagePack\", },\r\n \"Request received from the server for endpoint\": { \"en-US\": \"Request received from the server for endpoint\", \"it-IT\": \"Richiesta ricevuta dal server per endpoint\", },\r\n \"Refusing to register endpoint\": { \"en-US\": \"Refusing to register endpoint\", \"it-IT\": \"Rifiuto di registrare l'endpoint\", },\r\n \"because it is not declared as IN - ONLY\": { \"en-US\": \"because it is not declared as IN - ONLY\", \"it-IT\": \"in quanto non è registrato solo come IN\", },\r\n \"Send request ignored because SignalR is not active by configuration\": { \"en-US\": \"Send request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta send ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request sent to server\": { \"en-US\": \"Request sent to server\", \"it-IT\": \"Richiesta inviata al server\", },\r\n \"Invoke request ignored because SignalR is not active by configuration\": { \"en-US\": \"Invoke request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta invoke ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request invoked to server\": { \"en-US\": \"Request invoked to server\", \"it-IT\": \"Richiesta invoke inviata al server\", },\r\n \"Observe request ignored because SignalR is not active by configuration\": { \"en-US\": \"Observe request ignored because SignalR is not active by configuration\", \"it-IT\": \"Osservazione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Returning observable for required endpoint\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituisco l'observable per l'endpoint richiesto\", },\r\n \"Disconnection request ignored because SignalR is not active by configuration\": { \"en-US\": \"Disconnection request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta di disconnesione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Disconnection request honored\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituito observable per l'endpoint richiesto\", },\r\n \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\": { \"en-US\": \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\", \"it-IT\": \"ERRORE nella riconnessione precedente a un nuovo tentativo di 'Send'. Il messaggio in questione SARA' PERSO\"}\r\n}","// Angular\r\nimport { Injectable, Inject } from \"@angular/core\";\r\n\r\n// Direttive, Componenti, Librerie\r\nimport * as signalR from '@microsoft/signalr';\r\nimport { HubConnectionState } from \"@microsoft/signalr\";\r\nimport { Observable, Subject, EMPTY, from, of } from \"rxjs\";\r\nimport { catchError, concatMap, delay, tap } from \"rxjs/operators\";\r\n\r\n// Modelli\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { EndpointDef } from './models/EndpointDef';\r\nimport { DEBUG_MODE, ENDPOINT_URL, LOCALE, MESSAGE_PACK, SIGNALR_ENABLED, AUTO_RECONNECT } from \"./tokens\";\r\n\r\n// Localizzazione\r\nimport { Loc } from './signalr-notifications.service.loc';\r\n\r\n/** Servizio che gestisce la comunicazione con un Hub SignalR in base alle configurazioni fornite dall'applicazione */\r\n@Injectable()\r\nexport class NotificationsService {\r\n\r\n /** Cache degli Observable generati in base agli Endpoint disponibili */\r\n private notifications$: { [index: string]: Subject<any> } = {};\r\n\r\n /** Connessione Signalr */\r\n private connection: signalR.HubConnection;\r\n\r\n /** Coda di chiamate da recuperare quando la connessione viene finalmente aperta */\r\n private RequestsToRecover: { item: EndpointDef<any, any>, dto: any }[] = [];\r\n\r\n /** @ignore Costruttore */\r\n constructor(private MessageDef: BaseMessageService, @Inject(ENDPOINT_URL) private endpoint_url: string, @Inject(MESSAGE_PACK) private msgpack: boolean, @Inject(SIGNALR_ENABLED) private enabled: boolean, @Inject(DEBUG_MODE) private debug: boolean, @Inject(AUTO_RECONNECT) autoreconnect: boolean, @Inject(LOCALE) private locale: string) {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"SignalR won't be enabled as per configuration\"));\r\n return;\r\n }\r\n\r\n this.MessageDef.AllDefinitions.forEach(def => { this.notifications$[def.endpoint] = new Subject<typeof def.inTypeDefault>(); });\r\n\r\n let pars: signalR.IHttpConnectionOptions = { skipNegotiation: true, transport: signalR.HttpTransportType.WebSockets, logger: debug ? signalR.LogLevel.Debug : signalR.LogLevel.None };\r\n var builder = new signalR.HubConnectionBuilder().withUrl(\"/\" + this.endpoint_url, pars);\r\n\r\n if (autoreconnect) {\r\n this.log(this.loc(\"Building SignalR Hub with Automatic Reconnection\"));\r\n // 100 tentativi di riconnessione, 1 ogni 5 secondi\r\n builder = builder.withAutomaticReconnect(new Array(100).fill(5 * 1000));\r\n }\r\n\r\n if (this.msgpack) {\r\n this.log(this.loc(\"Building SignalR Hub with MessagePack protocol\"));\r\n var mphpModule = require(\"@microsoft/signalr-protocol-msgpack\");\r\n builder = builder.withHubProtocol(new mphpModule.MessagePackHubProtocol())\r\n }\r\n\r\n this.connection = builder.build();\r\n this.connect(() => {\r\n if (this.RequestsToRecover.length == 0)\r\n return;\r\n\r\n for (let i = 0; i < this.RequestsToRecover.length; i++) {\r\n this.log(this.loc(\"Recovering request to Endpoint\") + \" \" + this.RequestsToRecover[i].item.endpoint)\r\n this.send(this.RequestsToRecover[i].item, this.RequestsToRecover[i].dto);\r\n }\r\n\r\n this.RequestsToRecover = [];\r\n });\r\n }\r\n\r\n /**\r\n * Effettua la connessione all'Hub Signalr e registra tutti gli Endpoint per cui il Backend comunica con il Frontend sulla **connection**\r\n */\r\n private connect(onConnected?: () => void) {\r\n this.connection.start().catch(err => console.log(err)).then(_ => onConnected?.());\r\n this.MessageDef.AllDefinitions.forEach(d => {\r\n //Registro solo le cose di IN, quelle di out sono chiamate che faccio io al BE quindi non servono\r\n if (d.inTypeDefault !== null && d.outTypeDefault === null)\r\n this.connection.on(d.endpoint, (message) => {\r\n this.log(this.loc(\"Request received from the server for endpoint\") + \" '\" + d.endpoint + \"': \" + this.substringLog(JSON.stringify(message)));\r\n this.notifications$[d.endpoint].next(message);\r\n });\r\n else\r\n this.log(this.loc(\"Refusing to register endpoint\") + \" \" + d.endpoint + \" \" + this.loc(\"because it is not declared as IN - ONLY\"));\r\n });\r\n }\r\n\r\n /**\r\n * Effettua verifiche sulla connessione e, in caso non fosse collegata, tenta di riconnetterla\r\n * \r\n * @returns {Promise<'OK' | 'KO' | 'NO-OP'>} 'OK' Se la connessione è già connessa o è stata riconnessa con successo, 'KO' Se non è stato possibile riconnettere \r\n * una connessione disconnessa, 'NO-OP' se la connesisone è in uno stato intermedio che non può essere modificato\r\n */\r\n public ensureConnected(): Promise<'OK' | 'KO' | 'NO-OP'> {\r\n if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.log(this.loc(\"Connection lost or missing, reconnecting...\"));\r\n\r\n return this.connection.start()\r\n .then(_ => {\r\n return Promise.resolve(\"OK\");\r\n }, _ => {\r\n this.log(this.loc(\"Cannot reconnect SignalR, frontend HUB offline\"));\r\n return Promise.resolve(\"KO\");\r\n });\r\n }\r\n else if (this.connection.state == HubConnectionState.Connected)\r\n return Promise.resolve(\"OK\");\r\n else\r\n return Promise.resolve(\"NO-OP\");\r\n }\r\n\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend\r\n * \r\n * @param {EndpointDef<TOut, any>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n */\r\n public send<TOut>(item: EndpointDef<TOut, any>, dto: TOut) {\r\n if (!this.connection) {\r\n this.RequestsToRecover.push({ item, dto });\r\n return;\r\n }\r\n\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Send request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Send request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n setTimeout(() => { this.send(item, dto); }, 1000);\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.ensureConnected().then(t => {\r\n if (t == \"KO\") this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n else this.send(item, dto);\r\n })\r\n }\r\n else {\r\n this.connection.send(item.endpoint, dto).then(_ => {\r\n if (this.debug)\r\n console.info(this.loc(\"Request sent to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n });\r\n }\r\n }\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend, aspettandosi una risposta\r\n * \r\n * @param {EndpointDef<TOut, TIn>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere il risultato della chiamata\r\n */\r\n public invoke<TOut, TIn>(item: EndpointDef<TOut, TIn>, dto: TOut): Observable<TIn> {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Invoke request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n return of().pipe(delay(1000), concatMap(() => this.invoke(item, dto)));\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n return from(this.ensureConnected()).pipe(concatMap((res) => {\r\n if (res == \"KO\") {\r\n this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n return EMPTY;\r\n }\r\n else return this.invoke(item, dto);\r\n }))\r\n }\r\n else {\r\n return from(this.connection.invoke<TIn>(item.endpoint, dto)).pipe(\r\n tap(() => {\r\n if (this.debug) console.log(this.loc(\"Request invoked to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n })\r\n );\r\n }\r\n }\r\n\r\n /**\r\n * Hook per osservare i dati spediti ad un Endpoint dal Backend\r\n * \r\n * @param {EndpointDef<TIn, any>} item Endpoint su cui ascoltare\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere l'oggetto generato ad ogni chiamata dal Backend al Frontend\r\n */\r\n public observe<TIn>(item: EndpointDef<TIn, any>): Observable<TIn> {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Observe request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n this.log(this.loc(\"Returning observable for required endpoint\") + \": \" + item.endpoint);\r\n return <Observable<TIn>>this.notifications$[item.endpoint];\r\n }\r\n\r\n /**\r\n * Disconnessione del sistema di SignalR\r\n * \r\n * @returns {Observable<void>} Observable a cui registrarsi che viene chiamato quando la disconnessione è terminata\r\n */\r\n public disconnect(): Observable<void> {\r\n //NO-OP se non attivo\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Disconnection request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n return from(this.connection.stop()).pipe(\r\n catchError((err, caught) => { console.log(err); return of(null); }),\r\n tap(() => {\r\n this.log(this.loc(\"Disconnection request honored\"));\r\n })\r\n );\r\n }\r\n\r\n /**\r\n * Taglia un log troppo lungo\r\n * \r\n * @param {string} text Log da tagliare\r\n * @param {number} maxchars Numero massimo di caratteri da tenere\r\n * \r\n * @returns {string} Log tagliato\r\n */\r\n private substringLog(text: string, maxchars: number = 120): string {\r\n return text.length > maxchars ? text.substr(0, maxchars) + \"[...]\" : text;\r\n }\r\n\r\n /**\r\n * Stampa un log a console\r\n * \r\n * @param {string} message Messaggio da stampare\r\n */\r\n private log(message: string) {\r\n if (this.debug)\r\n console.log(\"@signalr-notifications: \" + message)\r\n }\r\n\r\n /**\r\n * Helper di localizzazione\r\n * \r\n * @param {string} message Messaggio da tradurre\r\n * \r\n * @returns {string} Messaggio tradotto\r\n */\r\n private loc(message: string): string {\r\n if (!Loc[message]) {\r\n console.warn(\"Untranslated message: \" + message)\r\n return \"\";\r\n }\r\n return Loc[message][this.locale];\r\n }\r\n}","\r\nimport { NgModule, ModuleWithProviders } from '@angular/core';\r\nimport { SignalrNotificationsModuleConfig } from './config/SignalrNotificationsModuleConfig';\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { NotificationsService } from './signalr-notifications.service';\r\nimport { ENDPOINT_URL, SIGNALR_ENABLED, DEBUG_MODE, LOCALE, MESSAGE_PACK, AUTO_RECONNECT } from './tokens';\r\n\r\n@NgModule()\r\nexport class SignalrNotificationsModule {\r\n static forRoot(config?: SignalrNotificationsModuleConfig): ModuleWithProviders<SignalrNotificationsModule> {\r\n return {\r\n ngModule: SignalrNotificationsModule,\r\n providers: [\r\n NotificationsService,\r\n { provide: BaseMessageService, useClass: config?.messageService || BaseMessageService },\r\n { provide: ENDPOINT_URL, useValue: config?.endpointUrl },\r\n { provide: LOCALE, useValue: config?.locale || 'it-IT' },\r\n { provide: SIGNALR_ENABLED, useValue: config?.enabled != null ? config?.enabled : true },\r\n { provide: DEBUG_MODE, useValue: config?.debugMode != null ? config?.debugMode : false },\r\n { provide: MESSAGE_PACK, useValue: config?.autoReconnect != null ? config?.autoReconnect : false },\r\n { provide: AUTO_RECONNECT, useValue: config?.useMessagePack != null ? config?.useMessagePack : false },\r\n ]\r\n };\r\n }\r\n}","/**\r\n * Definisce un Endpoint che spedisce un'informazione di tipo TIn e restituisce un'informazione di tipo TOut\r\n */\r\nexport class EndpointDef<TIn, TOut> {\r\n\r\n /**\r\n * Costruttore\r\n * \r\n * @param {string} endpoint Nome del metodo da chiamare nell'Hub del Backend contattato\r\n * @param {TIn} inTypeDefault Default per il tipo TIn. Utilizzato per fare Typecheck sulle chiamate da Backend a Frontend\r\n * @param {TOut} outTypeDefault Default per il tipo TOut. Utilizzato per fare Typecheck sulle chiamate da Frontend a Backend\r\n */\r\n constructor(public endpoint: string, public inTypeDefault: TIn, public outTypeDefault: TOut) { }\r\n\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo INPUT */\r\n public static In<TIn>(name: string, inTypeDefault: TIn): EndpointDef<TIn, void> {\r\n return new EndpointDef<TIn, void>(name, inTypeDefault, undefined);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo OUTPUT */\r\n public static Out<TOut>(name: string, outTypeDefault: TOut): EndpointDef<void, TOut> {\r\n return new EndpointDef<void, TOut>(name, undefined, outTypeDefault);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di INPUT e OUTPUT (BIDIREZIONALE) */\r\n public static Bi<TIn, TOut>(name: string, inTypeDefault: TIn, outTypeDefault: TOut): EndpointDef<TIn, TOut> {\r\n return new EndpointDef<TIn, TOut>(name, inTypeDefault, outTypeDefault);\r\n }\r\n}","// Angular\r\nimport { Type } from '@angular/core';\r\n\r\n// Modelli\r\nimport { BaseMessageService } from '../models/BaseMessageService';\r\n\r\n/**\r\n * Classe di configurazione per la libreria\r\n */\r\nexport class SignalrNotificationsModuleConfig {\r\n\r\n /**\r\n * Url nei confronti del quale aprire la connessione SignalR\r\n */\r\n endpointUrl : string;\r\n\r\n /**\r\n * Servizio che definisce i messaggi di IN e OUT coi loro default\r\n */\r\n messageService? : Type<BaseMessageService>;\r\n\r\n /**\r\n * Indica se abilitare o meno la connessione SignalR nei confronti dell'URL **hubUrl**\r\n */\r\n enabled? : boolean;\r\n\r\n /**\r\n * Indica se utilizzare message pack come protocollo di trasmissione\r\n */\r\n useMessagePack? : boolean;\r\n\r\n /**\r\n * Indica se tentare di riconnettersi automaticamente quando la connessione cade\r\n */\r\n autoReconnect? : boolean;\r\n\r\n /**\r\n * Indica se scrivere o meno i messaggi di debug\r\n */\r\n debugMode? : boolean;\r\n\r\n /**\r\n * Lingua dei feedback a console, sono supportati 'it-IT' ed 'en-US'\r\n */\r\n locale? : string\r\n}","/*\n * Public API Surface of signalr-notifications\n */\n\nexport * from './lib/signalr-notifications.service';\nexport * from './lib/signalr-notifications.module';\nexport * from './lib/models/BaseMessageService';\nexport * from './lib/models/EndpointDef';\nexport * from './lib/config/SignalrNotificationsModuleConfig';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n\nexport {AUTO_RECONNECT as ɵf,DEBUG_MODE as ɵc,ENDPOINT_URL as ɵa,LOCALE as ɵd,MESSAGE_PACK as ɵe,SIGNALR_ENABLED as ɵb} from './lib/tokens';"],"names":["Injectable","InjectionToken","Subject","signalR","HubConnectionState","EMPTY","of","delay","concatMap","from","tap","catchError","Inject","NgModule"],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports,require("@angular/core"),require("@microsoft/signalr"),require("rxjs"),require("rxjs/operators")):"function"==typeof define&&define.amd?define("@esfaenza/signalr-notifications",["exports","@angular/core","@microsoft/signalr","rxjs","rxjs/operators"],n):n(((e="undefined"!=typeof globalThis?globalThis:e||self).esfaenza=e.esfaenza||{},e.esfaenza["signalr-notifications"]={}),e.ng.core,e.signalR,e.rxjs,e.rxjs.operators)}(this,(function(e,n,t,o,i){"use strict";function s(e){if(e&&e.__esModule)return e;var n=Object.create(null);return e&&Object.keys(e).forEach((function(t){if("default"!==t){var o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,o.get?o:{enumerable:!0,get:function(){return e[t]}})}})),n.default=e,Object.freeze(n)}var r=s(t),a=function(){function e(){this.definitions=[]}return Object.defineProperty(e.prototype,"AllDefinitions",{get:function(){return this.definitions},enumerable:!1,configurable:!0}),e.prototype.add=function(e){this.definitions.push(e)},e}();a.decorators=[{type:n.Injectable}];var c=new n.InjectionToken("HUB_URL"),u=new n.InjectionToken("SIGNALR_ENABLED"),l=new n.InjectionToken("DEBUG_MODE"),g=new n.InjectionToken("LOCALE"),d=new n.InjectionToken("MESSAGE_PACK"),f=new n.InjectionToken("AUTO_RECONNECT"),p={"Building SignalR Hub with Automatic Reconnection":{"en-US":"Building SignalR Hub with Automatic Reconnection","it-IT":"Compilo l'Hub di SignalR con riconnessione automatica"},"Cannot reconnect SignalR, frontend HUB offline":{"en-US":"Cannot reconnect SignalR, frontend HUB offline","it-IT":"Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline"},"Send request sent before a connection was in stable State, waiting 1 second and retrying":{"en-US":"Send request sent before a connection was in stable State, waiting 1 second and retrying","it-IT":"Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo"},"Invoke request sent before a connection was in stable State, waiting 1 second and retrying":{"en-US":"Invoke request sent before a connection was in stable State, waiting 1 second and retrying","it-IT":"Richiesta 'Invoke' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo"},"Connection lost or missing, reconnecting...":{"en-US":"Connection lost or missing, reconnecting...","it-IT":"Connessione persa o mancante, mi riconnetto..."},"SignalR won't be enabled as per configuration":{"en-US":"SignalR won't be enabled as per configuration","it-IT":"SignalR non verrà attivato come da configurazione"},"Building SignalR Hub with MessagePack protocol":{"en-US":"Building SignalR Hub with MessagePack protocol","it-IT":"Compilo l'Hub di SignalR con protocollo MessagePack"},"Request received from the server for endpoint":{"en-US":"Request received from the server for endpoint","it-IT":"Richiesta ricevuta dal server per endpoint"},"Refusing to register endpoint":{"en-US":"Refusing to register endpoint","it-IT":"Rifiuto di registrare l'endpoint"},"because it is not declared as IN - ONLY":{"en-US":"because it is not declared as IN - ONLY","it-IT":"in quanto non è registrato solo come IN"},"Send request ignored because SignalR is not active by configuration":{"en-US":"Send request ignored because SignalR is not active by configuration","it-IT":"Richiesta send ignorata in quanto SignalR non è attivo da configurazione"},"Request sent to server":{"en-US":"Request sent to server","it-IT":"Richiesta inviata al server"},"Invoke request ignored because SignalR is not active by configuration":{"en-US":"Invoke request ignored because SignalR is not active by configuration","it-IT":"Richiesta invoke ignorata in quanto SignalR non è attivo da configurazione"},"Request invoked to server":{"en-US":"Request invoked to server","it-IT":"Richiesta invoke inviata al server"},"Observe request ignored because SignalR is not active by configuration":{"en-US":"Observe request ignored because SignalR is not active by configuration","it-IT":"Osservazione ignorata in quanto SignalR non è attivo da configurazione"},"Returning observable for required endpoint":{"en-US":"Returning observable for required endpoint","it-IT":"Restituisco l'observable per l'endpoint richiesto"},"Disconnection request ignored because SignalR is not active by configuration":{"en-US":"Disconnection request ignored because SignalR is not active by configuration","it-IT":"Richiesta di disconnesione ignorata in quanto SignalR non è attivo da configurazione"},"Disconnection request honored":{"en-US":"Returning observable for required endpoint","it-IT":"Restituito observable per l'endpoint richiesto"},"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST":{"en-US":"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST","it-IT":"ERRORE nella riconnessione precedente a un nuovo tentativo di 'Send'. Il messaggio in questione SARA' PERSO"}},b=function(){function e(e,n,t,i,s,a,c){var u=this;if(this.MessageDef=e,this.hub_url=n,this.msgpack=t,this.enabled=i,this.debug=s,this.locale=c,this.notifications$={},this.enabled){this.MessageDef.AllDefinitions.forEach((function(e){u.notifications$[e.endpoint]=new o.Subject}));var l={skipNegotiation:!0,transport:r.HttpTransportType.WebSockets,logger:s?r.LogLevel.Debug:r.LogLevel.None},g=(new r.HubConnectionBuilder).withUrl(this.hub_url,l);if(a&&(this.log(this.loc("Building SignalR Hub with Automatic Reconnection")),g=g.withAutomaticReconnect(new Array(100).fill(5e3))),this.msgpack){this.log(this.loc("Building SignalR Hub with MessagePack protocol"));var d=require("@microsoft/signalr-protocol-msgpack");g=g.withHubProtocol(new d.MessagePackHubProtocol)}this.connection=g.build(),this.connect()}else this.log(this.loc("SignalR won't be enabled as per configuration"))}return e.prototype.connect=function(){var e=this;this.connection.start().catch((function(e){return console.log(e)})),this.MessageDef.AllDefinitions.forEach((function(n){null!==n.inTypeDefault&&null===n.outTypeDefault?e.connection.on(n.endpoint,(function(t){e.log(e.loc("Request received from the server for endpoint")+" '"+n.endpoint+"': "+e.substringLog(JSON.stringify(t))),e.notifications$[n.endpoint].next(t)})):e.log(e.loc("Refusing to register endpoint")+" "+n.endpoint+" "+e.loc("because it is not declared as IN - ONLY"))}))},e.prototype.ensureConnected=function(){var e=this;return this.connection.state==t.HubConnectionState.Disconnected?(this.log(this.loc("Connection lost or missing, reconnecting...")),this.connection.start().then((function(e){return Promise.resolve("OK")}),(function(n){return e.log(e.loc("Cannot reconnect SignalR, frontend HUB offline")),Promise.resolve("KO")}))):this.connection.state==t.HubConnectionState.Connected?Promise.resolve("OK"):Promise.resolve("NO-OP")},e.prototype.send=function(e,n){var i=this;if(!this.enabled)return this.log(this.loc("Send request ignored because SignalR is not active by configuration")),o.EMPTY;this.connection.state==t.HubConnectionState.Connecting||this.connection.state==t.HubConnectionState.Reconnecting||this.connection.state==t.HubConnectionState.Disconnecting?(this.log(this.loc("Send request sent before a connection was in stable State, waiting 1 second and retrying")),setTimeout((function(){i.send(e,n)}),1e3)):this.connection.state==t.HubConnectionState.Disconnected?this.ensureConnected().then((function(t){"KO"==t?i.log(i.loc("ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST")):i.send(e,n)})):this.connection.send(e.endpoint,n).then((function(t){i.debug&&console.info(i.loc("Request sent to server")+" - "+e.endpoint+": "+i.substringLog(JSON.stringify(n)))}))},e.prototype.invoke=function(e,n){var s=this;return this.enabled?this.connection.state==t.HubConnectionState.Connecting||this.connection.state==t.HubConnectionState.Reconnecting||this.connection.state==t.HubConnectionState.Disconnecting?(this.log(this.loc("Invoke request sent before a connection was in stable State, waiting 1 second and retrying")),o.of().pipe(i.delay(1e3),i.concatMap((function(){return s.invoke(e,n)})))):this.connection.state==t.HubConnectionState.Disconnected?o.from(this.ensureConnected()).pipe(i.concatMap((function(t){return"KO"==t?(s.log(s.loc("ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST")),o.EMPTY):s.invoke(e,n)}))):o.from(this.connection.invoke(e.endpoint,n)).pipe(i.tap((function(){s.debug&&console.log(s.loc("Request invoked to server")+" - "+e.endpoint+": "+s.substringLog(JSON.stringify(n)))}))):(this.log(this.loc("Invoke request ignored because SignalR is not active by configuration")),o.EMPTY)},e.prototype.observe=function(e){return this.enabled?(this.log(this.loc("Returning observable for required endpoint")+": "+e.endpoint),this.notifications$[e.endpoint]):(this.log(this.loc("Observe request ignored because SignalR is not active by configuration")),o.EMPTY)},e.prototype.disconnect=function(){var e=this;return this.enabled?o.from(this.connection.stop()).pipe(i.catchError((function(e,n){return console.log(e),o.of(null)})),i.tap((function(){e.log(e.loc("Disconnection request honored"))}))):(this.log(this.loc("Disconnection request ignored because SignalR is not active by configuration")),o.EMPTY)},e.prototype.substringLog=function(e,n){return void 0===n&&(n=120),e.length>n?e.substr(0,n)+"[...]":e},e.prototype.log=function(e){this.debug&&console.log("@signalr-notifications: "+e)},e.prototype.loc=function(e){return p[e]?p[e][this.locale]:(console.warn("Untranslated message: "+e),"")},e}();b.decorators=[{type:n.Injectable}],b.ctorParameters=function(){return[{type:a},{type:String,decorators:[{type:n.Inject,args:[c]}]},{type:Boolean,decorators:[{type:n.Inject,args:[d]}]},{type:Boolean,decorators:[{type:n.Inject,args:[u]}]},{type:Boolean,decorators:[{type:n.Inject,args:[l]}]},{type:Boolean,decorators:[{type:n.Inject,args:[f]}]},{type:String,decorators:[{type:n.Inject,args:[g]}]}]};var v=function(){function e(){}return e.forRoot=function(n){return{ngModule:e,providers:[b,{provide:a,useClass:(null==n?void 0:n.messageService)||a},{provide:c,useValue:null==n?void 0:n.hubUrl},{provide:g,useValue:(null==n?void 0:n.locale)||"it-IT"},{provide:u,useValue:null==(null==n?void 0:n.enabled)||(null==n?void 0:n.enabled)},{provide:l,useValue:null!=(null==n?void 0:n.debugMode)&&(null==n?void 0:n.debugMode)},{provide:d,useValue:null!=(null==n?void 0:n.autoReconnect)&&(null==n?void 0:n.autoReconnect)},{provide:f,useValue:null!=(null==n?void 0:n.useMessagePack)&&(null==n?void 0:n.useMessagePack)}]}},e}();v.decorators=[{type:n.NgModule}];var h=function(){function e(e,n,t){this.endpoint=e,this.inTypeDefault=n,this.outTypeDefault=t}return e.In=function(n,t){return new e(n,t,void 0)},e.Out=function(n,t){return new e(n,void 0,t)},e.Bi=function(n,t,o){return new e(n,t,o)},e}(),S=function(){};e.BaseMessageService=a,e.EndpointDef=h,e.NotificationsService=b,e.SignalrNotificationsModule=v,e.SignalrNotificationsModuleConfig=S,e["ɵa"]=c,e["ɵb"]=u,e["ɵc"]=l,e["ɵd"]=g,e["ɵe"]=d,e["ɵf"]=f,Object.defineProperty(e,"__esModule",{value:!0})}));
1
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports,require("@angular/core"),require("@microsoft/signalr"),require("rxjs"),require("rxjs/operators")):"function"==typeof define&&define.amd?define("@esfaenza/signalr-notifications",["exports","@angular/core","@microsoft/signalr","rxjs","rxjs/operators"],n):n(((e="undefined"!=typeof globalThis?globalThis:e||self).esfaenza=e.esfaenza||{},e.esfaenza["signalr-notifications"]={}),e.ng.core,e.signalR,e.rxjs,e.rxjs.operators)}(this,(function(e,n,t,o,i){"use strict";function s(e){if(e&&e.__esModule)return e;var n=Object.create(null);return e&&Object.keys(e).forEach((function(t){if("default"!==t){var o=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,o.get?o:{enumerable:!0,get:function(){return e[t]}})}})),n.default=e,Object.freeze(n)}var r=s(t),c=function(){function e(){this.definitions=[]}return Object.defineProperty(e.prototype,"AllDefinitions",{get:function(){return this.definitions},enumerable:!1,configurable:!0}),e.prototype.add=function(e){this.definitions.push(e)},e}();c.decorators=[{type:n.Injectable}];var a=new n.InjectionToken("ENDPOINT_URL"),u=new n.InjectionToken("SIGNALR_ENABLED"),l=new n.InjectionToken("DEBUG_MODE"),g=new n.InjectionToken("LOCALE"),d=new n.InjectionToken("MESSAGE_PACK"),f=new n.InjectionToken("AUTO_RECONNECT"),p={"Recovering request to Endpoint":{"en-US":"Recovering request to Endpoint","it-IT":"Recupero richiesta verso l'Endpoint"},"Building SignalR Hub with Automatic Reconnection":{"en-US":"Building SignalR Hub with Automatic Reconnection","it-IT":"Compilo l'Hub di SignalR con riconnessione automatica"},"Cannot reconnect SignalR, frontend HUB offline":{"en-US":"Cannot reconnect SignalR, frontend HUB offline","it-IT":"Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline"},"Send request sent before a connection was in stable State, waiting 1 second and retrying":{"en-US":"Send request sent before a connection was in stable State, waiting 1 second and retrying","it-IT":"Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo"},"Invoke request sent before a connection was in stable State, waiting 1 second and retrying":{"en-US":"Invoke request sent before a connection was in stable State, waiting 1 second and retrying","it-IT":"Richiesta 'Invoke' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo"},"Connection lost or missing, reconnecting...":{"en-US":"Connection lost or missing, reconnecting...","it-IT":"Connessione persa o mancante, mi riconnetto..."},"SignalR won't be enabled as per configuration":{"en-US":"SignalR won't be enabled as per configuration","it-IT":"SignalR non verrà attivato come da configurazione"},"Building SignalR Hub with MessagePack protocol":{"en-US":"Building SignalR Hub with MessagePack protocol","it-IT":"Compilo l'Hub di SignalR con protocollo MessagePack"},"Request received from the server for endpoint":{"en-US":"Request received from the server for endpoint","it-IT":"Richiesta ricevuta dal server per endpoint"},"Refusing to register endpoint":{"en-US":"Refusing to register endpoint","it-IT":"Rifiuto di registrare l'endpoint"},"because it is not declared as IN - ONLY":{"en-US":"because it is not declared as IN - ONLY","it-IT":"in quanto non è registrato solo come IN"},"Send request ignored because SignalR is not active by configuration":{"en-US":"Send request ignored because SignalR is not active by configuration","it-IT":"Richiesta send ignorata in quanto SignalR non è attivo da configurazione"},"Request sent to server":{"en-US":"Request sent to server","it-IT":"Richiesta inviata al server"},"Invoke request ignored because SignalR is not active by configuration":{"en-US":"Invoke request ignored because SignalR is not active by configuration","it-IT":"Richiesta invoke ignorata in quanto SignalR non è attivo da configurazione"},"Request invoked to server":{"en-US":"Request invoked to server","it-IT":"Richiesta invoke inviata al server"},"Observe request ignored because SignalR is not active by configuration":{"en-US":"Observe request ignored because SignalR is not active by configuration","it-IT":"Osservazione ignorata in quanto SignalR non è attivo da configurazione"},"Returning observable for required endpoint":{"en-US":"Returning observable for required endpoint","it-IT":"Restituisco l'observable per l'endpoint richiesto"},"Disconnection request ignored because SignalR is not active by configuration":{"en-US":"Disconnection request ignored because SignalR is not active by configuration","it-IT":"Richiesta di disconnesione ignorata in quanto SignalR non è attivo da configurazione"},"Disconnection request honored":{"en-US":"Returning observable for required endpoint","it-IT":"Restituito observable per l'endpoint richiesto"},"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST":{"en-US":"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST","it-IT":"ERRORE nella riconnessione precedente a un nuovo tentativo di 'Send'. Il messaggio in questione SARA' PERSO"}},v=function(){function e(e,n,t,i,s,c,a){var u=this;if(this.MessageDef=e,this.endpoint_url=n,this.msgpack=t,this.enabled=i,this.debug=s,this.locale=a,this.notifications$={},this.RequestsToRecover=[],this.enabled){this.MessageDef.AllDefinitions.forEach((function(e){u.notifications$[e.endpoint]=new o.Subject}));var l={skipNegotiation:!0,transport:r.HttpTransportType.WebSockets,logger:s?r.LogLevel.Debug:r.LogLevel.None},g=(new r.HubConnectionBuilder).withUrl("/"+this.endpoint_url,l);if(c&&(this.log(this.loc("Building SignalR Hub with Automatic Reconnection")),g=g.withAutomaticReconnect(new Array(100).fill(5e3))),this.msgpack){this.log(this.loc("Building SignalR Hub with MessagePack protocol"));var d=require("@microsoft/signalr-protocol-msgpack");g=g.withHubProtocol(new d.MessagePackHubProtocol)}this.connection=g.build(),this.connect((function(){if(0!=u.RequestsToRecover.length){for(var e=0;e<u.RequestsToRecover.length;e++)u.log(u.loc("Recovering request to Endpoint")+" "+u.RequestsToRecover[e].item.endpoint),u.send(u.RequestsToRecover[e].item,u.RequestsToRecover[e].dto);u.RequestsToRecover=[]}}))}else this.log(this.loc("SignalR won't be enabled as per configuration"))}return e.prototype.connect=function(e){var n=this;this.connection.start().catch((function(e){return console.log(e)})).then((function(n){return null==e?void 0:e()})),this.MessageDef.AllDefinitions.forEach((function(e){null!==e.inTypeDefault&&null===e.outTypeDefault?n.connection.on(e.endpoint,(function(t){n.log(n.loc("Request received from the server for endpoint")+" '"+e.endpoint+"': "+n.substringLog(JSON.stringify(t))),n.notifications$[e.endpoint].next(t)})):n.log(n.loc("Refusing to register endpoint")+" "+e.endpoint+" "+n.loc("because it is not declared as IN - ONLY"))}))},e.prototype.ensureConnected=function(){var e=this;return this.connection.state==t.HubConnectionState.Disconnected?(this.log(this.loc("Connection lost or missing, reconnecting...")),this.connection.start().then((function(e){return Promise.resolve("OK")}),(function(n){return e.log(e.loc("Cannot reconnect SignalR, frontend HUB offline")),Promise.resolve("KO")}))):this.connection.state==t.HubConnectionState.Connected?Promise.resolve("OK"):Promise.resolve("NO-OP")},e.prototype.send=function(e,n){var i=this;if(this.connection)return this.enabled?void(this.connection.state==t.HubConnectionState.Connecting||this.connection.state==t.HubConnectionState.Reconnecting||this.connection.state==t.HubConnectionState.Disconnecting?(this.log(this.loc("Send request sent before a connection was in stable State, waiting 1 second and retrying")),setTimeout((function(){i.send(e,n)}),1e3)):this.connection.state==t.HubConnectionState.Disconnected?this.ensureConnected().then((function(t){"KO"==t?i.log(i.loc("ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST")):i.send(e,n)})):this.connection.send(e.endpoint,n).then((function(t){i.debug&&console.info(i.loc("Request sent to server")+" - "+e.endpoint+": "+i.substringLog(JSON.stringify(n)))}))):(this.log(this.loc("Send request ignored because SignalR is not active by configuration")),o.EMPTY);this.RequestsToRecover.push({item:e,dto:n})},e.prototype.invoke=function(e,n){var s=this;return this.enabled?this.connection.state==t.HubConnectionState.Connecting||this.connection.state==t.HubConnectionState.Reconnecting||this.connection.state==t.HubConnectionState.Disconnecting?(this.log(this.loc("Invoke request sent before a connection was in stable State, waiting 1 second and retrying")),o.of().pipe(i.delay(1e3),i.concatMap((function(){return s.invoke(e,n)})))):this.connection.state==t.HubConnectionState.Disconnected?o.from(this.ensureConnected()).pipe(i.concatMap((function(t){return"KO"==t?(s.log(s.loc("ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST")),o.EMPTY):s.invoke(e,n)}))):o.from(this.connection.invoke(e.endpoint,n)).pipe(i.tap((function(){s.debug&&console.log(s.loc("Request invoked to server")+" - "+e.endpoint+": "+s.substringLog(JSON.stringify(n)))}))):(this.log(this.loc("Invoke request ignored because SignalR is not active by configuration")),o.EMPTY)},e.prototype.observe=function(e){return this.enabled?(this.log(this.loc("Returning observable for required endpoint")+": "+e.endpoint),this.notifications$[e.endpoint]):(this.log(this.loc("Observe request ignored because SignalR is not active by configuration")),o.EMPTY)},e.prototype.disconnect=function(){var e=this;return this.enabled?o.from(this.connection.stop()).pipe(i.catchError((function(e,n){return console.log(e),o.of(null)})),i.tap((function(){e.log(e.loc("Disconnection request honored"))}))):(this.log(this.loc("Disconnection request ignored because SignalR is not active by configuration")),o.EMPTY)},e.prototype.substringLog=function(e,n){return void 0===n&&(n=120),e.length>n?e.substr(0,n)+"[...]":e},e.prototype.log=function(e){this.debug&&console.log("@signalr-notifications: "+e)},e.prototype.loc=function(e){return p[e]?p[e][this.locale]:(console.warn("Untranslated message: "+e),"")},e}();v.decorators=[{type:n.Injectable}],v.ctorParameters=function(){return[{type:c},{type:String,decorators:[{type:n.Inject,args:[a]}]},{type:Boolean,decorators:[{type:n.Inject,args:[d]}]},{type:Boolean,decorators:[{type:n.Inject,args:[u]}]},{type:Boolean,decorators:[{type:n.Inject,args:[l]}]},{type:Boolean,decorators:[{type:n.Inject,args:[f]}]},{type:String,decorators:[{type:n.Inject,args:[g]}]}]};var b=function(){function e(){}return e.forRoot=function(n){return{ngModule:e,providers:[v,{provide:c,useClass:(null==n?void 0:n.messageService)||c},{provide:a,useValue:null==n?void 0:n.endpointUrl},{provide:g,useValue:(null==n?void 0:n.locale)||"it-IT"},{provide:u,useValue:null==(null==n?void 0:n.enabled)||(null==n?void 0:n.enabled)},{provide:l,useValue:null!=(null==n?void 0:n.debugMode)&&(null==n?void 0:n.debugMode)},{provide:d,useValue:null!=(null==n?void 0:n.autoReconnect)&&(null==n?void 0:n.autoReconnect)},{provide:f,useValue:null!=(null==n?void 0:n.useMessagePack)&&(null==n?void 0:n.useMessagePack)}]}},e}();b.decorators=[{type:n.NgModule}];var h=function(){function e(e,n,t){this.endpoint=e,this.inTypeDefault=n,this.outTypeDefault=t}return e.In=function(n,t){return new e(n,t,void 0)},e.Out=function(n,t){return new e(n,void 0,t)},e.Bi=function(n,t,o){return new e(n,t,o)},e}(),R=function(){};e.BaseMessageService=c,e.EndpointDef=h,e.NotificationsService=v,e.SignalrNotificationsModule=b,e.SignalrNotificationsModuleConfig=R,e["ɵa"]=a,e["ɵb"]=u,e["ɵc"]=l,e["ɵd"]=g,e["ɵe"]=d,e["ɵf"]=f,Object.defineProperty(e,"__esModule",{value:!0})}));
2
2
  //# sourceMappingURL=esfaenza-signalr-notifications.umd.min.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../projects/signalr-notifications/src/lib/models/BaseMessageService.ts","../../../projects/signalr-notifications/src/lib/tokens.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.loc.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.module.ts","../../../projects/signalr-notifications/src/lib/models/EndpointDef.ts","../../../projects/signalr-notifications/src/lib/config/SignalrNotificationsModuleConfig.ts"],"names":["BaseMessageService","this","definitions","Object","defineProperty","prototype","add","endpoint","push","Injectable","HUB_URL","InjectionToken","SIGNALR_ENABLED","DEBUG_MODE","LOCALE","MESSAGE_PACK","AUTO_RECONNECT","Loc","Building SignalR Hub with Automatic Reconnection","en-US","it-IT","Cannot reconnect SignalR, frontend HUB offline","Send request sent before a connection was in stable State, waiting 1 second and retrying","Invoke request sent before a connection was in stable State, waiting 1 second and retrying","Connection lost or missing, reconnecting...","SignalR won't be enabled as per configuration","Building SignalR Hub with MessagePack protocol","Request received from the server for endpoint","Refusing to register endpoint","because it is not declared as IN - ONLY","Send request ignored because SignalR is not active by configuration","Request sent to server","Invoke request ignored because SignalR is not active by configuration","Request invoked to server","Observe request ignored because SignalR is not active by configuration","Returning observable for required endpoint","Disconnection request ignored because SignalR is not active by configuration","Disconnection request honored","ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST","NotificationsService","MessageDef","hub_url","msgpack","enabled","debug","autoreconnect","locale","_this","notifications$","AllDefinitions","forEach","def","Subject","pars","skipNegotiation","transport","signalR","HttpTransportType","WebSockets","logger","LogLevel","Debug","None","builder","HubConnectionBuilder","withUrl","log","loc","withAutomaticReconnect","Array","fill","mphpModule","require","withHubProtocol","MessagePackHubProtocol","connection","build","connect","start","catch","err","console","d","inTypeDefault","outTypeDefault","on","message","substringLog","JSON","stringify","next","ensureConnected","state","HubConnectionState","Disconnected","then","_","Promise","resolve","Connected","send","item","dto","EMPTY","Connecting","Reconnecting","Disconnecting","setTimeout","t","info","invoke","of","pipe","delay","concatMap","from","res","tap","observe","disconnect","stop","catchError","caught","text","maxchars","length","substr","warn","Inject","args","SignalrNotificationsModule","forRoot","config","ngModule","providers","provide","useClass","messageService","useValue","hubUrl","debugMode","autoReconnect","useMessagePack","NgModule","EndpointDef","In","name","undefined","Out","Bi"],"mappings":"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","sourcesContent":["// Angular\r\nimport { Injectable } from '@angular/core';\r\n\r\n// Modelli\r\nimport { EndpointDef } from './EndpointDef';\r\n\r\n/**\r\n * Classe base da estendere con la definizione degli Endpoint supportati dall'applicazione\r\n */\r\n@Injectable()\r\nexport class BaseMessageService {\r\n\r\n private definitions: EndpointDef<any, any>[] = [];\r\n\r\n /** Entrypoint che restituisce tutti gli Endpoint dell'applicazione. Da overridare qualora non venga utilizzato il metodo **add** */\r\n public get AllDefinitions(): EndpointDef<any, any>[] { return this.definitions; }\r\n\r\n public add(endpoint: EndpointDef<any, any>) {\r\n this.definitions.push(endpoint);\r\n }\r\n}","import { InjectionToken } from '@angular/core';\r\n\r\n/**\r\n * Hub a cui collegarsi\r\n */\r\nexport const HUB_URL: InjectionToken<string> = new InjectionToken<string>('HUB_URL');\r\n\r\n/**\r\n * Indica se la libreria dev'essere attiva o no\r\n */\r\nexport const SIGNALR_ENABLED: InjectionToken<string> = new InjectionToken<boolean>('SIGNALR_ENABLED');\r\n\r\n/**\r\n * Indica se stampare messaggi di debug in console\r\n */\r\nexport const DEBUG_MODE: InjectionToken<string> = new InjectionToken<boolean>('DEBUG_MODE');\r\n\r\n/**\r\n * Indica il locale utilizzato dalla libreria per i messaggi. Sono supportati \"it-IT\" ed \"en-US\"\r\n */\r\nexport const LOCALE: InjectionToken<string> = new InjectionToken<string>('LOCALE');\r\n\r\n/**\r\n * Indica se utilizzare il protocollo di trasferimento \"MessagePack\"\r\n */\r\nexport const MESSAGE_PACK: InjectionToken<boolean> = new InjectionToken<boolean>('MESSAGE_PACK');\r\n\r\n/**\r\n * Indica se tentare in automatico la riconnessione\r\n */\r\nexport const AUTO_RECONNECT: InjectionToken<boolean> = new InjectionToken<boolean>('AUTO_RECONNECT');","/**\r\n * Oggetto statico di localizzazione per i messaggi scritti dal servizio\r\n */\r\nexport const Loc ={\r\n \"Building SignalR Hub with Automatic Reconnection\": { \"en-US\": \"Building SignalR Hub with Automatic Reconnection\", \"it-IT\": \"Compilo l'Hub di SignalR con riconnessione automatica\", },\r\n \"Cannot reconnect SignalR, frontend HUB offline\": { \"en-US\": \"Cannot reconnect SignalR, frontend HUB offline\", \"it-IT\": \"Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline\", },\r\n \"Send request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Send request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Invoke' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Connection lost or missing, reconnecting...\" : { \"en-US\": \"Connection lost or missing, reconnecting...\", \"it-IT\": \"Connessione persa o mancante, mi riconnetto...\", },\r\n \"SignalR won't be enabled as per configuration\": { \"en-US\": \"SignalR won't be enabled as per configuration\", \"it-IT\": \"SignalR non verrà attivato come da configurazione\", },\r\n \"Building SignalR Hub with MessagePack protocol\": { \"en-US\": \"Building SignalR Hub with MessagePack protocol\", \"it-IT\": \"Compilo l'Hub di SignalR con protocollo MessagePack\", },\r\n \"Request received from the server for endpoint\": { \"en-US\": \"Request received from the server for endpoint\", \"it-IT\": \"Richiesta ricevuta dal server per endpoint\", },\r\n \"Refusing to register endpoint\": { \"en-US\": \"Refusing to register endpoint\", \"it-IT\": \"Rifiuto di registrare l'endpoint\", },\r\n \"because it is not declared as IN - ONLY\": { \"en-US\": \"because it is not declared as IN - ONLY\", \"it-IT\": \"in quanto non è registrato solo come IN\", },\r\n \"Send request ignored because SignalR is not active by configuration\": { \"en-US\": \"Send request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta send ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request sent to server\": { \"en-US\": \"Request sent to server\", \"it-IT\": \"Richiesta inviata al server\", },\r\n \"Invoke request ignored because SignalR is not active by configuration\": { \"en-US\": \"Invoke request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta invoke ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request invoked to server\": { \"en-US\": \"Request invoked to server\", \"it-IT\": \"Richiesta invoke inviata al server\", },\r\n \"Observe request ignored because SignalR is not active by configuration\": { \"en-US\": \"Observe request ignored because SignalR is not active by configuration\", \"it-IT\": \"Osservazione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Returning observable for required endpoint\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituisco l'observable per l'endpoint richiesto\", },\r\n \"Disconnection request ignored because SignalR is not active by configuration\": { \"en-US\": \"Disconnection request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta di disconnesione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Disconnection request honored\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituito observable per l'endpoint richiesto\", },\r\n \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\": { \"en-US\": \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\", \"it-IT\": \"ERRORE nella riconnessione precedente a un nuovo tentativo di 'Send'. Il messaggio in questione SARA' PERSO\"}\r\n}","// Angular\r\nimport { Injectable, Inject } from \"@angular/core\";\r\n\r\n// Direttive, Componenti, Librerie\r\nimport * as signalR from '@microsoft/signalr';\r\nimport { HubConnectionState } from \"@microsoft/signalr\";\r\nimport { Observable, Subject, EMPTY, from, of } from \"rxjs\";\r\nimport { catchError, concatMap, delay, tap } from \"rxjs/operators\";\r\n\r\n// Modelli\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { EndpointDef } from './models/EndpointDef';\r\nimport { DEBUG_MODE, HUB_URL, LOCALE, MESSAGE_PACK, SIGNALR_ENABLED, AUTO_RECONNECT } from \"./tokens\";\r\n\r\n// Localizzazione\r\nimport { Loc } from './signalr-notifications.service.loc';\r\n\r\n/**\r\n * Servizio che gestisce la comunicazione con un Hub SignalR in base alle configurazioni fornite dall'applicazione\r\n */\r\n@Injectable()\r\nexport class NotificationsService {\r\n\r\n /**\r\n * Cache degli Observable generati in base agli Endpoint disponibili\r\n */\r\n private notifications$: { [index: string]: Subject<any> } = {};\r\n\r\n /**\r\n * Connessione Signalr\r\n */\r\n private connection: signalR.HubConnection;\r\n\r\n /**\r\n * Costruttore\r\n * \r\n * @ignore\r\n */\r\n constructor(private MessageDef: BaseMessageService, @Inject(HUB_URL) private hub_url: string, @Inject(MESSAGE_PACK) private msgpack: boolean, @Inject(SIGNALR_ENABLED) private enabled: boolean, @Inject(DEBUG_MODE) private debug: boolean, @Inject(AUTO_RECONNECT) autoreconnect: boolean, @Inject(LOCALE) private locale : string) {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"SignalR won't be enabled as per configuration\"));\r\n return;\r\n }\r\n\r\n this.MessageDef.AllDefinitions.forEach(def => { this.notifications$[def.endpoint] = new Subject<typeof def.inTypeDefault>(); });\r\n\r\n let pars: signalR.IHttpConnectionOptions = { skipNegotiation: true, transport: signalR.HttpTransportType.WebSockets, logger: debug ? signalR.LogLevel.Debug : signalR.LogLevel.None };\r\n var builder = new signalR.HubConnectionBuilder().withUrl(this.hub_url, pars);\r\n\r\n if (autoreconnect) {\r\n this.log(this.loc(\"Building SignalR Hub with Automatic Reconnection\"));\r\n // 100 tentativi di riconnessione, 1 ogni 5 secondi\r\n builder = builder.withAutomaticReconnect(new Array(100).fill(5 * 1000));\r\n }\r\n\r\n if (this.msgpack) {\r\n this.log(this.loc(\"Building SignalR Hub with MessagePack protocol\"));\r\n var mphpModule = require(\"@microsoft/signalr-protocol-msgpack\");\r\n builder = builder.withHubProtocol(new mphpModule.MessagePackHubProtocol())\r\n }\r\n\r\n this.connection = builder.build();\r\n this.connect();\r\n }\r\n\r\n /**\r\n * Effettua la connessione all'Hub Signalr e registra tutti gli Endpoint per cui il Backend comunica con il Frontend sulla **connection**\r\n */\r\n private connect() {\r\n this.connection.start().catch(err => console.log(err));\r\n this.MessageDef.AllDefinitions.forEach(d => {\r\n //Registro solo le cose di IN, quelle di out sono chiamate che faccio io al BE quindi non servono\r\n if (d.inTypeDefault !== null && d.outTypeDefault === null)\r\n this.connection.on(d.endpoint, (message) => {\r\n this.log(this.loc(\"Request received from the server for endpoint\") + \" '\" + d.endpoint + \"': \" + this.substringLog(JSON.stringify(message)));\r\n this.notifications$[d.endpoint].next(message);\r\n });\r\n else\r\n this.log(this.loc(\"Refusing to register endpoint\") + \" \" + d.endpoint + \" \" + this.loc(\"because it is not declared as IN - ONLY\"));\r\n });\r\n }\r\n\r\n /**\r\n * Effettua verifiche sulla connessione e, in caso non fosse collegata, tenta di riconnetterla\r\n * \r\n * @returns {Promise<'OK' | 'KO' | 'NO-OP'>} 'OK' Se la connessione è già connessa o è stata riconnessa con successo, 'KO' Se non è stato possibile riconnettere \r\n * una connessione disconnessa, 'NO-OP' se la connesisone è in uno stato intermedio che non può essere modificato\r\n */\r\n public ensureConnected(): Promise<'OK' | 'KO' | 'NO-OP'> {\r\n if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.log(this.loc(\"Connection lost or missing, reconnecting...\"));\r\n\r\n return this.connection.start()\r\n .then(_ => {\r\n return Promise.resolve(\"OK\");\r\n }, _ => {\r\n this.log(this.loc(\"Cannot reconnect SignalR, frontend HUB offline\"));\r\n return Promise.resolve(\"KO\");\r\n });\r\n }\r\n else if (this.connection.state == HubConnectionState.Connected)\r\n return Promise.resolve(\"OK\");\r\n else\r\n return Promise.resolve(\"NO-OP\");\r\n }\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend\r\n * \r\n * @param {EndpointDef<TOut, any>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n */\r\n public send<TOut>(item: EndpointDef<TOut, any>, dto: TOut) {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Send request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Send request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n setTimeout(() => { this.send(item, dto); }, 1000);\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.ensureConnected().then(t => {\r\n if (t == \"KO\") this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n else this.send(item, dto);\r\n })\r\n }\r\n else {\r\n this.connection.send(item.endpoint, dto).then(_ => {\r\n if (this.debug)\r\n console.info(this.loc(\"Request sent to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n });\r\n }\r\n }\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend, aspettandosi una risposta\r\n * \r\n * @param {EndpointDef<TOut, TIn>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere il risultato della chiamata\r\n */\r\n public invoke<TOut, TIn>(item: EndpointDef<TOut, TIn>, dto: TOut): Observable<TIn> {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Invoke request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n return of().pipe(delay(1000), concatMap(() => this.invoke(item, dto)));\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n return from(this.ensureConnected()).pipe(concatMap((res) => {\r\n if (res == \"KO\") {\r\n this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n return EMPTY;\r\n }\r\n else return this.invoke(item, dto);\r\n }))\r\n }\r\n else {\r\n return from(this.connection.invoke<TIn>(item.endpoint, dto)).pipe(\r\n tap(() => {\r\n if (this.debug) console.log(this.loc(\"Request invoked to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n })\r\n );\r\n }\r\n }\r\n\r\n /**\r\n * Hook per osservare i dati spediti ad un Endpoint dal Backend\r\n * \r\n * @param {EndpointDef<TIn, any>} item Endpoint su cui ascoltare\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere l'oggetto generato ad ogni chiamata dal Backend al Frontend\r\n */\r\n public observe<TIn>(item: EndpointDef<TIn, any>): Observable<TIn> {\r\n if (!this.enabled)\r\n {\r\n this.log(this.loc(\"Observe request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n this.log(this.loc(\"Returning observable for required endpoint\") + \": \" + item.endpoint);\r\n return <Observable<TIn>>this.notifications$[item.endpoint];\r\n }\r\n\r\n /**\r\n * Disconnessione del sistema di SignalR\r\n * \r\n * @returns {Observable<void>} Observable a cui registrarsi che viene chiamato quando la disconnessione è terminata\r\n */\r\n public disconnect(): Observable<void> {\r\n //NO-OP se non attivo\r\n if (!this.enabled)\r\n {\r\n this.log(this.loc(\"Disconnection request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n return from(this.connection.stop()).pipe(\r\n catchError((err, caught) => { console.log(err); return of(null); }),\r\n tap(() => {\r\n this.log(this.loc(\"Disconnection request honored\"));\r\n })\r\n );\r\n }\r\n\r\n /**\r\n * Taglia un log troppo lungo\r\n * \r\n * @param {string} text Log da tagliare\r\n * @param {number} maxchars Numero massimo di caratteri da tenere\r\n * \r\n * @returns {string} Log tagliato\r\n */\r\n private substringLog(text: string, maxchars: number = 120) : string {\r\n return text.length > maxchars ? text.substr(0, maxchars) + \"[...]\" : text;\r\n }\r\n\r\n /**\r\n * Stampa un log a console\r\n * \r\n * @param {string} message Messaggio da stampare\r\n */\r\n private log(message: string) {\r\n if (this.debug)\r\n console.log(\"@signalr-notifications: \" + message)\r\n }\r\n\r\n /**\r\n * Helper di localizzazione\r\n * \r\n * @param {string} message Messaggio da tradurre\r\n * \r\n * @returns {string} Messaggio tradotto\r\n */\r\n private loc(message: string) : string{\r\n if(!Loc[message])\r\n {\r\n console.warn(\"Untranslated message: \" + message)\r\n return \"\";\r\n }\r\n return Loc[message][this.locale];\r\n }\r\n}","\r\nimport { NgModule, ModuleWithProviders } from '@angular/core';\r\nimport { SignalrNotificationsModuleConfig } from './config/SignalrNotificationsModuleConfig';\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { NotificationsService } from './signalr-notifications.service';\r\nimport { HUB_URL, SIGNALR_ENABLED, DEBUG_MODE, LOCALE, MESSAGE_PACK, AUTO_RECONNECT } from './tokens';\r\n\r\n@NgModule()\r\nexport class SignalrNotificationsModule {\r\n static forRoot(config?: SignalrNotificationsModuleConfig): ModuleWithProviders<SignalrNotificationsModule> {\r\n return {\r\n ngModule: SignalrNotificationsModule,\r\n providers: [\r\n NotificationsService,\r\n { provide: BaseMessageService, useClass: config?.messageService || BaseMessageService },\r\n { provide: HUB_URL, useValue: config?.hubUrl },\r\n { provide: LOCALE, useValue: config?.locale || 'it-IT' },\r\n { provide: SIGNALR_ENABLED, useValue: config?.enabled != null ? config?.enabled : true },\r\n { provide: DEBUG_MODE, useValue: config?.debugMode != null ? config?.debugMode : false },\r\n { provide: MESSAGE_PACK, useValue: config?.autoReconnect != null ? config?.autoReconnect : false },\r\n { provide: AUTO_RECONNECT, useValue: config?.useMessagePack != null ? config?.useMessagePack : false },\r\n ]\r\n };\r\n }\r\n}","/**\r\n * Definisce un Endpoint che spedisce un'informazione di tipo TIn e restituisce un'informazione di tipo TOut\r\n */\r\nexport class EndpointDef<TIn, TOut> {\r\n\r\n /**\r\n * Costruttore\r\n * \r\n * @param {string} endpoint Nome del metodo da chiamare nell'Hub del Backend contattato\r\n * @param {TIn} inTypeDefault Default per il tipo TIn. Utilizzato per fare Typecheck sulle chiamate da Backend a Frontend\r\n * @param {TOut} outTypeDefault Default per il tipo TOut. Utilizzato per fare Typecheck sulle chiamate da Frontend a Backend\r\n */\r\n constructor(public endpoint: string, public inTypeDefault: TIn, public outTypeDefault: TOut) { }\r\n\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo INPUT */\r\n public static In<TIn>(name: string, inTypeDefault: TIn): EndpointDef<TIn, void> {\r\n return new EndpointDef<TIn, void>(name, inTypeDefault, undefined);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo OUTPUT */\r\n public static Out<TOut>(name: string, outTypeDefault: TOut): EndpointDef<void, TOut> {\r\n return new EndpointDef<void, TOut>(name, undefined, outTypeDefault);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di INPUT e OUTPUT (BIDIREZIONALE) */\r\n public static Bi<TIn, TOut>(name: string, inTypeDefault: TIn, outTypeDefault: TOut): EndpointDef<TIn, TOut> {\r\n return new EndpointDef<TIn, TOut>(name, inTypeDefault, outTypeDefault);\r\n }\r\n}","// Angular\r\nimport { Type } from '@angular/core';\r\n\r\n// Modelli\r\nimport { BaseMessageService } from '../models/BaseMessageService';\r\n\r\n/**\r\n * Classe di configurazione per la libreria\r\n */\r\nexport class SignalrNotificationsModuleConfig {\r\n\r\n /**\r\n * Url nei confronti del quale aprire la connessione SignalR\r\n */\r\n hubUrl : string;\r\n\r\n /**\r\n * Servizio che definisce i messaggi di IN e OUT coi loro default\r\n */\r\n messageService? : Type<BaseMessageService>;\r\n\r\n /**\r\n * Indica se abilitare o meno la connessione SignalR nei confronti dell'URL **hubUrl**\r\n */\r\n enabled? : boolean;\r\n\r\n /**\r\n * Indica se utilizzare message pack come protocollo di trasmissione\r\n */\r\n useMessagePack? : boolean;\r\n\r\n /**\r\n * Indica se tentare di riconnettersi automaticamente quando la connessione cade\r\n */\r\n autoReconnect? : boolean;\r\n\r\n /**\r\n * Indica se scrivere o meno i messaggi di debug\r\n */\r\n debugMode? : boolean;\r\n\r\n /**\r\n * Lingua dei feedback a console, sono supportati 'it-IT' ed 'en-US'\r\n */\r\n locale? : string\r\n}"]}
1
+ {"version":3,"sources":["../../../projects/signalr-notifications/src/lib/models/BaseMessageService.ts","../../../projects/signalr-notifications/src/lib/tokens.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.loc.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.service.ts","../../../projects/signalr-notifications/src/lib/signalr-notifications.module.ts","../../../projects/signalr-notifications/src/lib/models/EndpointDef.ts","../../../projects/signalr-notifications/src/lib/config/SignalrNotificationsModuleConfig.ts"],"names":["BaseMessageService","this","definitions","Object","defineProperty","prototype","add","endpoint","push","Injectable","ENDPOINT_URL","InjectionToken","SIGNALR_ENABLED","DEBUG_MODE","LOCALE","MESSAGE_PACK","AUTO_RECONNECT","Loc","Recovering request to Endpoint","en-US","it-IT","Building SignalR Hub with Automatic Reconnection","Cannot reconnect SignalR, frontend HUB offline","Send request sent before a connection was in stable State, waiting 1 second and retrying","Invoke request sent before a connection was in stable State, waiting 1 second and retrying","Connection lost or missing, reconnecting...","SignalR won't be enabled as per configuration","Building SignalR Hub with MessagePack protocol","Request received from the server for endpoint","Refusing to register endpoint","because it is not declared as IN - ONLY","Send request ignored because SignalR is not active by configuration","Request sent to server","Invoke request ignored because SignalR is not active by configuration","Request invoked to server","Observe request ignored because SignalR is not active by configuration","Returning observable for required endpoint","Disconnection request ignored because SignalR is not active by configuration","Disconnection request honored","ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST","NotificationsService","MessageDef","endpoint_url","msgpack","enabled","debug","autoreconnect","locale","_this","notifications$","RequestsToRecover","AllDefinitions","forEach","def","Subject","pars","skipNegotiation","transport","signalR","HttpTransportType","WebSockets","logger","LogLevel","Debug","None","builder","HubConnectionBuilder","withUrl","log","loc","withAutomaticReconnect","Array","fill","mphpModule","require","withHubProtocol","MessagePackHubProtocol","connection","build","connect","length","i","item","send","dto","onConnected","start","catch","err","console","then","_","d","inTypeDefault","outTypeDefault","on","message","substringLog","JSON","stringify","next","ensureConnected","state","HubConnectionState","Disconnected","Promise","resolve","Connected","Connecting","Reconnecting","Disconnecting","setTimeout","t","info","EMPTY","invoke","of","pipe","delay","concatMap","from","res","tap","observe","disconnect","stop","catchError","caught","text","maxchars","substr","warn","Inject","args","SignalrNotificationsModule","forRoot","config","ngModule","providers","provide","useClass","messageService","useValue","endpointUrl","debugMode","autoReconnect","useMessagePack","NgModule","EndpointDef","In","name","undefined","Out","Bi"],"mappings":"g1BASA,SAAAA,IAGYC,KAAAC,YAAuC,UAG/CC,OAAAC,eAAWJ,EAAAK,UAAA,iBAAc,KAAzB,WAAuD,OAAOJ,KAAKC,6CAE5DF,EAAAK,UAAAC,IAAA,SAAIC,GACPN,KAAKC,YAAYM,KAAKD,6BAT7BE,EAAAA,iBCJYC,EAAuC,IAAIC,EAAAA,eAAuB,gBAKlEC,EAA0C,IAAID,EAAAA,eAAwB,mBAKtEE,EAAqC,IAAIF,EAAAA,eAAwB,cAKjEG,EAAiC,IAAIH,EAAAA,eAAuB,UAK5DI,EAAwC,IAAIJ,EAAAA,eAAwB,gBAKpEK,EAA0C,IAAIL,EAAAA,eAAwB,kBC3BtEM,EAAK,CACdC,iCAAkC,CAACC,QAAS,iCAAkCC,QAAS,uCACvFC,mDAAoD,CAAEF,QAAS,mDAAoDC,QAAS,yDAC5HE,iDAAkD,CAAEH,QAAS,iDAAkDC,QAAS,mEACxHG,2FAA4F,CAAEJ,QAAS,2FAA4FC,QAAS,8GAC5MI,6FAA8F,CAAEL,QAAS,6FAA8FC,QAAS,gHAChNK,8CAAgD,CAAEN,QAAS,8CAA+CC,QAAS,kDACnHM,gDAAiD,CAAEP,QAAS,gDAAiDC,QAAS,qDACtHO,iDAAkD,CAAER,QAAS,iDAAkDC,QAAS,uDACxHQ,gDAAiD,CAAET,QAAS,gDAAiDC,QAAS,8CACtHS,gCAAiC,CAAEV,QAAS,gCAAiCC,QAAS,oCACtFU,0CAA2C,CAAEX,QAAS,0CAA2CC,QAAS,2CAC1GW,sEAAuE,CAAEZ,QAAS,sEAAuEC,QAAS,4EAClKY,yBAA0B,CAAEb,QAAS,yBAA0BC,QAAS,+BACxEa,wEAAyE,CAAEd,QAAS,wEAAyEC,QAAS,8EACtKc,4BAA6B,CAAEf,QAAS,4BAA6BC,QAAS,sCAC9Ee,yEAA0E,CAAEhB,QAAS,yEAA0EC,QAAS,0EACxKgB,6CAA8C,CAAEjB,QAAS,6CAA8CC,QAAS,qDAChHiB,+EAAgF,CAAElB,QAAS,+EAAgFC,QAAS,wFACpLkB,gCAAiC,CAAEnB,QAAS,6CAA8CC,QAAS,kDACnGmB,mFAAoF,CAAEpB,QAAS,mFAAoFC,QAAS,6HCQ5L,SAAAoB,EAAoBC,EAA8DC,EAAoDC,EAAmDC,EAA8CC,EAAwCC,EAAgDC,GAA/T,IAAAC,EAAA/C,KACI,GADgBA,KAAAwC,WAAAA,EAA8DxC,KAAAyC,aAAAA,EAAoDzC,KAAA0C,QAAAA,EAAmD1C,KAAA2C,QAAAA,EAA8C3C,KAAA4C,MAAAA,EAAwF5C,KAAA8C,OAAAA,EATvT9C,KAAAgD,eAAoD,GAMpDhD,KAAAiD,kBAAiE,GAIhEjD,KAAK2C,QAAV,CAKA3C,KAAKwC,WAAWU,eAAeC,SAAQ,SAAAC,GAASL,EAAKC,eAAeI,EAAI9C,UAAY,IAAI+C,EAAAA,WAExF,IAAIC,EAAuC,CAAEC,iBAAiB,EAAMC,UAAWC,EAAQC,kBAAkBC,WAAYC,OAAQhB,EAAQa,EAAQI,SAASC,MAAQL,EAAQI,SAASE,MAC3KC,GAAU,IAAIP,EAAQQ,sBAAuBC,QAAQ,IAAMlE,KAAKyC,aAAca,GAQlF,GANIT,IACA7C,KAAKmE,IAAInE,KAAKoE,IAAI,qDAElBJ,EAAUA,EAAQK,uBAAuB,IAAIC,MAAM,KAAKC,KAAK,OAG7DvE,KAAK0C,QAAS,CACd1C,KAAKmE,IAAInE,KAAKoE,IAAI,mDAClB,IAAII,EAAaC,QAAQ,uCACzBT,EAAUA,EAAQU,gBAAgB,IAAIF,EAAWG,wBAGrD3E,KAAK4E,WAAaZ,EAAQa,QAC1B7E,KAAK8E,SAAQ,WACT,GAAqC,GAAjC/B,EAAKE,kBAAkB8B,OAA3B,CAGA,IAAK,IAAIC,EAAI,EAAGA,EAAIjC,EAAKE,kBAAkB8B,OAAQC,IAC/CjC,EAAKoB,IAAIpB,EAAKqB,IAAI,kCAAoC,IAAMrB,EAAKE,kBAAkB+B,GAAGC,KAAK3E,UAC3FyC,EAAKmC,KAAKnC,EAAKE,kBAAkB+B,GAAGC,KAAMlC,EAAKE,kBAAkB+B,GAAGG,KAGxEpC,EAAKE,kBAAoB,YA/BzBjD,KAAKmE,IAAInE,KAAKoE,IAAI,yDAsClB7B,EAAAnC,UAAA0E,QAAA,SAAQM,GAAR,IAAArC,EAAA/C,KACJA,KAAK4E,WAAWS,QAAQC,OAAM,SAAAC,GAAO,OAAAC,QAAQrB,IAAIoB,MAAME,MAAK,SAAAC,GAAK,OAAAN,MAAAA,OAAW,EAAXA,OACjEpF,KAAKwC,WAAWU,eAAeC,SAAQ,SAAAwC,GAEX,OAApBA,EAAEC,eAA+C,OAArBD,EAAEE,eAC9B9C,EAAK6B,WAAWkB,GAAGH,EAAErF,UAAU,SAACyF,GAC5BhD,EAAKoB,IAAIpB,EAAKqB,IAAI,iDAAmD,KAAOuB,EAAErF,SAAW,MAAQyC,EAAKiD,aAAaC,KAAKC,UAAUH,KAClIhD,EAAKC,eAAe2C,EAAErF,UAAU6F,KAAKJ,MAGzChD,EAAKoB,IAAIpB,EAAKqB,IAAI,iCAAmC,IAAMuB,EAAErF,SAAW,IAAMyC,EAAKqB,IAAI,gDAU5F7B,EAAAnC,UAAAgG,gBAAA,WAAA,IAAArD,EAAA/C,KACH,OAAIA,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBC,cAC5CvG,KAAKmE,IAAInE,KAAKoE,IAAI,gDAEXpE,KAAK4E,WAAWS,QAClBI,MAAK,SAAAC,GACF,OAAOc,QAAQC,QAAQ,SACxB,SAAAf,GAEC,OADA3C,EAAKoB,IAAIpB,EAAKqB,IAAI,mDACXoC,QAAQC,QAAQ,UAG1BzG,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBI,UAC1CF,QAAQC,QAAQ,MAEhBD,QAAQC,QAAQ,UAUxBlE,EAAAnC,UAAA8E,KAAA,SAAWD,EAA8BE,GAAzC,IAAApC,EAAA/C,KACH,GAAKA,KAAK4E,WAKV,OAAK5E,KAAK2C,aAKN3C,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBK,YAAc3G,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBM,cAAgB5G,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBO,eAClK7G,KAAKmE,IAAInE,KAAKoE,IAAI,6FAClB0C,YAAW,WAAQ/D,EAAKmC,KAAKD,EAAME,KAAS,MAEvCnF,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBC,aACjDvG,KAAKoG,kBAAkBX,MAAK,SAAAsB,GACf,MAALA,EAAWhE,EAAKoB,IAAIpB,EAAKqB,IAAI,qFAC5BrB,EAAKmC,KAAKD,EAAME,MAIzBnF,KAAK4E,WAAWM,KAAKD,EAAK3E,SAAU6E,GAAKM,MAAK,SAAAC,GACtC3C,EAAKH,OACL4C,QAAQwB,KAAKjE,EAAKqB,IAAI,0BAA4B,MAAQa,EAAK3E,SAAW,KAAOyC,EAAKiD,aAAaC,KAAKC,UAAUf,UAjB1HnF,KAAKmE,IAAInE,KAAKoE,IAAI,wEACX6C,EAAAA,OANPjH,KAAKiD,kBAAkB1C,KAAK,CAAE0E,KAAIA,EAAEE,IAAGA,KAmCxC5C,EAAAnC,UAAA8G,OAAA,SAAkBjC,EAA8BE,GAAhD,IAAApC,EAAA/C,KACH,OAAKA,KAAK2C,QAKN3C,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBK,YAAc3G,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBM,cAAgB5G,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBO,eAClK7G,KAAKmE,IAAInE,KAAKoE,IAAI,+FACX+C,EAAAA,KAAKC,KAAKC,EAAAA,MAAM,KAAOC,EAAAA,WAAU,WAAM,OAAAvE,EAAKmE,OAAOjC,EAAME,QAE3DnF,KAAK4E,WAAWyB,OAASC,EAAAA,mBAAmBC,aAC1CgB,EAAAA,KAAKvH,KAAKoG,mBAAmBgB,KAAKE,EAAAA,WAAU,SAACE,GAChD,MAAW,MAAPA,GACAzE,EAAKoB,IAAIpB,EAAKqB,IAAI,qFACX6C,EAAAA,OAEClE,EAAKmE,OAAOjC,EAAME,OAI3BoC,EAAAA,KAAKvH,KAAK4E,WAAWsC,OAAYjC,EAAK3E,SAAU6E,IAAMiC,KACzDK,EAAAA,KAAI,WACI1E,EAAKH,OAAO4C,QAAQrB,IAAIpB,EAAKqB,IAAI,6BAA+B,MAAQa,EAAK3E,SAAW,KAAOyC,EAAKiD,aAAaC,KAAKC,UAAUf,UApB5InF,KAAKmE,IAAInE,KAAKoE,IAAI,0EACX6C,EAAAA,QAgCR1E,EAAAnC,UAAAsH,QAAA,SAAazC,GAChB,OAAKjF,KAAK2C,SAKV3C,KAAKmE,IAAInE,KAAKoE,IAAI,8CAAgD,KAAOa,EAAK3E,UACtDN,KAAKgD,eAAeiC,EAAK3E,YAL7CN,KAAKmE,IAAInE,KAAKoE,IAAI,2EACX6C,EAAAA,QAYR1E,EAAAnC,UAAAuH,WAAA,WAAA,IAAA5E,EAAA/C,KAEH,OAAKA,KAAK2C,QAKH4E,EAAAA,KAAKvH,KAAK4E,WAAWgD,QAAQR,KAChCS,EAAAA,YAAW,SAACtC,EAAKuC,GAA+B,OAAlBtC,QAAQrB,IAAIoB,GAAa4B,EAAAA,GAAG,SAC1DM,EAAAA,KAAI,WACA1E,EAAKoB,IAAIpB,EAAKqB,IAAI,uCAPtBpE,KAAKmE,IAAInE,KAAKoE,IAAI,iFACX6C,EAAAA,QAmBP1E,EAAAnC,UAAA4F,aAAA,SAAa+B,EAAcC,GAC/B,YAD+B,IAAAA,IAAAA,EAAA,KACxBD,EAAKhD,OAASiD,EAAWD,EAAKE,OAAO,EAAGD,GAAY,QAAUD,GAQjExF,EAAAnC,UAAA+D,IAAA,SAAI4B,GACJ/F,KAAK4C,OACL4C,QAAQrB,IAAI,2BAA6B4B,IAUzCxD,EAAAnC,UAAAgE,IAAA,SAAI2B,GACR,OAAK/E,EAAI+E,GAIF/E,EAAI+E,GAAS/F,KAAK8C,SAHrB0C,QAAQ0C,KAAK,yBAA2BnC,GACjC,8BAxOlBvF,EAAAA,sDARQT,kCAqBgDoI,EAAAA,OAAMC,KAAA,CAAC3H,sCAA6C0H,EAAAA,OAAMC,KAAA,CAACtH,sCAAyCqH,EAAAA,OAAMC,KAAA,CAACzH,sCAA4CwH,EAAAA,OAAMC,KAAA,CAACxH,sCAAqCuH,EAAAA,OAAMC,KAAA,CAACrH,qCAAyCoH,EAAAA,OAAMC,KAAA,CAACvH,yBCvBnT,SAAAwH,YACSA,EAAAC,QAAP,SAAeC,GACb,MAAO,CACLC,SAAUH,EACVI,UAAW,CACTlG,EACA,CAAEmG,QAAS3I,EAAoB4I,UAAUJ,MAAAA,OAAM,EAANA,EAAQK,iBAAkB7I,GACnE,CAAE2I,QAASjI,EAAcoI,SAAUN,MAAAA,OAAM,EAANA,EAAQO,aAC3C,CAAEJ,QAAS7H,EAAQgI,UAAUN,MAAAA,OAAM,EAANA,EAAQzF,SAAU,SAC/C,CAAE4F,QAAS/H,EAAiBkI,SAA6B,OAAnBN,MAAAA,OAAM,EAANA,EAAQ5F,WAAkB4F,MAAAA,OAAM,EAANA,EAAQ5F,UACxE,CAAE+F,QAAS9H,EAAYiI,SAA+B,OAArBN,MAAAA,OAAM,EAANA,EAAQQ,aAAoBR,MAAAA,OAAM,EAANA,EAAQQ,YACrE,CAAEL,QAAS5H,EAAc+H,SAAmC,OAAzBN,MAAAA,OAAM,EAANA,EAAQS,iBAAwBT,MAAAA,OAAM,EAANA,EAAQS,gBAC3E,CAAEN,QAAS3H,EAAgB8H,SAAoC,OAA1BN,MAAAA,OAAM,EAANA,EAAQU,kBAAyBV,MAAAA,OAAM,EAANA,EAAQU,6CAbrFC,EAAAA,4BCKG,SAAAC,EAAmB7I,EAAyBsF,EAA2BC,GAApD7F,KAAAM,SAAAA,EAAyBN,KAAA4F,cAAAA,EAA2B5F,KAAA6F,eAAAA,SAIzDsD,EAAAC,GAAP,SAAeC,EAAczD,GAChC,OAAO,IAAIuD,EAAuBE,EAAMzD,OAAe0D,IAI7CH,EAAAI,IAAP,SAAiBF,EAAcxD,GAClC,OAAO,IAAIsD,EAAwBE,OAAMC,EAAWzD,IAI1CsD,EAAAK,GAAP,SAAqBH,EAAczD,EAAoBC,GAC1D,OAAO,IAAIsD,EAAuBE,EAAMzD,EAAeC,WClB/D","sourcesContent":["// Angular\r\nimport { Injectable } from '@angular/core';\r\n\r\n// Modelli\r\nimport { EndpointDef } from './EndpointDef';\r\n\r\n/**\r\n * Classe base da estendere con la definizione degli Endpoint supportati dall'applicazione\r\n */\r\n@Injectable()\r\nexport class BaseMessageService {\r\n\r\n private definitions: EndpointDef<any, any>[] = [];\r\n\r\n /** Entrypoint che restituisce tutti gli Endpoint dell'applicazione. Da overridare qualora non venga utilizzato il metodo **add** */\r\n public get AllDefinitions(): EndpointDef<any, any>[] { return this.definitions; }\r\n\r\n public add(endpoint: EndpointDef<any, any>) {\r\n this.definitions.push(endpoint);\r\n }\r\n}","import { InjectionToken } from '@angular/core';\r\n\r\n/**\r\n * Hub a cui collegarsi\r\n */\r\nexport const ENDPOINT_URL: InjectionToken<string> = new InjectionToken<string>('ENDPOINT_URL');\r\n\r\n/**\r\n * Indica se la libreria dev'essere attiva o no\r\n */\r\nexport const SIGNALR_ENABLED: InjectionToken<string> = new InjectionToken<boolean>('SIGNALR_ENABLED');\r\n\r\n/**\r\n * Indica se stampare messaggi di debug in console\r\n */\r\nexport const DEBUG_MODE: InjectionToken<string> = new InjectionToken<boolean>('DEBUG_MODE');\r\n\r\n/**\r\n * Indica il locale utilizzato dalla libreria per i messaggi. Sono supportati \"it-IT\" ed \"en-US\"\r\n */\r\nexport const LOCALE: InjectionToken<string> = new InjectionToken<string>('LOCALE');\r\n\r\n/**\r\n * Indica se utilizzare il protocollo di trasferimento \"MessagePack\"\r\n */\r\nexport const MESSAGE_PACK: InjectionToken<boolean> = new InjectionToken<boolean>('MESSAGE_PACK');\r\n\r\n/**\r\n * Indica se tentare in automatico la riconnessione\r\n */\r\nexport const AUTO_RECONNECT: InjectionToken<boolean> = new InjectionToken<boolean>('AUTO_RECONNECT');","/**\r\n * Oggetto statico di localizzazione per i messaggi scritti dal servizio\r\n */\r\nexport const Loc ={\r\n \"Recovering request to Endpoint\": {\"en-US\": \"Recovering request to Endpoint\", \"it-IT\": \"Recupero richiesta verso l'Endpoint\"},\r\n \"Building SignalR Hub with Automatic Reconnection\": { \"en-US\": \"Building SignalR Hub with Automatic Reconnection\", \"it-IT\": \"Compilo l'Hub di SignalR con riconnessione automatica\", },\r\n \"Cannot reconnect SignalR, frontend HUB offline\": { \"en-US\": \"Cannot reconnect SignalR, frontend HUB offline\", \"it-IT\": \"Impossibile riconnettere SignalR, l'Hub del Frontend e' Offline\", },\r\n \"Send request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Send request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Send' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\": { \"en-US\": \"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\", \"it-IT\": \"Richiesta 'Invoke' ricevuta prima che la connessione fosse in uno stato stabile, attendo 1 secondo e riprovo\", },\r\n \"Connection lost or missing, reconnecting...\" : { \"en-US\": \"Connection lost or missing, reconnecting...\", \"it-IT\": \"Connessione persa o mancante, mi riconnetto...\", },\r\n \"SignalR won't be enabled as per configuration\": { \"en-US\": \"SignalR won't be enabled as per configuration\", \"it-IT\": \"SignalR non verrà attivato come da configurazione\", },\r\n \"Building SignalR Hub with MessagePack protocol\": { \"en-US\": \"Building SignalR Hub with MessagePack protocol\", \"it-IT\": \"Compilo l'Hub di SignalR con protocollo MessagePack\", },\r\n \"Request received from the server for endpoint\": { \"en-US\": \"Request received from the server for endpoint\", \"it-IT\": \"Richiesta ricevuta dal server per endpoint\", },\r\n \"Refusing to register endpoint\": { \"en-US\": \"Refusing to register endpoint\", \"it-IT\": \"Rifiuto di registrare l'endpoint\", },\r\n \"because it is not declared as IN - ONLY\": { \"en-US\": \"because it is not declared as IN - ONLY\", \"it-IT\": \"in quanto non è registrato solo come IN\", },\r\n \"Send request ignored because SignalR is not active by configuration\": { \"en-US\": \"Send request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta send ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request sent to server\": { \"en-US\": \"Request sent to server\", \"it-IT\": \"Richiesta inviata al server\", },\r\n \"Invoke request ignored because SignalR is not active by configuration\": { \"en-US\": \"Invoke request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta invoke ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Request invoked to server\": { \"en-US\": \"Request invoked to server\", \"it-IT\": \"Richiesta invoke inviata al server\", },\r\n \"Observe request ignored because SignalR is not active by configuration\": { \"en-US\": \"Observe request ignored because SignalR is not active by configuration\", \"it-IT\": \"Osservazione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Returning observable for required endpoint\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituisco l'observable per l'endpoint richiesto\", },\r\n \"Disconnection request ignored because SignalR is not active by configuration\": { \"en-US\": \"Disconnection request ignored because SignalR is not active by configuration\", \"it-IT\": \"Richiesta di disconnesione ignorata in quanto SignalR non è attivo da configurazione\", },\r\n \"Disconnection request honored\": { \"en-US\": \"Returning observable for required endpoint\", \"it-IT\": \"Restituito observable per l'endpoint richiesto\", },\r\n \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\": { \"en-US\": \"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\", \"it-IT\": \"ERRORE nella riconnessione precedente a un nuovo tentativo di 'Send'. Il messaggio in questione SARA' PERSO\"}\r\n}","// Angular\r\nimport { Injectable, Inject } from \"@angular/core\";\r\n\r\n// Direttive, Componenti, Librerie\r\nimport * as signalR from '@microsoft/signalr';\r\nimport { HubConnectionState } from \"@microsoft/signalr\";\r\nimport { Observable, Subject, EMPTY, from, of } from \"rxjs\";\r\nimport { catchError, concatMap, delay, tap } from \"rxjs/operators\";\r\n\r\n// Modelli\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { EndpointDef } from './models/EndpointDef';\r\nimport { DEBUG_MODE, ENDPOINT_URL, LOCALE, MESSAGE_PACK, SIGNALR_ENABLED, AUTO_RECONNECT } from \"./tokens\";\r\n\r\n// Localizzazione\r\nimport { Loc } from './signalr-notifications.service.loc';\r\n\r\n/** Servizio che gestisce la comunicazione con un Hub SignalR in base alle configurazioni fornite dall'applicazione */\r\n@Injectable()\r\nexport class NotificationsService {\r\n\r\n /** Cache degli Observable generati in base agli Endpoint disponibili */\r\n private notifications$: { [index: string]: Subject<any> } = {};\r\n\r\n /** Connessione Signalr */\r\n private connection: signalR.HubConnection;\r\n\r\n /** Coda di chiamate da recuperare quando la connessione viene finalmente aperta */\r\n private RequestsToRecover: { item: EndpointDef<any, any>, dto: any }[] = [];\r\n\r\n /** @ignore Costruttore */\r\n constructor(private MessageDef: BaseMessageService, @Inject(ENDPOINT_URL) private endpoint_url: string, @Inject(MESSAGE_PACK) private msgpack: boolean, @Inject(SIGNALR_ENABLED) private enabled: boolean, @Inject(DEBUG_MODE) private debug: boolean, @Inject(AUTO_RECONNECT) autoreconnect: boolean, @Inject(LOCALE) private locale: string) {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"SignalR won't be enabled as per configuration\"));\r\n return;\r\n }\r\n\r\n this.MessageDef.AllDefinitions.forEach(def => { this.notifications$[def.endpoint] = new Subject<typeof def.inTypeDefault>(); });\r\n\r\n let pars: signalR.IHttpConnectionOptions = { skipNegotiation: true, transport: signalR.HttpTransportType.WebSockets, logger: debug ? signalR.LogLevel.Debug : signalR.LogLevel.None };\r\n var builder = new signalR.HubConnectionBuilder().withUrl(\"/\" + this.endpoint_url, pars);\r\n\r\n if (autoreconnect) {\r\n this.log(this.loc(\"Building SignalR Hub with Automatic Reconnection\"));\r\n // 100 tentativi di riconnessione, 1 ogni 5 secondi\r\n builder = builder.withAutomaticReconnect(new Array(100).fill(5 * 1000));\r\n }\r\n\r\n if (this.msgpack) {\r\n this.log(this.loc(\"Building SignalR Hub with MessagePack protocol\"));\r\n var mphpModule = require(\"@microsoft/signalr-protocol-msgpack\");\r\n builder = builder.withHubProtocol(new mphpModule.MessagePackHubProtocol())\r\n }\r\n\r\n this.connection = builder.build();\r\n this.connect(() => {\r\n if (this.RequestsToRecover.length == 0)\r\n return;\r\n\r\n for (let i = 0; i < this.RequestsToRecover.length; i++) {\r\n this.log(this.loc(\"Recovering request to Endpoint\") + \" \" + this.RequestsToRecover[i].item.endpoint)\r\n this.send(this.RequestsToRecover[i].item, this.RequestsToRecover[i].dto);\r\n }\r\n\r\n this.RequestsToRecover = [];\r\n });\r\n }\r\n\r\n /**\r\n * Effettua la connessione all'Hub Signalr e registra tutti gli Endpoint per cui il Backend comunica con il Frontend sulla **connection**\r\n */\r\n private connect(onConnected?: () => void) {\r\n this.connection.start().catch(err => console.log(err)).then(_ => onConnected?.());\r\n this.MessageDef.AllDefinitions.forEach(d => {\r\n //Registro solo le cose di IN, quelle di out sono chiamate che faccio io al BE quindi non servono\r\n if (d.inTypeDefault !== null && d.outTypeDefault === null)\r\n this.connection.on(d.endpoint, (message) => {\r\n this.log(this.loc(\"Request received from the server for endpoint\") + \" '\" + d.endpoint + \"': \" + this.substringLog(JSON.stringify(message)));\r\n this.notifications$[d.endpoint].next(message);\r\n });\r\n else\r\n this.log(this.loc(\"Refusing to register endpoint\") + \" \" + d.endpoint + \" \" + this.loc(\"because it is not declared as IN - ONLY\"));\r\n });\r\n }\r\n\r\n /**\r\n * Effettua verifiche sulla connessione e, in caso non fosse collegata, tenta di riconnetterla\r\n * \r\n * @returns {Promise<'OK' | 'KO' | 'NO-OP'>} 'OK' Se la connessione è già connessa o è stata riconnessa con successo, 'KO' Se non è stato possibile riconnettere \r\n * una connessione disconnessa, 'NO-OP' se la connesisone è in uno stato intermedio che non può essere modificato\r\n */\r\n public ensureConnected(): Promise<'OK' | 'KO' | 'NO-OP'> {\r\n if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.log(this.loc(\"Connection lost or missing, reconnecting...\"));\r\n\r\n return this.connection.start()\r\n .then(_ => {\r\n return Promise.resolve(\"OK\");\r\n }, _ => {\r\n this.log(this.loc(\"Cannot reconnect SignalR, frontend HUB offline\"));\r\n return Promise.resolve(\"KO\");\r\n });\r\n }\r\n else if (this.connection.state == HubConnectionState.Connected)\r\n return Promise.resolve(\"OK\");\r\n else\r\n return Promise.resolve(\"NO-OP\");\r\n }\r\n\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend\r\n * \r\n * @param {EndpointDef<TOut, any>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n */\r\n public send<TOut>(item: EndpointDef<TOut, any>, dto: TOut) {\r\n if (!this.connection) {\r\n this.RequestsToRecover.push({ item, dto });\r\n return;\r\n }\r\n\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Send request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Send request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n setTimeout(() => { this.send(item, dto); }, 1000);\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n this.ensureConnected().then(t => {\r\n if (t == \"KO\") this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n else this.send(item, dto);\r\n })\r\n }\r\n else {\r\n this.connection.send(item.endpoint, dto).then(_ => {\r\n if (this.debug)\r\n console.info(this.loc(\"Request sent to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n });\r\n }\r\n }\r\n\r\n /**\r\n * Invia un messaggio all'Hub del Backend, aspettandosi una risposta\r\n * \r\n * @param {EndpointDef<TOut, TIn>} item Endpoint da contattare\r\n * @param {TOut} dto Dto da inviare all'Endpoint\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere il risultato della chiamata\r\n */\r\n public invoke<TOut, TIn>(item: EndpointDef<TOut, TIn>, dto: TOut): Observable<TIn> {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Invoke request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n if (this.connection.state == HubConnectionState.Connecting || this.connection.state == HubConnectionState.Reconnecting || this.connection.state == HubConnectionState.Disconnecting) {\r\n this.log(this.loc(\"Invoke request sent before a connection was in stable State, waiting 1 second and retrying\"));\r\n return of().pipe(delay(1000), concatMap(() => this.invoke(item, dto)));\r\n }\r\n else if (this.connection.state == HubConnectionState.Disconnected) {\r\n return from(this.ensureConnected()).pipe(concatMap((res) => {\r\n if (res == \"KO\") {\r\n this.log(this.loc(\"ERRORS on reconnecting before retrying a send command. Sent message WILL BE LOST\"));\r\n return EMPTY;\r\n }\r\n else return this.invoke(item, dto);\r\n }))\r\n }\r\n else {\r\n return from(this.connection.invoke<TIn>(item.endpoint, dto)).pipe(\r\n tap(() => {\r\n if (this.debug) console.log(this.loc(\"Request invoked to server\") + \" - \" + item.endpoint + \": \" + this.substringLog(JSON.stringify(dto)));\r\n })\r\n );\r\n }\r\n }\r\n\r\n /**\r\n * Hook per osservare i dati spediti ad un Endpoint dal Backend\r\n * \r\n * @param {EndpointDef<TIn, any>} item Endpoint su cui ascoltare\r\n * \r\n * @returns {Observable<TIn>} Observable su cui ci si può registrare per ricevere l'oggetto generato ad ogni chiamata dal Backend al Frontend\r\n */\r\n public observe<TIn>(item: EndpointDef<TIn, any>): Observable<TIn> {\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Observe request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n this.log(this.loc(\"Returning observable for required endpoint\") + \": \" + item.endpoint);\r\n return <Observable<TIn>>this.notifications$[item.endpoint];\r\n }\r\n\r\n /**\r\n * Disconnessione del sistema di SignalR\r\n * \r\n * @returns {Observable<void>} Observable a cui registrarsi che viene chiamato quando la disconnessione è terminata\r\n */\r\n public disconnect(): Observable<void> {\r\n //NO-OP se non attivo\r\n if (!this.enabled) {\r\n this.log(this.loc(\"Disconnection request ignored because SignalR is not active by configuration\"));\r\n return EMPTY;\r\n }\r\n\r\n return from(this.connection.stop()).pipe(\r\n catchError((err, caught) => { console.log(err); return of(null); }),\r\n tap(() => {\r\n this.log(this.loc(\"Disconnection request honored\"));\r\n })\r\n );\r\n }\r\n\r\n /**\r\n * Taglia un log troppo lungo\r\n * \r\n * @param {string} text Log da tagliare\r\n * @param {number} maxchars Numero massimo di caratteri da tenere\r\n * \r\n * @returns {string} Log tagliato\r\n */\r\n private substringLog(text: string, maxchars: number = 120): string {\r\n return text.length > maxchars ? text.substr(0, maxchars) + \"[...]\" : text;\r\n }\r\n\r\n /**\r\n * Stampa un log a console\r\n * \r\n * @param {string} message Messaggio da stampare\r\n */\r\n private log(message: string) {\r\n if (this.debug)\r\n console.log(\"@signalr-notifications: \" + message)\r\n }\r\n\r\n /**\r\n * Helper di localizzazione\r\n * \r\n * @param {string} message Messaggio da tradurre\r\n * \r\n * @returns {string} Messaggio tradotto\r\n */\r\n private loc(message: string): string {\r\n if (!Loc[message]) {\r\n console.warn(\"Untranslated message: \" + message)\r\n return \"\";\r\n }\r\n return Loc[message][this.locale];\r\n }\r\n}","\r\nimport { NgModule, ModuleWithProviders } from '@angular/core';\r\nimport { SignalrNotificationsModuleConfig } from './config/SignalrNotificationsModuleConfig';\r\nimport { BaseMessageService } from './models/BaseMessageService';\r\nimport { NotificationsService } from './signalr-notifications.service';\r\nimport { ENDPOINT_URL, SIGNALR_ENABLED, DEBUG_MODE, LOCALE, MESSAGE_PACK, AUTO_RECONNECT } from './tokens';\r\n\r\n@NgModule()\r\nexport class SignalrNotificationsModule {\r\n static forRoot(config?: SignalrNotificationsModuleConfig): ModuleWithProviders<SignalrNotificationsModule> {\r\n return {\r\n ngModule: SignalrNotificationsModule,\r\n providers: [\r\n NotificationsService,\r\n { provide: BaseMessageService, useClass: config?.messageService || BaseMessageService },\r\n { provide: ENDPOINT_URL, useValue: config?.endpointUrl },\r\n { provide: LOCALE, useValue: config?.locale || 'it-IT' },\r\n { provide: SIGNALR_ENABLED, useValue: config?.enabled != null ? config?.enabled : true },\r\n { provide: DEBUG_MODE, useValue: config?.debugMode != null ? config?.debugMode : false },\r\n { provide: MESSAGE_PACK, useValue: config?.autoReconnect != null ? config?.autoReconnect : false },\r\n { provide: AUTO_RECONNECT, useValue: config?.useMessagePack != null ? config?.useMessagePack : false },\r\n ]\r\n };\r\n }\r\n}","/**\r\n * Definisce un Endpoint che spedisce un'informazione di tipo TIn e restituisce un'informazione di tipo TOut\r\n */\r\nexport class EndpointDef<TIn, TOut> {\r\n\r\n /**\r\n * Costruttore\r\n * \r\n * @param {string} endpoint Nome del metodo da chiamare nell'Hub del Backend contattato\r\n * @param {TIn} inTypeDefault Default per il tipo TIn. Utilizzato per fare Typecheck sulle chiamate da Backend a Frontend\r\n * @param {TOut} outTypeDefault Default per il tipo TOut. Utilizzato per fare Typecheck sulle chiamate da Frontend a Backend\r\n */\r\n constructor(public endpoint: string, public inTypeDefault: TIn, public outTypeDefault: TOut) { }\r\n\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo INPUT */\r\n public static In<TIn>(name: string, inTypeDefault: TIn): EndpointDef<TIn, void> {\r\n return new EndpointDef<TIn, void>(name, inTypeDefault, undefined);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di solo OUTPUT */\r\n public static Out<TOut>(name: string, outTypeDefault: TOut): EndpointDef<void, TOut> {\r\n return new EndpointDef<void, TOut>(name, undefined, outTypeDefault);\r\n }\r\n\r\n /** Helper per la creazione rapida di un Endpoint di INPUT e OUTPUT (BIDIREZIONALE) */\r\n public static Bi<TIn, TOut>(name: string, inTypeDefault: TIn, outTypeDefault: TOut): EndpointDef<TIn, TOut> {\r\n return new EndpointDef<TIn, TOut>(name, inTypeDefault, outTypeDefault);\r\n }\r\n}","// Angular\r\nimport { Type } from '@angular/core';\r\n\r\n// Modelli\r\nimport { BaseMessageService } from '../models/BaseMessageService';\r\n\r\n/**\r\n * Classe di configurazione per la libreria\r\n */\r\nexport class SignalrNotificationsModuleConfig {\r\n\r\n /**\r\n * Url nei confronti del quale aprire la connessione SignalR\r\n */\r\n endpointUrl : string;\r\n\r\n /**\r\n * Servizio che definisce i messaggi di IN e OUT coi loro default\r\n */\r\n messageService? : Type<BaseMessageService>;\r\n\r\n /**\r\n * Indica se abilitare o meno la connessione SignalR nei confronti dell'URL **hubUrl**\r\n */\r\n enabled? : boolean;\r\n\r\n /**\r\n * Indica se utilizzare message pack come protocollo di trasmissione\r\n */\r\n useMessagePack? : boolean;\r\n\r\n /**\r\n * Indica se tentare di riconnettersi automaticamente quando la connessione cade\r\n */\r\n autoReconnect? : boolean;\r\n\r\n /**\r\n * Indica se scrivere o meno i messaggi di debug\r\n */\r\n debugMode? : boolean;\r\n\r\n /**\r\n * Lingua dei feedback a console, sono supportati 'it-IT' ed 'en-US'\r\n */\r\n locale? : string\r\n}"]}
@@ -2,4 +2,4 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
- export { AUTO_RECONNECT as ɵf, DEBUG_MODE as ɵc, HUB_URL as ɵa, LOCALE as ɵd, MESSAGE_PACK as ɵe, SIGNALR_ENABLED as ɵb } from './lib/tokens';
5
+ export { AUTO_RECONNECT as ɵf, DEBUG_MODE as ɵc, ENDPOINT_URL as ɵa, LOCALE as ɵd, MESSAGE_PACK as ɵe, SIGNALR_ENABLED as ɵb } from './lib/tokens';