FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-provider.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const ScProvider = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.mountEmitter = index.createEvent(this, "mountConsumer", 7); this.STENCIL_CONTEXT = undefined; this.consumers = []; } watchContext(newContext) { this.consumers.forEach(consumer => consumer(newContext)); } async mountConsumer(event) { event.stopPropagation(); this.consumers = this.consumers.slice().concat([event.detail]); await event.detail(this.STENCIL_CONTEXT); const index = this.consumers.indexOf(event.detail); const newConsumers = this.consumers.slice(0, index).concat(this.consumers.slice(index + 1, this.consumers.length)); this.consumers = newConsumers; } disconnectedCallback() { this.consumers.map(consumer => this.mountEmitter.emit(consumer)); } render() { return index.h("slot", { key: '955b9395739aec78543c20c13e993b6dad2735b6' }); } static get watchers() { return { "STENCIL_CONTEXT": ["watchContext"] }; } }; exports.sc_provider = ScProvider; //# sourceMappingURL=sc-provider.cjs.entry.js.map
Save
Back