UNPKG

@dillonkearns/elm-graphql

Version:

<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">

284 lines (233 loc) 8.77 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.printSchema = printSchema; exports.printIntrospectionSchema = printIntrospectionSchema; exports.printType = printType; var _invariant = require('../jsutils/invariant'); var _invariant2 = _interopRequireDefault(_invariant); var _isNullish = require('../jsutils/isNullish'); var _isNullish2 = _interopRequireDefault(_isNullish); var _isInvalid = require('../jsutils/isInvalid'); var _isInvalid2 = _interopRequireDefault(_isInvalid); var _astFromValue = require('../utilities/astFromValue'); var _printer = require('../language/printer'); var _definition = require('../type/definition'); var _scalars = require('../type/scalars'); var _directives = require('../type/directives'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * 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. * * */ function printSchema(schema) { return printFilteredSchema(schema, function (n) { return !isSpecDirective(n); }, isDefinedType); } function printIntrospectionSchema(schema) { return printFilteredSchema(schema, isSpecDirective, isIntrospectionType); } function isSpecDirective(directiveName) { return directiveName === 'skip' || directiveName === 'include' || directiveName === 'deprecated'; } function isDefinedType(typename) { return !isIntrospectionType(typename) && !isBuiltInScalar(typename); } function isIntrospectionType(typename) { return typename.indexOf('__') === 0; } function isBuiltInScalar(typename) { return typename === 'String' || typename === 'Boolean' || typename === 'Int' || typename === 'Float' || typename === 'ID'; } function printFilteredSchema(schema, directiveFilter, typeFilter) { var directives = schema.getDirectives().filter(function (directive) { return directiveFilter(directive.name); }); var typeMap = schema.getTypeMap(); var types = Object.keys(typeMap).filter(typeFilter).sort(function (name1, name2) { return name1.localeCompare(name2); }).map(function (typeName) { return typeMap[typeName]; }); return [printSchemaDefinition(schema)].concat(directives.map(printDirective), types.map(printType)).filter(Boolean).join('\n\n') + '\n'; } function printSchemaDefinition(schema) { if (isSchemaOfCommonNames(schema)) { return; } var operationTypes = []; var queryType = schema.getQueryType(); if (queryType) { operationTypes.push(' query: ' + queryType.name); } var mutationType = schema.getMutationType(); if (mutationType) { operationTypes.push(' mutation: ' + mutationType.name); } var subscriptionType = schema.getSubscriptionType(); if (subscriptionType) { operationTypes.push(' subscription: ' + subscriptionType.name); } return 'schema {\n' + operationTypes.join('\n') + '\n}'; } /** * GraphQL schema define root types for each type of operation. These types are * the same as any other type and can be named in any manner, however there is * a common naming convention: * * schema { * query: Query * mutation: Mutation * } * * When using this naming convention, the schema description can be omitted. */ function isSchemaOfCommonNames(schema) { var queryType = schema.getQueryType(); if (queryType && queryType.name !== 'Query') { return false; } var mutationType = schema.getMutationType(); if (mutationType && mutationType.name !== 'Mutation') { return false; } var subscriptionType = schema.getSubscriptionType(); if (subscriptionType && subscriptionType.name !== 'Subscription') { return false; } return true; } function printType(type) { if (type instanceof _definition.GraphQLScalarType) { return printScalar(type); } else if (type instanceof _definition.GraphQLObjectType) { return printObject(type); } else if (type instanceof _definition.GraphQLInterfaceType) { return printInterface(type); } else if (type instanceof _definition.GraphQLUnionType) { return printUnion(type); } else if (type instanceof _definition.GraphQLEnumType) { return printEnum(type); } !(type instanceof _definition.GraphQLInputObjectType) ? (0, _invariant2.default)(0) : void 0; return printInputObject(type); } function printScalar(type) { return printDescription(type) + ('scalar ' + type.name); } function printObject(type) { var interfaces = type.getInterfaces(); var implementedInterfaces = interfaces.length ? ' implements ' + interfaces.map(function (i) { return i.name; }).join(', ') : ''; return printDescription(type) + ('type ' + type.name + implementedInterfaces + ' {\n') + printFields(type) + '\n' + '}'; } function printInterface(type) { return printDescription(type) + ('interface ' + type.name + ' {\n') + printFields(type) + '\n' + '}'; } function printUnion(type) { return printDescription(type) + ('union ' + type.name + ' = ' + type.getTypes().join(' | ')); } function printEnum(type) { return printDescription(type) + ('enum ' + type.name + ' {\n') + printEnumValues(type.getValues()) + '\n' + '}'; } function printEnumValues(values) { return values.map(function (value, i) { return printDescription(value, ' ', !i) + ' ' + value.name + printDeprecated(value); }).join('\n'); } function printInputObject(type) { var fieldMap = type.getFields(); var fields = Object.keys(fieldMap).map(function (fieldName) { return fieldMap[fieldName]; }); return printDescription(type) + ('input ' + type.name + ' {\n') + fields.map(function (f, i) { return printDescription(f, ' ', !i) + ' ' + printInputValue(f); }).join('\n') + '\n' + '}'; } function printFields(type) { var fieldMap = type.getFields(); var fields = Object.keys(fieldMap).map(function (fieldName) { return fieldMap[fieldName]; }); return fields.map(function (f, i) { return printDescription(f, ' ', !i) + ' ' + f.name + printArgs(f.args, ' ') + ': ' + String(f.type) + printDeprecated(f); }).join('\n'); } function printArgs(args) { var indentation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; if (args.length === 0) { return ''; } // If every arg does not have a description, print them on one line. if (args.every(function (arg) { return !arg.description; })) { return '(' + args.map(printInputValue).join(', ') + ')'; } return '(\n' + args.map(function (arg, i) { return printDescription(arg, ' ' + indentation, !i) + ' ' + indentation + printInputValue(arg); }).join('\n') + '\n' + indentation + ')'; } function printInputValue(arg) { var argDecl = arg.name + ': ' + String(arg.type); if (!(0, _isInvalid2.default)(arg.defaultValue)) { argDecl += ' = ' + (0, _printer.print)((0, _astFromValue.astFromValue)(arg.defaultValue, arg.type)); } return argDecl; } function printDirective(directive) { return printDescription(directive) + 'directive @' + directive.name + printArgs(directive.args) + ' on ' + directive.locations.join(' | '); } function printDeprecated(fieldOrEnumVal) { var reason = fieldOrEnumVal.deprecationReason; if ((0, _isNullish2.default)(reason)) { return ''; } if (reason === '' || reason === _directives.DEFAULT_DEPRECATION_REASON) { return ' @deprecated'; } return ' @deprecated(reason: ' + (0, _printer.print)((0, _astFromValue.astFromValue)(reason, _scalars.GraphQLString)) + ')'; } function printDescription(def) { var indentation = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; var firstInBlock = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; if (!def.description) { return ''; } var lines = def.description.split('\n'); var description = indentation && !firstInBlock ? '\n' : ''; for (var i = 0; i < lines.length; i++) { if (lines[i] === '') { description += indentation + '#\n'; } else { // For > 120 character long lines, cut at space boundaries into sublines // of ~80 chars. var sublines = breakLine(lines[i], 120 - indentation.length); for (var j = 0; j < sublines.length; j++) { description += indentation + '# ' + sublines[j] + '\n'; } } } return description; } function breakLine(line, len) { if (line.length < len + 5) { return [line]; } var parts = line.split(new RegExp('((?: |^).{15,' + (len - 40) + '}(?= |$))')); if (parts.length < 4) { return [line]; } var sublines = [parts[0] + parts[1] + parts[2]]; for (var i = 3; i < parts.length; i += 2) { sublines.push(parts[i].slice(1) + parts[i + 1]); } return sublines; }