UNPKG

@graphql-codegen/visitor-plugin-common

Version:
146 lines (145 loc) 6.59 kB
import autoBind from 'auto-bind'; import { pascalCase } from 'change-case-all'; import { BaseVisitor } from './base-visitor.js'; import { DEFAULT_SCALARS } from './scalars.js'; import { buildScalarsFromConfig, DeclarationBlock, getConfigValue } from './utils.js'; import { OperationVariablesToObject } from './variables-to-object.js'; function getRootType(operation, schema) { switch (operation) { case 'query': return schema.getQueryType(); case 'mutation': return schema.getMutationType(); case 'subscription': return schema.getSubscriptionType(); } throw new Error(`Unknown operation type: ${operation}`); } export class BaseDocumentsVisitor extends BaseVisitor { constructor(rawConfig, additionalConfig, _schema, defaultScalars = DEFAULT_SCALARS) { super(rawConfig, { exportFragmentSpreadSubTypes: getConfigValue(rawConfig.exportFragmentSpreadSubTypes, false), enumPrefix: getConfigValue(rawConfig.enumPrefix, true), enumSuffix: getConfigValue(rawConfig.enumSuffix, true), preResolveTypes: getConfigValue(rawConfig.preResolveTypes, true), dedupeOperationSuffix: getConfigValue(rawConfig.dedupeOperationSuffix, false), omitOperationSuffix: getConfigValue(rawConfig.omitOperationSuffix, false), skipTypeNameForRoot: getConfigValue(rawConfig.skipTypeNameForRoot, false), namespacedImportName: getConfigValue(rawConfig.namespacedImportName, null), experimentalFragmentVariables: getConfigValue(rawConfig.experimentalFragmentVariables, false), addTypename: !rawConfig.skipTypename, globalNamespace: !!rawConfig.globalNamespace, operationResultSuffix: getConfigValue(rawConfig.operationResultSuffix, ''), scalars: buildScalarsFromConfig(_schema, rawConfig, defaultScalars), ...(additionalConfig || {}), }); this._schema = _schema; this._unnamedCounter = 1; this._globalDeclarations = new Set(); autoBind(this); this._variablesTransfomer = new OperationVariablesToObject(this.scalars, this.convertName, this.config.namespacedImportName); } getGlobalDeclarations(noExport = false) { return Array.from(this._globalDeclarations).map(t => (noExport ? t : `export ${t}`)); } setSelectionSetHandler(handler) { this._selectionSetToObject = handler; } setDeclarationBlockConfig(config) { this._declarationBlockConfig = config; } setVariablesTransformer(variablesTransfomer) { this._variablesTransfomer = variablesTransfomer; } get schema() { return this._schema; } get addTypename() { return this._parsedConfig.addTypename; } handleAnonymousOperation(node) { const name = node.name?.value; if (name) { return this.convertName(name, { useTypesPrefix: false, useTypesSuffix: false, }); } return this.convertName(String(this._unnamedCounter++), { prefix: 'Unnamed_', suffix: '_', useTypesPrefix: false, useTypesSuffix: false, }); } FragmentDefinition(node) { const fragmentRootType = this._schema.getType(node.typeCondition.name.value); const selectionSet = this._selectionSetToObject.createNext(fragmentRootType, node.selectionSet); const fragmentSuffix = this.getFragmentSuffix(node); return [ selectionSet.transformFragmentSelectionSetToTypes(node.name.value, fragmentSuffix, this._declarationBlockConfig), this.config.experimentalFragmentVariables ? new DeclarationBlock({ ...this._declarationBlockConfig, blockTransformer: t => this.applyVariablesWrapper(t), }) .export() .asKind('type') .withName(this.convertName(node.name.value, { suffix: fragmentSuffix + 'Variables', })) .withBlock(this._variablesTransfomer.transform(node.variableDefinitions)).string : undefined, ] .filter(r => r) .join('\n\n'); } applyVariablesWrapper(variablesBlock) { return variablesBlock; } OperationDefinition(node) { const name = this.handleAnonymousOperation(node); const operationRootType = getRootType(node.operation, this._schema); if (!operationRootType) { throw new Error(`Unable to find root schema type for operation type "${node.operation}"!`); } const selectionSet = this._selectionSetToObject.createNext(operationRootType, node.selectionSet); const visitedOperationVariables = this._variablesTransfomer.transform(node.variableDefinitions); const operationType = pascalCase(node.operation); const operationTypeSuffix = this.getOperationSuffix(name, operationType); const selectionSetObjects = selectionSet.transformSelectionSet(this.convertName(name, { suffix: operationTypeSuffix, })); const operationResult = new DeclarationBlock(this._declarationBlockConfig) .export() .asKind('type') .withName(this.convertName(name, { suffix: operationTypeSuffix + this._parsedConfig.operationResultSuffix, })) .withContent(selectionSetObjects.mergedTypeString).string; const operationVariables = new DeclarationBlock({ ...this._declarationBlockConfig, blockTransformer: t => this.applyVariablesWrapper(t), }) .export() .asKind('type') .withName(this.convertName(name, { suffix: operationTypeSuffix + 'Variables', })) .withBlock(visitedOperationVariables).string; const dependentTypesContent = this._parsedConfig.extractAllFieldsToTypes ? selectionSetObjects.dependentTypes.map(i => new DeclarationBlock(this._declarationBlockConfig) .export() .asKind('type') .withName(i.name) .withContent(i.content).string) : []; return [ ...(dependentTypesContent.length > 0 ? [dependentTypesContent.join('\n')] : []), operationVariables, operationResult, ] .filter(r => r) .join('\n\n'); } }