angular2-toaster-mod
Version:
An Angular 2 Toaster Notification library based on AngularJS-Toaster
1 lines • 5.72 kB
Source Map (JSON)
{"version":3,"file":"toaster.service.js","sourceRoot":"","sources":["../../src/toaster.service.ts"],"names":[],"mappings":"OAAO,EAAC,UAAU,EAAC,MAAM,eAAe;OAEjC,EAAC,UAAU,EAAC,MAAM,iBAAiB;OACnC,yBAAyB;OAEzB,EAAC,OAAO,EAAC,MAAM,cAAc;AAIpC;IAWI;;OAEG;IACH;QAdJ,iBAoFC;QArEO,IAAI,CAAC,QAAQ,GAAG,IAAI,UAAU,CAAQ,UAAC,QAAa,IAAK,OAAA,KAAI,CAAC,SAAS,GAAG,QAAQ,EAAzB,CAAyB,CAAC,CAAC,KAAK,EAAE,CAAC;QAC5F,IAAI,CAAC,WAAW,GAAG,IAAI,UAAU,CAAgB,UAAC,QAAa,IAAK,OAAA,KAAI,CAAC,YAAY,GAAG,QAAQ,EAA5B,CAA4B,CAAC,CAAC,KAAK,EAAE,CAAC;QAC1G,IAAI,CAAC,mBAAmB,GAAG,IAAI,OAAO,EAAiB,CAAA;QACvD,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,mBAAmB,CAAC,KAAK,EAAE,CAAC;IACxD,CAAC;IAGD;;;;;;;;OAQG;IACH,4BAAG,GAAH,UAAI,IAAoB,EAAE,KAAc,EAAE,IAAa;QACnD,IAAI,KAAK,GAAG,OAAO,IAAI,KAAK,QAAQ,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC;QAEvF,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,EAAE,CAAC;QAE/B,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;YAClB,MAAM,IAAI,KAAK,CAAC,gEAAgE,CAAC,CAAC;QACtF,CAAC;QAED,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC3B,MAAM,CAAC,KAAK,CAAC;IACjB,CAAC;IAGD;;;;;;;;;OASG;IACH,iCAAQ,GAAR,UAAS,IAAoB,EAAE,KAAc,EAAE,IAAa;QAA5D,iBAMC;QALG,UAAU,CAAC;YACP,KAAI,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;QAChC,CAAC,EAAE,CAAC,CAAC,CAAC;QAEN,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IAGD;;;;;;OAMG;IACH,8BAAK,GAAL,UAAM,OAAgB,EAAE,gBAAyB;QAC7C,IAAI,YAAY,GAAkB;YAC9B,OAAO,EAAE,OAAO,EAAE,gBAAgB,EAAE,gBAAgB;SACvD,CAAC;QAEF,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,CAAA;IACxC,CAAC;IACE,yBAAU,GAA0B;QAC3C,EAAE,IAAI,EAAE,UAAU,EAAE;KACnB,CAAC;IACF,kBAAkB;IACX,6BAAc,GAAmE,cAAM,OAAA,EAC7F,EAD6F,CAC7F,CAAC;IACF,qBAAC;AAAD,CAAC,AApFD,IAoFC;AAOD,sEAAsE;AACtE;IAAA;IAOA,CAAC;IANU,YAAO,GAAd;QACI,MAAM,CAAC,sCAAsC,CAAC,OAAO,CAAC,OAAO,EAAE,UAAS,CAAC;YACrE,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,GAAC,EAAE,GAAC,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC,GAAC,GAAG,GAAC,GAAG,CAAC,CAAC;YAC3D,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;QAC1B,CAAC,CAAC,CAAC;IACP,CAAC;IACL,WAAC;AAAD,CAAC,AAPD,IAOC","sourcesContent":["import {Injectable} from '@angular/core';\nimport {Toast} from './toast';\nimport {Observable} from 'rxjs/Observable';\nimport 'rxjs/add/operator/share';\nimport {Observer} from 'rxjs/Observer';\nimport {Subject} from 'rxjs/Subject';\n\n\n\nexport class ToasterService {\n addToast: Observable<Toast>;\n private _addToast: Observer<Toast>;\n\n clearToasts: Observable<IClearWrapper>;\n private _clearToasts: Observer<IClearWrapper>;\n\n removeToast: Observable<IClearWrapper>;\n /** @internal */\n _removeToastSubject: Subject<IClearWrapper>\n\n /**\n * Creates an instance of ToasterService.\n */\n constructor() {\n this.addToast = new Observable<Toast>((observer: any) => this._addToast = observer).share();\n this.clearToasts = new Observable<IClearWrapper>((observer: any) => this._clearToasts = observer).share();\n this._removeToastSubject = new Subject<IClearWrapper>()\n this.removeToast = this._removeToastSubject.share();\n }\n\n \n /**\n * Synchronously create and show a new toast instance.\n * \n * @param {(string | Toast)} type The type of the toast, or a Toast object.\n * @param {string=} title The toast title.\n * @param {string=} body The toast body.\n * @returns {Toast}\n * The newly created Toast instance with a randomly generated GUID Id.\n */\n pop(type: string | Toast, title?: string, body?: string): Toast {\n let toast = typeof type === 'string' ? { type: type, title: title, body: body } : type;\n\n toast.toastId = Guid.newGuid();\n\n if (!this._addToast) {\n throw new Error(\"No Toaster Containers have been initialized to receive toasts.\");\n }\n \n this._addToast.next(toast);\n return toast;\n }\n\n \n /**\n * Asynchronously create and show a new toast instance.\n * \n * @param {(string | Toast)} type The type of the toast, or a Toast object.\n * @param {string=} title The toast title.\n * @param {string=} body The toast body.\n * @returns {Observable<Toast>}\n * A hot Observable that can be subscribed to in order to receive the Toast instance \n * with a randomly generated GUID Id.\n */\n popAsync(type: string | Toast, title?: string, body?: string): Observable<Toast> {\n setTimeout(() => {\n this.pop(type, title, body);\n }, 0);\n\n return this.addToast;\n }\n\n \n /**\n * Clears a toast by toastId and/or toastContainerId.\n * \n * @param {string} toastId The toastId to clear.\n * @param {number=} toastContainerId \n * The toastContainerId of the container to remove toasts from.\n */\n clear(toastId?: string, toastContainerId?: number) {\n let clearWrapper: IClearWrapper = {\n toastId: toastId, toastContainerId: toastContainerId\n };\n\n this._clearToasts.next(clearWrapper)\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Injectable },\n];\n/** @nocollapse */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nexport interface IClearWrapper {\n toastId?: string;\n toastContainerId?: number;\n}\n\n// http://stackoverflow.com/questions/26501688/a-typescript-guid-class\nclass Guid {\n static newGuid() {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {\n var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);\n return v.toString(16);\n });\n }\n}\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}