UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

287 lines 11.1 kB
import { __assign } from "tslib"; import { equal } from "@wry/equality"; import { DeepMerger } from "../utilities/index.js"; import { mergeIncrementalData } from "../utilities/common/incrementalResult.js"; import { reobserveCacheFirst } from "./ObservableQuery.js"; import { isNonEmptyArray, graphQLResultHasError, canUseWeakMap, } from "../utilities/index.js"; import { NetworkStatus, isNetworkRequestInFlight, } from "./networkStatus.js"; ; var destructiveMethodCounts = new (canUseWeakMap ? WeakMap : Map)(); function wrapDestructiveCacheMethod(cache, methodName) { var original = cache[methodName]; if (typeof original === "function") { cache[methodName] = function () { destructiveMethodCounts.set(cache, (destructiveMethodCounts.get(cache) + 1) % 1e15); return original.apply(this, arguments); }; } } function cancelNotifyTimeout(info) { if (info["notifyTimeout"]) { clearTimeout(info["notifyTimeout"]); info["notifyTimeout"] = void 0; } } var QueryInfo = (function () { function QueryInfo(queryManager, queryId) { if (queryId === void 0) { queryId = queryManager.generateQueryId(); } this.queryId = queryId; this.listeners = new Set(); this.document = null; this.lastRequestId = 1; this.subscriptions = new Set(); this.stopped = false; this.dirty = false; this.observableQuery = null; var cache = this.cache = queryManager.cache; if (!destructiveMethodCounts.has(cache)) { destructiveMethodCounts.set(cache, 0); wrapDestructiveCacheMethod(cache, "evict"); wrapDestructiveCacheMethod(cache, "modify"); wrapDestructiveCacheMethod(cache, "reset"); } } QueryInfo.prototype.init = function (query) { var networkStatus = query.networkStatus || NetworkStatus.loading; if (this.variables && this.networkStatus !== NetworkStatus.loading && !equal(this.variables, query.variables)) { networkStatus = NetworkStatus.setVariables; } if (!equal(query.variables, this.variables)) { this.lastDiff = void 0; } Object.assign(this, { document: query.document, variables: query.variables, networkError: null, graphQLErrors: this.graphQLErrors || [], networkStatus: networkStatus, }); if (query.observableQuery) { this.setObservableQuery(query.observableQuery); } if (query.lastRequestId) { this.lastRequestId = query.lastRequestId; } return this; }; QueryInfo.prototype.reset = function () { cancelNotifyTimeout(this); this.dirty = false; }; QueryInfo.prototype.getDiff = function (variables) { if (variables === void 0) { variables = this.variables; } var options = this.getDiffOptions(variables); if (this.lastDiff && equal(options, this.lastDiff.options)) { return this.lastDiff.diff; } this.updateWatch(this.variables = variables); var oq = this.observableQuery; if (oq && oq.options.fetchPolicy === "no-cache") { return { complete: false }; } var diff = this.cache.diff(options); this.updateLastDiff(diff, options); return diff; }; QueryInfo.prototype.updateLastDiff = function (diff, options) { this.lastDiff = diff ? { diff: diff, options: options || this.getDiffOptions(), } : void 0; }; QueryInfo.prototype.getDiffOptions = function (variables) { var _a; if (variables === void 0) { variables = this.variables; } return { query: this.document, variables: variables, returnPartialData: true, optimistic: true, canonizeResults: (_a = this.observableQuery) === null || _a === void 0 ? void 0 : _a.options.canonizeResults, }; }; QueryInfo.prototype.setDiff = function (diff) { var _this = this; var oldDiff = this.lastDiff && this.lastDiff.diff; this.updateLastDiff(diff); if (!this.dirty && !equal(oldDiff && oldDiff.result, diff && diff.result)) { this.dirty = true; if (!this.notifyTimeout) { this.notifyTimeout = setTimeout(function () { return _this.notify(); }, 0); } } }; QueryInfo.prototype.setObservableQuery = function (oq) { var _this = this; if (oq === this.observableQuery) return; if (this.oqListener) { this.listeners.delete(this.oqListener); } this.observableQuery = oq; if (oq) { oq["queryInfo"] = this; this.listeners.add(this.oqListener = function () { var diff = _this.getDiff(); if (diff.fromOptimisticTransaction) { oq["observe"](); } else { reobserveCacheFirst(oq); } }); } else { delete this.oqListener; } }; QueryInfo.prototype.notify = function () { var _this = this; cancelNotifyTimeout(this); if (this.shouldNotify()) { this.listeners.forEach(function (listener) { return listener(_this); }); } this.dirty = false; }; QueryInfo.prototype.shouldNotify = function () { if (!this.dirty || !this.listeners.size) { return false; } if (isNetworkRequestInFlight(this.networkStatus) && this.observableQuery) { var fetchPolicy = this.observableQuery.options.fetchPolicy; if (fetchPolicy !== "cache-only" && fetchPolicy !== "cache-and-network") { return false; } } return true; }; QueryInfo.prototype.stop = function () { if (!this.stopped) { this.stopped = true; this.reset(); this.cancel(); this.cancel = QueryInfo.prototype.cancel; this.subscriptions.forEach(function (sub) { return sub.unsubscribe(); }); var oq = this.observableQuery; if (oq) oq.stopPolling(); } }; QueryInfo.prototype.cancel = function () { }; QueryInfo.prototype.updateWatch = function (variables) { var _this = this; if (variables === void 0) { variables = this.variables; } var oq = this.observableQuery; if (oq && oq.options.fetchPolicy === "no-cache") { return; } var watchOptions = __assign(__assign({}, this.getDiffOptions(variables)), { watcher: this, callback: function (diff) { return _this.setDiff(diff); } }); if (!this.lastWatch || !equal(watchOptions, this.lastWatch)) { this.cancel(); this.cancel = this.cache.watch(this.lastWatch = watchOptions); } }; QueryInfo.prototype.resetLastWrite = function () { this.lastWrite = void 0; }; QueryInfo.prototype.shouldWrite = function (result, variables) { var lastWrite = this.lastWrite; return !(lastWrite && lastWrite.dmCount === destructiveMethodCounts.get(this.cache) && equal(variables, lastWrite.variables) && equal(result.data, lastWrite.result.data)); }; QueryInfo.prototype.markResult = function (result, document, options, cacheWriteBehavior) { var _this = this; var merger = new DeepMerger(); var graphQLErrors = isNonEmptyArray(result.errors) ? result.errors.slice(0) : []; this.reset(); if ('incremental' in result && isNonEmptyArray(result.incremental)) { var mergedData = mergeIncrementalData(this.getDiff().result, result); result.data = mergedData; } else if ('hasNext' in result && result.hasNext) { var diff = this.getDiff(); result.data = merger.merge(diff.result, result.data); } this.graphQLErrors = graphQLErrors; if (options.fetchPolicy === 'no-cache') { this.updateLastDiff({ result: result.data, complete: true }, this.getDiffOptions(options.variables)); } else if (cacheWriteBehavior !== 0) { if (shouldWriteResult(result, options.errorPolicy)) { this.cache.performTransaction(function (cache) { if (_this.shouldWrite(result, options.variables)) { cache.writeQuery({ query: document, data: result.data, variables: options.variables, overwrite: cacheWriteBehavior === 1, }); _this.lastWrite = { result: result, variables: options.variables, dmCount: destructiveMethodCounts.get(_this.cache), }; } else { if (_this.lastDiff && _this.lastDiff.diff.complete) { result.data = _this.lastDiff.diff.result; return; } } var diffOptions = _this.getDiffOptions(options.variables); var diff = cache.diff(diffOptions); if (!_this.stopped) { _this.updateWatch(options.variables); } _this.updateLastDiff(diff, diffOptions); if (diff.complete) { result.data = diff.result; } }); } else { this.lastWrite = void 0; } } }; QueryInfo.prototype.markReady = function () { this.networkError = null; return this.networkStatus = NetworkStatus.ready; }; QueryInfo.prototype.markError = function (error) { this.networkStatus = NetworkStatus.error; this.lastWrite = void 0; this.reset(); if (error.graphQLErrors) { this.graphQLErrors = error.graphQLErrors; } if (error.networkError) { this.networkError = error.networkError; } return error; }; return QueryInfo; }()); export { QueryInfo }; export function shouldWriteResult(result, errorPolicy) { if (errorPolicy === void 0) { errorPolicy = "none"; } var ignoreErrors = errorPolicy === "ignore" || errorPolicy === "all"; var writeWithErrors = !graphQLResultHasError(result); if (!writeWithErrors && ignoreErrors && result.data) { writeWithErrors = true; } return writeWithErrors; } //# sourceMappingURL=QueryInfo.js.map