node_modules.graphql.error.printError.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-client-maven-plugin Show documentation
Show all versions of apollo-client-maven-plugin Show documentation
Maven plugin for generating graphql clients
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.printError = printError;
var _location = require('../language/location');
/**
* Prints a GraphQLError to a string, representing useful location information
* about the error's position in the source.
*/
function printError(error) {
var printedLocations = [];
if (error.nodes) {
error.nodes.forEach(function (node) {
if (node.loc) {
printedLocations.push(highlightSourceAtLocation(node.loc.source, (0, _location.getLocation)(node.loc.source, node.loc.start)));
}
});
} else if (error.source && error.locations) {
var source = error.source;
error.locations.forEach(function (location) {
printedLocations.push(highlightSourceAtLocation(source, location));
});
}
return printedLocations.length === 0 ? error.message : [error.message].concat(printedLocations).join('\n\n') + '\n';
}
/**
* Render a helpful description of the location of the error in the GraphQL
* Source document.
*/
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* strict
*/
function highlightSourceAtLocation(source, location) {
var line = location.line;
var lineOffset = source.locationOffset.line - 1;
var columnOffset = getColumnOffset(source, location);
var contextLine = line + lineOffset;
var contextColumn = location.column + columnOffset;
var prevLineNum = (contextLine - 1).toString();
var lineNum = contextLine.toString();
var nextLineNum = (contextLine + 1).toString();
var padLen = nextLineNum.length;
var lines = source.body.split(/\r\n|[\n\r]/g);
lines[0] = whitespace(source.locationOffset.column - 1) + lines[0];
var outputLines = [source.name + ' (' + contextLine + ':' + contextColumn + ')', line >= 2 && lpad(padLen, prevLineNum) + ': ' + lines[line - 2], lpad(padLen, lineNum) + ': ' + lines[line - 1], whitespace(2 + padLen + contextColumn - 1) + '^', line < lines.length && lpad(padLen, nextLineNum) + ': ' + lines[line]];
return outputLines.filter(Boolean).join('\n');
}
function getColumnOffset(source, location) {
return location.line === 1 ? source.locationOffset.column - 1 : 0;
}
function whitespace(len) {
return Array(len + 1).join(' ');
}
function lpad(len, str) {
return whitespace(len - str.length) + str;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy