/** * 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 */ import { getLocation } from '../language/location'; /** * Prints a GraphQLError to a string, representing useful location information * about the error's position in the source. */ export function printError(error) { var printedLocations = []; if (error.nodes) { error.nodes.forEach(function (node) { if (node.loc) { printedLocations.push(highlightSourceAtLocation(node.loc.source, 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. */ 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; }