Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 49x 49x 49x 37x 37x 37x 37x 31x 31x 6x 6x 3x 49x 37x 37x 37x 4x 4x 1x 3x 4x 37x 49x 37x 22x 49x 31x 1x 30x 30x 30x 30x 16x 14x 49x 6x 1x 5x 5x 5x 4x 1x 49x 37x 37x 49x 35x 49x 53x 53x 49x 49x 49x 45x 45x 45x 27x 40x 27x 6x 27x 13x 13x 13x 4x 9x 1x 1x 27x 96x 96x 96x 96x 27x 27x 27x | var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; import * as React from 'react'; import * as PropTypes from 'prop-types'; var invariant = require('invariant'); var shallowEqual = require('fbjs/lib/shallowEqual'); import { parser, DocumentType } from './parser'; var initialState = { loading: false, called: false, error: undefined, data: undefined, }; var Mutation = (function (_super) { __extends(Mutation, _super); function Mutation(props, context) { var _this = _super.call(this, props, context) || this; _this.hasMounted = false; _this.runMutation = function (options) { if (options === void 0) { options = {}; } _this.onMutationStart(); var mutationId = _this.generateNewMutationId(); return _this.mutate(options) .then(function (response) { _this.onMutationCompleted(response, mutationId); return response; }) .catch(function (e) { _this.onMutationError(e, mutationId); if (!_this.props.onError) throw e; }); }; _this.mutate = function (options) { var _a = _this.props, mutation = _a.mutation, variables = _a.variables, optimisticResponse = _a.optimisticResponse, update = _a.update, _b = _a.context, context = _b === void 0 ? {} : _b; var refetchQueries = options.refetchQueries || _this.props.refetchQueries; if (refetchQueries && refetchQueries.length && Array.isArray(refetchQueries)) { refetchQueries = refetchQueries.map(function (x) { if (typeof x === 'string' && _this.context.operations) return _this.context.operations.get(x) || x; return x; }); delete options.refetchQueries; } return _this.client.mutate(__assign({ mutation: mutation, variables: variables, optimisticResponse: optimisticResponse, refetchQueries: refetchQueries, update: update, context: context }, options)); }; _this.onMutationStart = function () { if (!_this.state.loading && !_this.props.ignoreResults) { _this.setState({ loading: true, error: undefined, data: undefined, called: true, }); } }; _this.onMutationCompleted = function (response, mutationId) { if (_this.hasMounted === false) { return; } var _a = _this.props, onCompleted = _a.onCompleted, ignoreResults = _a.ignoreResults; var data = response.data; var callOncomplete = function () { return (onCompleted ? onCompleted(data) : null); }; if (_this.isMostRecentMutation(mutationId) && !ignoreResults) { _this.setState({ loading: false, data: data }, callOncomplete); } else { callOncomplete(); } }; _this.onMutationError = function (error, mutationId) { if (_this.hasMounted === false) { return; } var onError = _this.props.onError; var callOnError = function () { return (onError ? onError(error) : null); }; if (_this.isMostRecentMutation(mutationId)) { _this.setState({ loading: false, error: error }, callOnError); } else { callOnError(); } }; _this.generateNewMutationId = function () { _this.mostRecentMutationId = _this.mostRecentMutationId + 1; return _this.mostRecentMutationId; }; _this.isMostRecentMutation = function (mutationId) { return _this.mostRecentMutationId === mutationId; }; _this.verifyDocumentIsMutation = function (mutation) { var operation = parser(mutation); invariant(operation.type === DocumentType.Mutation, "The <Mutation /> component requires a graphql mutation, but got a " + (operation.type === DocumentType.Query ? 'query' : 'subscription') + "."); }; _this.client = props.client || context.client; invariant(!!_this.client, 'Could not find "client" in the context or props of Mutation. Wrap ' + 'the root component in an <ApolloProvider>, or pass an ApolloClient ' + 'instance in via props.'); _this.verifyDocumentIsMutation(props.mutation); _this.mostRecentMutationId = 0; _this.state = initialState; return _this; } Mutation.prototype.componentDidMount = function () { this.hasMounted = true; }; Mutation.prototype.componentWillUnmount = function () { this.hasMounted = false; }; Mutation.prototype.componentWillReceiveProps = function (nextProps, nextContext) { var client = nextProps.client; Iif (shallowEqual(this.props, nextProps) && (this.client === client || this.client === nextContext.client)) { return; } if (this.props.mutation !== nextProps.mutation) { this.verifyDocumentIsMutation(nextProps.mutation); } if (this.client !== client && this.client !== nextContext.client) { this.client = client || nextContext.client; this.setState(initialState); } }; Mutation.prototype.render = function () { var children = this.props.children; var _a = this.state, loading = _a.loading, data = _a.data, error = _a.error, called = _a.called; var result = { called: called, loading: loading, data: data, error: error, client: this.client, }; return children(this.runMutation, result); }; Mutation.contextTypes = { client: PropTypes.object.isRequired, operations: PropTypes.object, }; Mutation.propTypes = { mutation: PropTypes.object.isRequired, variables: PropTypes.object, optimisticResponse: PropTypes.object, refetchQueries: PropTypes.oneOfType([ PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.string, PropTypes.object])), PropTypes.func, ]), update: PropTypes.func, children: PropTypes.func.isRequired, onCompleted: PropTypes.func, onError: PropTypes.func, }; return Mutation; }(React.Component)); export default Mutation; //# sourceMappingURL=Mutation.js.map |