Kargi-Sitesi/.angular/cache/18.2.11/babel-webpack/38bf1a0128c60d0750da6a405761723f7a227d810f6e77a157749635d332d0d3.json

1 line
No EOL
7.7 KiB
JSON

{"ast":null,"code":"import { Subscriber } from '../Subscriber';\nimport { async } from '../scheduler/async';\nimport { defaultThrottleConfig } from './throttle';\nexport function throttleTime(duration, scheduler = async, config = defaultThrottleConfig) {\n return source => source.lift(new ThrottleTimeOperator(duration, scheduler, config.leading, config.trailing));\n}\nclass ThrottleTimeOperator {\n constructor(duration, scheduler, leading, trailing) {\n this.duration = duration;\n this.scheduler = scheduler;\n this.leading = leading;\n this.trailing = trailing;\n }\n call(subscriber, source) {\n return source.subscribe(new ThrottleTimeSubscriber(subscriber, this.duration, this.scheduler, this.leading, this.trailing));\n }\n}\nclass ThrottleTimeSubscriber extends Subscriber {\n constructor(destination, duration, scheduler, leading, trailing) {\n super(destination);\n this.duration = duration;\n this.scheduler = scheduler;\n this.leading = leading;\n this.trailing = trailing;\n this._hasTrailingValue = false;\n this._trailingValue = null;\n }\n _next(value) {\n if (this.throttled) {\n if (this.trailing) {\n this._trailingValue = value;\n this._hasTrailingValue = true;\n }\n } else {\n this.add(this.throttled = this.scheduler.schedule(dispatchNext, this.duration, {\n subscriber: this\n }));\n if (this.leading) {\n this.destination.next(value);\n } else if (this.trailing) {\n this._trailingValue = value;\n this._hasTrailingValue = true;\n }\n }\n }\n _complete() {\n if (this._hasTrailingValue) {\n this.destination.next(this._trailingValue);\n this.destination.complete();\n } else {\n this.destination.complete();\n }\n }\n clearThrottle() {\n const throttled = this.throttled;\n if (throttled) {\n if (this.trailing && this._hasTrailingValue) {\n this.destination.next(this._trailingValue);\n this._trailingValue = null;\n this._hasTrailingValue = false;\n }\n throttled.unsubscribe();\n this.remove(throttled);\n this.throttled = null;\n }\n }\n}\nfunction dispatchNext(arg) {\n const {\n subscriber\n } = arg;\n subscriber.clearThrottle();\n}","map":{"version":3,"names":["Subscriber","async","defaultThrottleConfig","throttleTime","duration","scheduler","config","source","lift","ThrottleTimeOperator","leading","trailing","constructor","call","subscriber","subscribe","ThrottleTimeSubscriber","destination","_hasTrailingValue","_trailingValue","_next","value","throttled","add","schedule","dispatchNext","next","_complete","complete","clearThrottle","unsubscribe","remove","arg"],"sources":["/home/arctichawk1/Desktop/Projects/Public/Kargi-Sitesi/node_modules/rxjs/_esm2015/internal/operators/throttleTime.js"],"sourcesContent":["import { Subscriber } from '../Subscriber';\nimport { async } from '../scheduler/async';\nimport { defaultThrottleConfig } from './throttle';\nexport function throttleTime(duration, scheduler = async, config = defaultThrottleConfig) {\n return (source) => source.lift(new ThrottleTimeOperator(duration, scheduler, config.leading, config.trailing));\n}\nclass ThrottleTimeOperator {\n constructor(duration, scheduler, leading, trailing) {\n this.duration = duration;\n this.scheduler = scheduler;\n this.leading = leading;\n this.trailing = trailing;\n }\n call(subscriber, source) {\n return source.subscribe(new ThrottleTimeSubscriber(subscriber, this.duration, this.scheduler, this.leading, this.trailing));\n }\n}\nclass ThrottleTimeSubscriber extends Subscriber {\n constructor(destination, duration, scheduler, leading, trailing) {\n super(destination);\n this.duration = duration;\n this.scheduler = scheduler;\n this.leading = leading;\n this.trailing = trailing;\n this._hasTrailingValue = false;\n this._trailingValue = null;\n }\n _next(value) {\n if (this.throttled) {\n if (this.trailing) {\n this._trailingValue = value;\n this._hasTrailingValue = true;\n }\n }\n else {\n this.add(this.throttled = this.scheduler.schedule(dispatchNext, this.duration, { subscriber: this }));\n if (this.leading) {\n this.destination.next(value);\n }\n else if (this.trailing) {\n this._trailingValue = value;\n this._hasTrailingValue = true;\n }\n }\n }\n _complete() {\n if (this._hasTrailingValue) {\n this.destination.next(this._trailingValue);\n this.destination.complete();\n }\n else {\n this.destination.complete();\n }\n }\n clearThrottle() {\n const throttled = this.throttled;\n if (throttled) {\n if (this.trailing && this._hasTrailingValue) {\n this.destination.next(this._trailingValue);\n this._trailingValue = null;\n this._hasTrailingValue = false;\n }\n throttled.unsubscribe();\n this.remove(throttled);\n this.throttled = null;\n }\n }\n}\nfunction dispatchNext(arg) {\n const { subscriber } = arg;\n subscriber.clearThrottle();\n}\n"],"mappings":"AAAA,SAASA,UAAU,QAAQ,eAAe;AAC1C,SAASC,KAAK,QAAQ,oBAAoB;AAC1C,SAASC,qBAAqB,QAAQ,YAAY;AAClD,OAAO,SAASC,YAAYA,CAACC,QAAQ,EAAEC,SAAS,GAAGJ,KAAK,EAAEK,MAAM,GAAGJ,qBAAqB,EAAE;EACtF,OAAQK,MAAM,IAAKA,MAAM,CAACC,IAAI,CAAC,IAAIC,oBAAoB,CAACL,QAAQ,EAAEC,SAAS,EAAEC,MAAM,CAACI,OAAO,EAAEJ,MAAM,CAACK,QAAQ,CAAC,CAAC;AAClH;AACA,MAAMF,oBAAoB,CAAC;EACvBG,WAAWA,CAACR,QAAQ,EAAEC,SAAS,EAAEK,OAAO,EAAEC,QAAQ,EAAE;IAChD,IAAI,CAACP,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACC,SAAS,GAAGA,SAAS;IAC1B,IAAI,CAACK,OAAO,GAAGA,OAAO;IACtB,IAAI,CAACC,QAAQ,GAAGA,QAAQ;EAC5B;EACAE,IAAIA,CAACC,UAAU,EAAEP,MAAM,EAAE;IACrB,OAAOA,MAAM,CAACQ,SAAS,CAAC,IAAIC,sBAAsB,CAACF,UAAU,EAAE,IAAI,CAACV,QAAQ,EAAE,IAAI,CAACC,SAAS,EAAE,IAAI,CAACK,OAAO,EAAE,IAAI,CAACC,QAAQ,CAAC,CAAC;EAC/H;AACJ;AACA,MAAMK,sBAAsB,SAAShB,UAAU,CAAC;EAC5CY,WAAWA,CAACK,WAAW,EAAEb,QAAQ,EAAEC,SAAS,EAAEK,OAAO,EAAEC,QAAQ,EAAE;IAC7D,KAAK,CAACM,WAAW,CAAC;IAClB,IAAI,CAACb,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACC,SAAS,GAAGA,SAAS;IAC1B,IAAI,CAACK,OAAO,GAAGA,OAAO;IACtB,IAAI,CAACC,QAAQ,GAAGA,QAAQ;IACxB,IAAI,CAACO,iBAAiB,GAAG,KAAK;IAC9B,IAAI,CAACC,cAAc,GAAG,IAAI;EAC9B;EACAC,KAAKA,CAACC,KAAK,EAAE;IACT,IAAI,IAAI,CAACC,SAAS,EAAE;MAChB,IAAI,IAAI,CAACX,QAAQ,EAAE;QACf,IAAI,CAACQ,cAAc,GAAGE,KAAK;QAC3B,IAAI,CAACH,iBAAiB,GAAG,IAAI;MACjC;IACJ,CAAC,MACI;MACD,IAAI,CAACK,GAAG,CAAC,IAAI,CAACD,SAAS,GAAG,IAAI,CAACjB,SAAS,CAACmB,QAAQ,CAACC,YAAY,EAAE,IAAI,CAACrB,QAAQ,EAAE;QAAEU,UAAU,EAAE;MAAK,CAAC,CAAC,CAAC;MACrG,IAAI,IAAI,CAACJ,OAAO,EAAE;QACd,IAAI,CAACO,WAAW,CAACS,IAAI,CAACL,KAAK,CAAC;MAChC,CAAC,MACI,IAAI,IAAI,CAACV,QAAQ,EAAE;QACpB,IAAI,CAACQ,cAAc,GAAGE,KAAK;QAC3B,IAAI,CAACH,iBAAiB,GAAG,IAAI;MACjC;IACJ;EACJ;EACAS,SAASA,CAAA,EAAG;IACR,IAAI,IAAI,CAACT,iBAAiB,EAAE;MACxB,IAAI,CAACD,WAAW,CAACS,IAAI,CAAC,IAAI,CAACP,cAAc,CAAC;MAC1C,IAAI,CAACF,WAAW,CAACW,QAAQ,CAAC,CAAC;IAC/B,CAAC,MACI;MACD,IAAI,CAACX,WAAW,CAACW,QAAQ,CAAC,CAAC;IAC/B;EACJ;EACAC,aAAaA,CAAA,EAAG;IACZ,MAAMP,SAAS,GAAG,IAAI,CAACA,SAAS;IAChC,IAAIA,SAAS,EAAE;MACX,IAAI,IAAI,CAACX,QAAQ,IAAI,IAAI,CAACO,iBAAiB,EAAE;QACzC,IAAI,CAACD,WAAW,CAACS,IAAI,CAAC,IAAI,CAACP,cAAc,CAAC;QAC1C,IAAI,CAACA,cAAc,GAAG,IAAI;QAC1B,IAAI,CAACD,iBAAiB,GAAG,KAAK;MAClC;MACAI,SAAS,CAACQ,WAAW,CAAC,CAAC;MACvB,IAAI,CAACC,MAAM,CAACT,SAAS,CAAC;MACtB,IAAI,CAACA,SAAS,GAAG,IAAI;IACzB;EACJ;AACJ;AACA,SAASG,YAAYA,CAACO,GAAG,EAAE;EACvB,MAAM;IAAElB;EAAW,CAAC,GAAGkB,GAAG;EAC1BlB,UAAU,CAACe,aAAa,CAAC,CAAC;AAC9B","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}