UNPKG

@graphql-codegen/core

Version:

<p align="center"> <img src="https://github.com/dotansimha/graphql-code-generator/blob/master/logo.png?raw=true" /> </p>

43 lines (40 loc) 1.95 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.executePlugin = void 0; const plugin_helpers_1 = require("@graphql-codegen/plugin-helpers"); const graphql_1 = require("graphql"); async function executePlugin(options, plugin) { var _a; if (!plugin || !plugin.plugin || typeof plugin.plugin !== 'function') { throw new Error(`Invalid Custom Plugin "${options.name}" \n Plugin ${options.name} does not export a valid JS object with "plugin" function. Make sure your custom plugin is written in the following form: module.exports = { plugin: (schema, documents, config) => { return 'my-custom-plugin-content'; }, }; `); } const outputSchema = options.schemaAst || (0, graphql_1.buildASTSchema)(options.schema, options.config); const documents = options.documents || []; const pluginContext = options.pluginContext || {}; const profiler = (_a = options.profiler) !== null && _a !== void 0 ? _a : (0, plugin_helpers_1.createNoopProfiler)(); if (plugin.validate && typeof plugin.validate === 'function') { try { // FIXME: Sync validate signature with plugin signature await profiler.run(async () => plugin.validate(outputSchema, documents, options.config, options.outputFilename, options.allPlugins, pluginContext), `Plugin ${options.name} validate`); } catch (e) { throw new Error(`Plugin "${options.name}" validation failed: \n ${e.message} `); } } return profiler.run(() => Promise.resolve(plugin.plugin(outputSchema, documents, typeof options.config === 'object' ? { ...options.config } : options.config, { outputFile: options.outputFilename, allPlugins: options.allPlugins, pluginContext, })), `Plugin ${options.name} execution`); } exports.executePlugin = executePlugin;