@mo36924/babel-plugin-graphql-tagged-template 1.5.1 → 1.5.22

Sign up to get free protection for your applications and to get access to all the features.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 mo36924
3
+ Copyright (c) 2022 mo36924
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/dist/index.cjs CHANGED
@@ -1,40 +1,85 @@
1
1
  'use strict';
2
2
 
3
- var fs = require('fs');
4
- var base52 = require('@mo36924/base52');
5
- var graphqlSchema = require('@mo36924/graphql-schema');
6
- var graphql = require('graphql');
3
+ const graphqlBuild = require('@mo36924/graphql-build');
4
+ const graphqlConfig = require('@mo36924/graphql-config');
5
+ const graphqlModel = require('@mo36924/graphql-model');
6
+ const graphql = require('graphql');
7
7
 
8
- var index = ({ types: t }, options) => {
9
- let schema;
10
- if (options.model) {
11
- const model = fs.readFileSync(options.model || "index.graphql", "utf8");
12
- schema = graphqlSchema.buildSchemaModel(model);
13
- }
14
- else if (typeof options.schema === "string") {
15
- const graphqlSchema$1 = fs.readFileSync(options.schema || "index.graphql", "utf8");
16
- schema = graphqlSchema.buildSchema(graphqlSchema$1);
17
- }
18
- else if (options.schema) {
19
- schema = options.schema;
8
+ let _schema;
9
+ const index = ({ types: t }, options) => {
10
+ const clientTag = "@mo36924/graphql-client-tag";
11
+ const hooksTag = "@mo36924/graphql-hooks-tag";
12
+ const client = options.client ?? "fetch";
13
+ let parseQuery = false;
14
+ let clientModule = "@mo36924/graphql-fetch-client";
15
+ let hooksModule = "@mo36924/graphql-fetch-hooks";
16
+ if (client === "postgres") {
17
+ parseQuery = true;
18
+ clientModule = "@mo36924/graphql-postgres-client";
19
+ hooksModule = "@mo36924/graphql-postgres-hooks";
20
20
  }
21
+ let schema = options.schema
22
+ ? typeof options.schema === "object"
23
+ ? options.schema
24
+ : graphql.buildSchema(options.schema)
25
+ : options.model
26
+ ? typeof options.model === "object"
27
+ ? graphqlBuild.buildASTSchema(options.model)
28
+ : graphqlModel.buildModel(options.model).schema
29
+ : (_schema ||= graphqlConfig.config().schema);
21
30
  return {
31
+ name: "graphql-tagged-template",
22
32
  visitor: {
33
+ ImportDeclaration(path) {
34
+ if (path.node.source.value === clientTag) {
35
+ path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(clientModule)));
36
+ }
37
+ else if (path.node.source.value === hooksTag) {
38
+ path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(hooksModule)));
39
+ }
40
+ },
41
+ ExportAllDeclaration(path) {
42
+ if (path.node.source.value === clientTag) {
43
+ path.replaceWith(t.exportAllDeclaration(t.stringLiteral(clientModule)));
44
+ }
45
+ else if (path.node.source.value === hooksTag) {
46
+ path.replaceWith(t.exportAllDeclaration(t.stringLiteral(hooksModule)));
47
+ }
48
+ },
49
+ ExportNamedDeclaration(path) {
50
+ if (path.node.source && path.node.source.value === clientTag) {
51
+ path.replaceWith(t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(clientModule)));
52
+ }
53
+ else if (path.node.source && path.node.source.value === hooksTag) {
54
+ path.replaceWith(t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(hooksModule)));
55
+ }
56
+ },
23
57
  TaggedTemplateExpression(path) {
24
58
  const { tag, quasi: { quasis, expressions }, } = path.node;
25
59
  if (!t.isIdentifier(tag)) {
26
60
  return;
27
61
  }
28
62
  const name = tag.name;
29
- if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
30
- return;
63
+ let operation = "";
64
+ switch (name) {
65
+ case "gql":
66
+ case "query":
67
+ case "useQuery":
68
+ break;
69
+ case "mutation":
70
+ case "useMutation":
71
+ operation = "mutation";
72
+ break;
73
+ case "subscription":
74
+ case "useSubscription":
75
+ operation = "subscription";
76
+ break;
77
+ default:
78
+ return;
31
79
  }
32
- let query = quasis[0].value.cooked ?? quasis[0].value.raw;
80
+ let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);
33
81
  for (let i = 0; i < expressions.length; i++) {
34
- query += `$${base52.encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
35
- }
36
- if (name === "mutation" || name === "subscription") {
37
- query = name + query;
82
+ query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
38
83
  }
39
84
  let documentNode;
40
85
  try {
@@ -51,16 +96,16 @@ var index = ({ types: t }, options) => {
51
96
  },
52
97
  }));
53
98
  if (values.length) {
54
- const variables = `(${values.map((value, i) => `$${base52.encode(i)}:${value}`).join()})`;
55
- if (name === "query") {
56
- query = name + variables + query;
99
+ const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;
100
+ if (operation) {
101
+ query = operation + variables + query.slice(operation.length);
57
102
  }
58
- else if (name === "mutation" || name === "subscription") {
59
- query = name + variables + query.slice(name.length);
103
+ else if (name !== "gql") {
104
+ query = "query" + variables + query;
60
105
  }
61
106
  }
62
107
  try {
63
- documentNode = graphql.parse(query);
108
+ documentNode = graphql.parse(query, { noLocation: true });
64
109
  }
65
110
  catch (err) {
66
111
  throw path.buildCodeFrameError(String(err));
@@ -69,11 +114,21 @@ var index = ({ types: t }, options) => {
69
114
  if (errors.length) {
70
115
  throw path.buildCodeFrameError(errors[0].message);
71
116
  }
72
- const args = [t.stringLiteral(graphql.stripIgnoredCharacters(query))];
117
+ const properties = [];
118
+ if (parseQuery) {
119
+ const id = path.scope.generateUid("gql");
120
+ path.scope.getProgramParent().push({ kind: "let", id: t.identifier(id) });
121
+ properties.push(t.objectProperty(t.identifier("document"), t.assignmentExpression("||=", t.identifier(id), t.callExpression(t.memberExpression(t.identifier("JSON"), t.identifier("parse")), [
122
+ t.stringLiteral(JSON.stringify(documentNode)),
123
+ ]))));
124
+ }
125
+ else {
126
+ properties.push(t.objectProperty(t.identifier("query"), t.stringLiteral(graphql.stripIgnoredCharacters(query))));
127
+ }
73
128
  if (expressions.length) {
74
- args.push(t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier(base52.encode(i)), expression))));
129
+ properties.push(t.objectProperty(t.identifier("variables"), t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier("_" + i), expression)))));
75
130
  }
76
- path.replaceWith(t.callExpression(t.identifier(name), args));
131
+ path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));
77
132
  },
78
133
  },
79
134
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { default as babel, PluginObj, types as t } from \"@babel/core\";\nimport { encode } from \"@mo36924/base52\";\nimport { buildSchema, buildSchemaModel } from \"@mo36924/graphql-schema\";\nimport {\n DocumentNode,\n GraphQLInputType,\n GraphQLSchema,\n parse,\n stripIgnoredCharacters,\n TypeInfo,\n validate,\n visit,\n visitWithTypeInfo,\n} from \"graphql\";\n\nexport type Options = {\n model: string;\n schema: string | GraphQLSchema;\n};\n\nexport default ({ types: t }: typeof babel, options: Options): PluginObj => {\n let schema: GraphQLSchema;\n\n if (options.model) {\n const model = readFileSync(options.model || \"index.graphql\", \"utf8\");\n schema = buildSchemaModel(model);\n } else if (typeof options.schema === \"string\") {\n const graphqlSchema = readFileSync(options.schema || \"index.graphql\", \"utf8\");\n schema = buildSchema(graphqlSchema);\n } else if (options.schema) {\n schema = options.schema;\n }\n\n return {\n visitor: {\n TaggedTemplateExpression(path) {\n const {\n tag,\n quasi: { quasis, expressions },\n } = path.node;\n\n if (!t.isIdentifier(tag)) {\n return;\n }\n\n const name = tag.name;\n\n if (name !== \"gql\" && name !== \"query\" && name !== \"mutation\" && name !== \"subscription\") {\n return;\n }\n\n let query = quasis[0].value.cooked ?? quasis[0].value.raw;\n\n for (let i = 0; i < expressions.length; i++) {\n query += `$${encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;\n }\n\n if (name === \"mutation\" || name === \"subscription\") {\n query = name + query;\n }\n\n let documentNode: DocumentNode;\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const values: GraphQLInputType[] = [];\n const typeInfo = new TypeInfo(schema);\n\n visit(\n documentNode,\n visitWithTypeInfo(typeInfo, {\n Variable() {\n values.push(typeInfo.getInputType()!);\n },\n }),\n );\n\n if (values.length) {\n const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;\n\n if (name === \"query\") {\n query = name + variables + query;\n } else if (name === \"mutation\" || name === \"subscription\") {\n query = name + variables + query.slice(name.length);\n }\n }\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const errors = validate(schema, documentNode);\n\n if (errors.length) {\n throw path.buildCodeFrameError(errors[0].message);\n }\n\n const args: t.Expression[] = [t.stringLiteral(stripIgnoredCharacters(query))];\n\n if (expressions.length) {\n args.push(\n t.objectExpression(\n expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression as any)),\n ),\n );\n }\n\n path.replaceWith(t.callExpression(t.identifier(name), args));\n },\n },\n };\n};\n"],"names":["readFileSync","buildSchemaModel","graphqlSchema","buildSchema","encode","parse","TypeInfo","visit","visitWithTypeInfo","validate","stripIgnoredCharacters"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import babel, { PluginObj, types as t } from \"@babel/core\";\nimport { buildASTSchema } from \"@mo36924/graphql-build\";\nimport { config } from \"@mo36924/graphql-config\";\nimport { buildModel } from \"@mo36924/graphql-model\";\nimport {\n DocumentNode,\n GraphQLInputType,\n GraphQLSchema,\n TypeInfo,\n buildSchema,\n parse,\n stripIgnoredCharacters,\n validate,\n visit,\n visitWithTypeInfo,\n} from \"graphql\";\n\nexport type Options = {\n client?: \"fetch\" | \"postgres\";\n model?: string | DocumentNode;\n schema?: string | GraphQLSchema;\n};\n\nlet _schema: GraphQLSchema;\n\nexport default ({ types: t }: typeof babel, options: Options): PluginObj => {\n const clientTag = \"@mo36924/graphql-client-tag\";\n const hooksTag = \"@mo36924/graphql-hooks-tag\";\n const client = options.client ?? \"fetch\";\n let parseQuery: boolean = false;\n let clientModule = \"@mo36924/graphql-fetch-client\";\n let hooksModule = \"@mo36924/graphql-fetch-hooks\";\n\n if (client === \"postgres\") {\n parseQuery = true;\n clientModule = \"@mo36924/graphql-postgres-client\";\n hooksModule = \"@mo36924/graphql-postgres-hooks\";\n }\n\n let schema = options.schema\n ? typeof options.schema === \"object\"\n ? options.schema\n : buildSchema(options.schema)\n : options.model\n ? typeof options.model === \"object\"\n ? buildASTSchema(options.model)\n : buildModel(options.model).schema\n : (_schema ||= config().schema);\n\n return {\n name: \"graphql-tagged-template\",\n visitor: {\n ImportDeclaration(path) {\n if (path.node.source.value === clientTag) {\n path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(clientModule)));\n } else if (path.node.source.value === hooksTag) {\n path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(hooksModule)));\n }\n },\n ExportAllDeclaration(path) {\n if (path.node.source.value === clientTag) {\n path.replaceWith(t.exportAllDeclaration(t.stringLiteral(clientModule)));\n } else if (path.node.source.value === hooksTag) {\n path.replaceWith(t.exportAllDeclaration(t.stringLiteral(hooksModule)));\n }\n },\n ExportNamedDeclaration(path) {\n if (path.node.source && path.node.source.value === clientTag) {\n path.replaceWith(\n t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(clientModule)),\n );\n } else if (path.node.source && path.node.source.value === hooksTag) {\n path.replaceWith(\n t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(hooksModule)),\n );\n }\n },\n TaggedTemplateExpression(path) {\n const {\n tag,\n quasi: { quasis, expressions },\n } = path.node;\n\n if (!t.isIdentifier(tag)) {\n return;\n }\n\n const name = tag.name;\n let operation = \"\";\n\n switch (name) {\n case \"gql\":\n case \"query\":\n case \"useQuery\":\n break;\n case \"mutation\":\n case \"useMutation\":\n operation = \"mutation\";\n break;\n case \"subscription\":\n case \"useSubscription\":\n operation = \"subscription\";\n break;\n default:\n return;\n }\n\n let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);\n\n for (let i = 0; i < expressions.length; i++) {\n query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;\n }\n\n let documentNode: DocumentNode;\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const values: GraphQLInputType[] = [];\n const typeInfo = new TypeInfo(schema);\n\n visit(\n documentNode,\n visitWithTypeInfo(typeInfo, {\n Variable() {\n values.push(typeInfo.getInputType()!);\n },\n }),\n );\n\n if (values.length) {\n const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;\n\n if (operation) {\n query = operation + variables + query.slice(operation.length);\n } else if (name !== \"gql\") {\n query = \"query\" + variables + query;\n }\n }\n\n try {\n documentNode = parse(query, { noLocation: true });\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const errors = validate(schema, documentNode);\n\n if (errors.length) {\n throw path.buildCodeFrameError(errors[0].message);\n }\n\n const properties: t.ObjectProperty[] = [];\n\n if (parseQuery) {\n const id = path.scope.generateUid(\"gql\");\n path.scope.getProgramParent().push({ kind: \"let\", id: t.identifier(id) });\n\n properties.push(\n t.objectProperty(\n t.identifier(\"document\"),\n t.assignmentExpression(\n \"||=\",\n t.identifier(id),\n t.callExpression(t.memberExpression(t.identifier(\"JSON\"), t.identifier(\"parse\")), [\n t.stringLiteral(JSON.stringify(documentNode)),\n ]),\n ),\n ),\n );\n } else {\n properties.push(t.objectProperty(t.identifier(\"query\"), t.stringLiteral(stripIgnoredCharacters(query))));\n }\n\n if (expressions.length) {\n properties.push(\n t.objectProperty(\n t.identifier(\"variables\"),\n t.objectExpression(\n expressions.map((expression, i) => t.objectProperty(t.identifier(\"_\" + i), expression as t.Expression)),\n ),\n ),\n );\n }\n\n path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));\n },\n },\n };\n};\n"],"names":["buildSchema","buildASTSchema","buildModel","config","parse","TypeInfo","visit","visitWithTypeInfo","validate","stripIgnoredCharacters"],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  import babel, { PluginObj } from '@babel/core';
2
- import { GraphQLSchema } from 'graphql';
2
+ import { DocumentNode, GraphQLSchema } from 'graphql';
3
3
 
4
4
  declare type Options = {
5
- model: string;
6
- schema: string | GraphQLSchema;
5
+ client?: "fetch" | "postgres";
6
+ model?: string | DocumentNode;
7
+ schema?: string | GraphQLSchema;
7
8
  };
8
9
  declare const _default: ({ types: t }: typeof babel, options: Options) => PluginObj;
9
10
 
package/dist/index.js CHANGED
@@ -1,38 +1,83 @@
1
- import { readFileSync } from 'fs';
2
- import { encode } from '@mo36924/base52';
3
- import { buildSchemaModel, buildSchema } from '@mo36924/graphql-schema';
4
- import { parse, TypeInfo, visit, visitWithTypeInfo, validate, stripIgnoredCharacters } from 'graphql';
1
+ import { buildASTSchema } from '@mo36924/graphql-build';
2
+ import { config } from '@mo36924/graphql-config';
3
+ import { buildModel } from '@mo36924/graphql-model';
4
+ import { buildSchema, parse, TypeInfo, visit, visitWithTypeInfo, validate, stripIgnoredCharacters } from 'graphql';
5
5
 
6
- var index = ({ types: t }, options) => {
7
- let schema;
8
- if (options.model) {
9
- const model = readFileSync(options.model || "index.graphql", "utf8");
10
- schema = buildSchemaModel(model);
11
- }
12
- else if (typeof options.schema === "string") {
13
- const graphqlSchema = readFileSync(options.schema || "index.graphql", "utf8");
14
- schema = buildSchema(graphqlSchema);
15
- }
16
- else if (options.schema) {
17
- schema = options.schema;
6
+ let _schema;
7
+ const index = ({ types: t }, options) => {
8
+ const clientTag = "@mo36924/graphql-client-tag";
9
+ const hooksTag = "@mo36924/graphql-hooks-tag";
10
+ const client = options.client ?? "fetch";
11
+ let parseQuery = false;
12
+ let clientModule = "@mo36924/graphql-fetch-client";
13
+ let hooksModule = "@mo36924/graphql-fetch-hooks";
14
+ if (client === "postgres") {
15
+ parseQuery = true;
16
+ clientModule = "@mo36924/graphql-postgres-client";
17
+ hooksModule = "@mo36924/graphql-postgres-hooks";
18
18
  }
19
+ let schema = options.schema
20
+ ? typeof options.schema === "object"
21
+ ? options.schema
22
+ : buildSchema(options.schema)
23
+ : options.model
24
+ ? typeof options.model === "object"
25
+ ? buildASTSchema(options.model)
26
+ : buildModel(options.model).schema
27
+ : (_schema ||= config().schema);
19
28
  return {
29
+ name: "graphql-tagged-template",
20
30
  visitor: {
31
+ ImportDeclaration(path) {
32
+ if (path.node.source.value === clientTag) {
33
+ path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(clientModule)));
34
+ }
35
+ else if (path.node.source.value === hooksTag) {
36
+ path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(hooksModule)));
37
+ }
38
+ },
39
+ ExportAllDeclaration(path) {
40
+ if (path.node.source.value === clientTag) {
41
+ path.replaceWith(t.exportAllDeclaration(t.stringLiteral(clientModule)));
42
+ }
43
+ else if (path.node.source.value === hooksTag) {
44
+ path.replaceWith(t.exportAllDeclaration(t.stringLiteral(hooksModule)));
45
+ }
46
+ },
47
+ ExportNamedDeclaration(path) {
48
+ if (path.node.source && path.node.source.value === clientTag) {
49
+ path.replaceWith(t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(clientModule)));
50
+ }
51
+ else if (path.node.source && path.node.source.value === hooksTag) {
52
+ path.replaceWith(t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(hooksModule)));
53
+ }
54
+ },
21
55
  TaggedTemplateExpression(path) {
22
56
  const { tag, quasi: { quasis, expressions }, } = path.node;
23
57
  if (!t.isIdentifier(tag)) {
24
58
  return;
25
59
  }
26
60
  const name = tag.name;
27
- if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
28
- return;
61
+ let operation = "";
62
+ switch (name) {
63
+ case "gql":
64
+ case "query":
65
+ case "useQuery":
66
+ break;
67
+ case "mutation":
68
+ case "useMutation":
69
+ operation = "mutation";
70
+ break;
71
+ case "subscription":
72
+ case "useSubscription":
73
+ operation = "subscription";
74
+ break;
75
+ default:
76
+ return;
29
77
  }
30
- let query = quasis[0].value.cooked ?? quasis[0].value.raw;
78
+ let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);
31
79
  for (let i = 0; i < expressions.length; i++) {
32
- query += `$${encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
33
- }
34
- if (name === "mutation" || name === "subscription") {
35
- query = name + query;
80
+ query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
36
81
  }
37
82
  let documentNode;
38
83
  try {
@@ -49,16 +94,16 @@ var index = ({ types: t }, options) => {
49
94
  },
50
95
  }));
51
96
  if (values.length) {
52
- const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;
53
- if (name === "query") {
54
- query = name + variables + query;
97
+ const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;
98
+ if (operation) {
99
+ query = operation + variables + query.slice(operation.length);
55
100
  }
56
- else if (name === "mutation" || name === "subscription") {
57
- query = name + variables + query.slice(name.length);
101
+ else if (name !== "gql") {
102
+ query = "query" + variables + query;
58
103
  }
59
104
  }
60
105
  try {
61
- documentNode = parse(query);
106
+ documentNode = parse(query, { noLocation: true });
62
107
  }
63
108
  catch (err) {
64
109
  throw path.buildCodeFrameError(String(err));
@@ -67,11 +112,21 @@ var index = ({ types: t }, options) => {
67
112
  if (errors.length) {
68
113
  throw path.buildCodeFrameError(errors[0].message);
69
114
  }
70
- const args = [t.stringLiteral(stripIgnoredCharacters(query))];
115
+ const properties = [];
116
+ if (parseQuery) {
117
+ const id = path.scope.generateUid("gql");
118
+ path.scope.getProgramParent().push({ kind: "let", id: t.identifier(id) });
119
+ properties.push(t.objectProperty(t.identifier("document"), t.assignmentExpression("||=", t.identifier(id), t.callExpression(t.memberExpression(t.identifier("JSON"), t.identifier("parse")), [
120
+ t.stringLiteral(JSON.stringify(documentNode)),
121
+ ]))));
122
+ }
123
+ else {
124
+ properties.push(t.objectProperty(t.identifier("query"), t.stringLiteral(stripIgnoredCharacters(query))));
125
+ }
71
126
  if (expressions.length) {
72
- args.push(t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression))));
127
+ properties.push(t.objectProperty(t.identifier("variables"), t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier("_" + i), expression)))));
73
128
  }
74
- path.replaceWith(t.callExpression(t.identifier(name), args));
129
+ path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));
75
130
  },
76
131
  },
77
132
  };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { default as babel, PluginObj, types as t } from \"@babel/core\";\nimport { encode } from \"@mo36924/base52\";\nimport { buildSchema, buildSchemaModel } from \"@mo36924/graphql-schema\";\nimport {\n DocumentNode,\n GraphQLInputType,\n GraphQLSchema,\n parse,\n stripIgnoredCharacters,\n TypeInfo,\n validate,\n visit,\n visitWithTypeInfo,\n} from \"graphql\";\n\nexport type Options = {\n model: string;\n schema: string | GraphQLSchema;\n};\n\nexport default ({ types: t }: typeof babel, options: Options): PluginObj => {\n let schema: GraphQLSchema;\n\n if (options.model) {\n const model = readFileSync(options.model || \"index.graphql\", \"utf8\");\n schema = buildSchemaModel(model);\n } else if (typeof options.schema === \"string\") {\n const graphqlSchema = readFileSync(options.schema || \"index.graphql\", \"utf8\");\n schema = buildSchema(graphqlSchema);\n } else if (options.schema) {\n schema = options.schema;\n }\n\n return {\n visitor: {\n TaggedTemplateExpression(path) {\n const {\n tag,\n quasi: { quasis, expressions },\n } = path.node;\n\n if (!t.isIdentifier(tag)) {\n return;\n }\n\n const name = tag.name;\n\n if (name !== \"gql\" && name !== \"query\" && name !== \"mutation\" && name !== \"subscription\") {\n return;\n }\n\n let query = quasis[0].value.cooked ?? quasis[0].value.raw;\n\n for (let i = 0; i < expressions.length; i++) {\n query += `$${encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;\n }\n\n if (name === \"mutation\" || name === \"subscription\") {\n query = name + query;\n }\n\n let documentNode: DocumentNode;\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const values: GraphQLInputType[] = [];\n const typeInfo = new TypeInfo(schema);\n\n visit(\n documentNode,\n visitWithTypeInfo(typeInfo, {\n Variable() {\n values.push(typeInfo.getInputType()!);\n },\n }),\n );\n\n if (values.length) {\n const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;\n\n if (name === \"query\") {\n query = name + variables + query;\n } else if (name === \"mutation\" || name === \"subscription\") {\n query = name + variables + query.slice(name.length);\n }\n }\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const errors = validate(schema, documentNode);\n\n if (errors.length) {\n throw path.buildCodeFrameError(errors[0].message);\n }\n\n const args: t.Expression[] = [t.stringLiteral(stripIgnoredCharacters(query))];\n\n if (expressions.length) {\n args.push(\n t.objectExpression(\n expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression as any)),\n ),\n );\n }\n\n path.replaceWith(t.callExpression(t.identifier(name), args));\n },\n },\n };\n};\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import babel, { PluginObj, types as t } from \"@babel/core\";\nimport { buildASTSchema } from \"@mo36924/graphql-build\";\nimport { config } from \"@mo36924/graphql-config\";\nimport { buildModel } from \"@mo36924/graphql-model\";\nimport {\n DocumentNode,\n GraphQLInputType,\n GraphQLSchema,\n TypeInfo,\n buildSchema,\n parse,\n stripIgnoredCharacters,\n validate,\n visit,\n visitWithTypeInfo,\n} from \"graphql\";\n\nexport type Options = {\n client?: \"fetch\" | \"postgres\";\n model?: string | DocumentNode;\n schema?: string | GraphQLSchema;\n};\n\nlet _schema: GraphQLSchema;\n\nexport default ({ types: t }: typeof babel, options: Options): PluginObj => {\n const clientTag = \"@mo36924/graphql-client-tag\";\n const hooksTag = \"@mo36924/graphql-hooks-tag\";\n const client = options.client ?? \"fetch\";\n let parseQuery: boolean = false;\n let clientModule = \"@mo36924/graphql-fetch-client\";\n let hooksModule = \"@mo36924/graphql-fetch-hooks\";\n\n if (client === \"postgres\") {\n parseQuery = true;\n clientModule = \"@mo36924/graphql-postgres-client\";\n hooksModule = \"@mo36924/graphql-postgres-hooks\";\n }\n\n let schema = options.schema\n ? typeof options.schema === \"object\"\n ? options.schema\n : buildSchema(options.schema)\n : options.model\n ? typeof options.model === \"object\"\n ? buildASTSchema(options.model)\n : buildModel(options.model).schema\n : (_schema ||= config().schema);\n\n return {\n name: \"graphql-tagged-template\",\n visitor: {\n ImportDeclaration(path) {\n if (path.node.source.value === clientTag) {\n path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(clientModule)));\n } else if (path.node.source.value === hooksTag) {\n path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(hooksModule)));\n }\n },\n ExportAllDeclaration(path) {\n if (path.node.source.value === clientTag) {\n path.replaceWith(t.exportAllDeclaration(t.stringLiteral(clientModule)));\n } else if (path.node.source.value === hooksTag) {\n path.replaceWith(t.exportAllDeclaration(t.stringLiteral(hooksModule)));\n }\n },\n ExportNamedDeclaration(path) {\n if (path.node.source && path.node.source.value === clientTag) {\n path.replaceWith(\n t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(clientModule)),\n );\n } else if (path.node.source && path.node.source.value === hooksTag) {\n path.replaceWith(\n t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(hooksModule)),\n );\n }\n },\n TaggedTemplateExpression(path) {\n const {\n tag,\n quasi: { quasis, expressions },\n } = path.node;\n\n if (!t.isIdentifier(tag)) {\n return;\n }\n\n const name = tag.name;\n let operation = \"\";\n\n switch (name) {\n case \"gql\":\n case \"query\":\n case \"useQuery\":\n break;\n case \"mutation\":\n case \"useMutation\":\n operation = \"mutation\";\n break;\n case \"subscription\":\n case \"useSubscription\":\n operation = \"subscription\";\n break;\n default:\n return;\n }\n\n let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);\n\n for (let i = 0; i < expressions.length; i++) {\n query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;\n }\n\n let documentNode: DocumentNode;\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const values: GraphQLInputType[] = [];\n const typeInfo = new TypeInfo(schema);\n\n visit(\n documentNode,\n visitWithTypeInfo(typeInfo, {\n Variable() {\n values.push(typeInfo.getInputType()!);\n },\n }),\n );\n\n if (values.length) {\n const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;\n\n if (operation) {\n query = operation + variables + query.slice(operation.length);\n } else if (name !== \"gql\") {\n query = \"query\" + variables + query;\n }\n }\n\n try {\n documentNode = parse(query, { noLocation: true });\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const errors = validate(schema, documentNode);\n\n if (errors.length) {\n throw path.buildCodeFrameError(errors[0].message);\n }\n\n const properties: t.ObjectProperty[] = [];\n\n if (parseQuery) {\n const id = path.scope.generateUid(\"gql\");\n path.scope.getProgramParent().push({ kind: \"let\", id: t.identifier(id) });\n\n properties.push(\n t.objectProperty(\n t.identifier(\"document\"),\n t.assignmentExpression(\n \"||=\",\n t.identifier(id),\n t.callExpression(t.memberExpression(t.identifier(\"JSON\"), t.identifier(\"parse\")), [\n t.stringLiteral(JSON.stringify(documentNode)),\n ]),\n ),\n ),\n );\n } else {\n properties.push(t.objectProperty(t.identifier(\"query\"), t.stringLiteral(stripIgnoredCharacters(query))));\n }\n\n if (expressions.length) {\n properties.push(\n t.objectProperty(\n t.identifier(\"variables\"),\n t.objectExpression(\n expressions.map((expression, i) => t.objectProperty(t.identifier(\"_\" + i), expression as t.Expression)),\n ),\n ),\n );\n }\n\n path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));\n },\n },\n };\n};\n"],"names":[],"mappings":"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"}
package/dist/index.mjs CHANGED
@@ -1,38 +1,83 @@
1
- import { readFileSync } from 'fs';
2
- import { encode } from '@mo36924/base52';
3
- import { buildSchemaModel, buildSchema } from '@mo36924/graphql-schema';
4
- import { parse, TypeInfo, visit, visitWithTypeInfo, validate, stripIgnoredCharacters } from 'graphql';
1
+ import { buildASTSchema } from '@mo36924/graphql-build';
2
+ import { config } from '@mo36924/graphql-config';
3
+ import { buildModel } from '@mo36924/graphql-model';
4
+ import { buildSchema, parse, TypeInfo, visit, visitWithTypeInfo, validate, stripIgnoredCharacters } from 'graphql';
5
5
 
6
- var index = ({ types: t }, options) => {
7
- let schema;
8
- if (options.model) {
9
- const model = readFileSync(options.model || "index.graphql", "utf8");
10
- schema = buildSchemaModel(model);
11
- }
12
- else if (typeof options.schema === "string") {
13
- const graphqlSchema = readFileSync(options.schema || "index.graphql", "utf8");
14
- schema = buildSchema(graphqlSchema);
15
- }
16
- else if (options.schema) {
17
- schema = options.schema;
6
+ let _schema;
7
+ const index = ({ types: t }, options) => {
8
+ const clientTag = "@mo36924/graphql-client-tag";
9
+ const hooksTag = "@mo36924/graphql-hooks-tag";
10
+ const client = options.client ?? "fetch";
11
+ let parseQuery = false;
12
+ let clientModule = "@mo36924/graphql-fetch-client";
13
+ let hooksModule = "@mo36924/graphql-fetch-hooks";
14
+ if (client === "postgres") {
15
+ parseQuery = true;
16
+ clientModule = "@mo36924/graphql-postgres-client";
17
+ hooksModule = "@mo36924/graphql-postgres-hooks";
18
18
  }
19
+ let schema = options.schema
20
+ ? typeof options.schema === "object"
21
+ ? options.schema
22
+ : buildSchema(options.schema)
23
+ : options.model
24
+ ? typeof options.model === "object"
25
+ ? buildASTSchema(options.model)
26
+ : buildModel(options.model).schema
27
+ : (_schema ||= config().schema);
19
28
  return {
29
+ name: "graphql-tagged-template",
20
30
  visitor: {
31
+ ImportDeclaration(path) {
32
+ if (path.node.source.value === clientTag) {
33
+ path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(clientModule)));
34
+ }
35
+ else if (path.node.source.value === hooksTag) {
36
+ path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(hooksModule)));
37
+ }
38
+ },
39
+ ExportAllDeclaration(path) {
40
+ if (path.node.source.value === clientTag) {
41
+ path.replaceWith(t.exportAllDeclaration(t.stringLiteral(clientModule)));
42
+ }
43
+ else if (path.node.source.value === hooksTag) {
44
+ path.replaceWith(t.exportAllDeclaration(t.stringLiteral(hooksModule)));
45
+ }
46
+ },
47
+ ExportNamedDeclaration(path) {
48
+ if (path.node.source && path.node.source.value === clientTag) {
49
+ path.replaceWith(t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(clientModule)));
50
+ }
51
+ else if (path.node.source && path.node.source.value === hooksTag) {
52
+ path.replaceWith(t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(hooksModule)));
53
+ }
54
+ },
21
55
  TaggedTemplateExpression(path) {
22
56
  const { tag, quasi: { quasis, expressions }, } = path.node;
23
57
  if (!t.isIdentifier(tag)) {
24
58
  return;
25
59
  }
26
60
  const name = tag.name;
27
- if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
28
- return;
61
+ let operation = "";
62
+ switch (name) {
63
+ case "gql":
64
+ case "query":
65
+ case "useQuery":
66
+ break;
67
+ case "mutation":
68
+ case "useMutation":
69
+ operation = "mutation";
70
+ break;
71
+ case "subscription":
72
+ case "useSubscription":
73
+ operation = "subscription";
74
+ break;
75
+ default:
76
+ return;
29
77
  }
30
- let query = quasis[0].value.cooked ?? quasis[0].value.raw;
78
+ let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);
31
79
  for (let i = 0; i < expressions.length; i++) {
32
- query += `$${encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
33
- }
34
- if (name === "mutation" || name === "subscription") {
35
- query = name + query;
80
+ query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
36
81
  }
37
82
  let documentNode;
38
83
  try {
@@ -49,16 +94,16 @@ var index = ({ types: t }, options) => {
49
94
  },
50
95
  }));
51
96
  if (values.length) {
52
- const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;
53
- if (name === "query") {
54
- query = name + variables + query;
97
+ const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;
98
+ if (operation) {
99
+ query = operation + variables + query.slice(operation.length);
55
100
  }
56
- else if (name === "mutation" || name === "subscription") {
57
- query = name + variables + query.slice(name.length);
101
+ else if (name !== "gql") {
102
+ query = "query" + variables + query;
58
103
  }
59
104
  }
60
105
  try {
61
- documentNode = parse(query);
106
+ documentNode = parse(query, { noLocation: true });
62
107
  }
63
108
  catch (err) {
64
109
  throw path.buildCodeFrameError(String(err));
@@ -67,11 +112,21 @@ var index = ({ types: t }, options) => {
67
112
  if (errors.length) {
68
113
  throw path.buildCodeFrameError(errors[0].message);
69
114
  }
70
- const args = [t.stringLiteral(stripIgnoredCharacters(query))];
115
+ const properties = [];
116
+ if (parseQuery) {
117
+ const id = path.scope.generateUid("gql");
118
+ path.scope.getProgramParent().push({ kind: "let", id: t.identifier(id) });
119
+ properties.push(t.objectProperty(t.identifier("document"), t.assignmentExpression("||=", t.identifier(id), t.callExpression(t.memberExpression(t.identifier("JSON"), t.identifier("parse")), [
120
+ t.stringLiteral(JSON.stringify(documentNode)),
121
+ ]))));
122
+ }
123
+ else {
124
+ properties.push(t.objectProperty(t.identifier("query"), t.stringLiteral(stripIgnoredCharacters(query))));
125
+ }
71
126
  if (expressions.length) {
72
- args.push(t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression))));
127
+ properties.push(t.objectProperty(t.identifier("variables"), t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier("_" + i), expression)))));
73
128
  }
74
- path.replaceWith(t.callExpression(t.identifier(name), args));
129
+ path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));
75
130
  },
76
131
  },
77
132
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { default as babel, PluginObj, types as t } from \"@babel/core\";\nimport { encode } from \"@mo36924/base52\";\nimport { buildSchema, buildSchemaModel } from \"@mo36924/graphql-schema\";\nimport {\n DocumentNode,\n GraphQLInputType,\n GraphQLSchema,\n parse,\n stripIgnoredCharacters,\n TypeInfo,\n validate,\n visit,\n visitWithTypeInfo,\n} from \"graphql\";\n\nexport type Options = {\n model: string;\n schema: string | GraphQLSchema;\n};\n\nexport default ({ types: t }: typeof babel, options: Options): PluginObj => {\n let schema: GraphQLSchema;\n\n if (options.model) {\n const model = readFileSync(options.model || \"index.graphql\", \"utf8\");\n schema = buildSchemaModel(model);\n } else if (typeof options.schema === \"string\") {\n const graphqlSchema = readFileSync(options.schema || \"index.graphql\", \"utf8\");\n schema = buildSchema(graphqlSchema);\n } else if (options.schema) {\n schema = options.schema;\n }\n\n return {\n visitor: {\n TaggedTemplateExpression(path) {\n const {\n tag,\n quasi: { quasis, expressions },\n } = path.node;\n\n if (!t.isIdentifier(tag)) {\n return;\n }\n\n const name = tag.name;\n\n if (name !== \"gql\" && name !== \"query\" && name !== \"mutation\" && name !== \"subscription\") {\n return;\n }\n\n let query = quasis[0].value.cooked ?? quasis[0].value.raw;\n\n for (let i = 0; i < expressions.length; i++) {\n query += `$${encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;\n }\n\n if (name === \"mutation\" || name === \"subscription\") {\n query = name + query;\n }\n\n let documentNode: DocumentNode;\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const values: GraphQLInputType[] = [];\n const typeInfo = new TypeInfo(schema);\n\n visit(\n documentNode,\n visitWithTypeInfo(typeInfo, {\n Variable() {\n values.push(typeInfo.getInputType()!);\n },\n }),\n );\n\n if (values.length) {\n const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;\n\n if (name === \"query\") {\n query = name + variables + query;\n } else if (name === \"mutation\" || name === \"subscription\") {\n query = name + variables + query.slice(name.length);\n }\n }\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const errors = validate(schema, documentNode);\n\n if (errors.length) {\n throw path.buildCodeFrameError(errors[0].message);\n }\n\n const args: t.Expression[] = [t.stringLiteral(stripIgnoredCharacters(query))];\n\n if (expressions.length) {\n args.push(\n t.objectExpression(\n expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression as any)),\n ),\n );\n }\n\n path.replaceWith(t.callExpression(t.identifier(name), args));\n },\n },\n };\n};\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import babel, { PluginObj, types as t } from \"@babel/core\";\nimport { buildASTSchema } from \"@mo36924/graphql-build\";\nimport { config } from \"@mo36924/graphql-config\";\nimport { buildModel } from \"@mo36924/graphql-model\";\nimport {\n DocumentNode,\n GraphQLInputType,\n GraphQLSchema,\n TypeInfo,\n buildSchema,\n parse,\n stripIgnoredCharacters,\n validate,\n visit,\n visitWithTypeInfo,\n} from \"graphql\";\n\nexport type Options = {\n client?: \"fetch\" | \"postgres\";\n model?: string | DocumentNode;\n schema?: string | GraphQLSchema;\n};\n\nlet _schema: GraphQLSchema;\n\nexport default ({ types: t }: typeof babel, options: Options): PluginObj => {\n const clientTag = \"@mo36924/graphql-client-tag\";\n const hooksTag = \"@mo36924/graphql-hooks-tag\";\n const client = options.client ?? \"fetch\";\n let parseQuery: boolean = false;\n let clientModule = \"@mo36924/graphql-fetch-client\";\n let hooksModule = \"@mo36924/graphql-fetch-hooks\";\n\n if (client === \"postgres\") {\n parseQuery = true;\n clientModule = \"@mo36924/graphql-postgres-client\";\n hooksModule = \"@mo36924/graphql-postgres-hooks\";\n }\n\n let schema = options.schema\n ? typeof options.schema === \"object\"\n ? options.schema\n : buildSchema(options.schema)\n : options.model\n ? typeof options.model === \"object\"\n ? buildASTSchema(options.model)\n : buildModel(options.model).schema\n : (_schema ||= config().schema);\n\n return {\n name: \"graphql-tagged-template\",\n visitor: {\n ImportDeclaration(path) {\n if (path.node.source.value === clientTag) {\n path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(clientModule)));\n } else if (path.node.source.value === hooksTag) {\n path.replaceWith(t.importDeclaration(path.node.specifiers, t.stringLiteral(hooksModule)));\n }\n },\n ExportAllDeclaration(path) {\n if (path.node.source.value === clientTag) {\n path.replaceWith(t.exportAllDeclaration(t.stringLiteral(clientModule)));\n } else if (path.node.source.value === hooksTag) {\n path.replaceWith(t.exportAllDeclaration(t.stringLiteral(hooksModule)));\n }\n },\n ExportNamedDeclaration(path) {\n if (path.node.source && path.node.source.value === clientTag) {\n path.replaceWith(\n t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(clientModule)),\n );\n } else if (path.node.source && path.node.source.value === hooksTag) {\n path.replaceWith(\n t.exportNamedDeclaration(path.node.declaration, path.node.specifiers, t.stringLiteral(hooksModule)),\n );\n }\n },\n TaggedTemplateExpression(path) {\n const {\n tag,\n quasi: { quasis, expressions },\n } = path.node;\n\n if (!t.isIdentifier(tag)) {\n return;\n }\n\n const name = tag.name;\n let operation = \"\";\n\n switch (name) {\n case \"gql\":\n case \"query\":\n case \"useQuery\":\n break;\n case \"mutation\":\n case \"useMutation\":\n operation = \"mutation\";\n break;\n case \"subscription\":\n case \"useSubscription\":\n operation = \"subscription\";\n break;\n default:\n return;\n }\n\n let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);\n\n for (let i = 0; i < expressions.length; i++) {\n query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;\n }\n\n let documentNode: DocumentNode;\n\n try {\n documentNode = parse(query);\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const values: GraphQLInputType[] = [];\n const typeInfo = new TypeInfo(schema);\n\n visit(\n documentNode,\n visitWithTypeInfo(typeInfo, {\n Variable() {\n values.push(typeInfo.getInputType()!);\n },\n }),\n );\n\n if (values.length) {\n const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;\n\n if (operation) {\n query = operation + variables + query.slice(operation.length);\n } else if (name !== \"gql\") {\n query = \"query\" + variables + query;\n }\n }\n\n try {\n documentNode = parse(query, { noLocation: true });\n } catch (err) {\n throw path.buildCodeFrameError(String(err));\n }\n\n const errors = validate(schema, documentNode);\n\n if (errors.length) {\n throw path.buildCodeFrameError(errors[0].message);\n }\n\n const properties: t.ObjectProperty[] = [];\n\n if (parseQuery) {\n const id = path.scope.generateUid(\"gql\");\n path.scope.getProgramParent().push({ kind: \"let\", id: t.identifier(id) });\n\n properties.push(\n t.objectProperty(\n t.identifier(\"document\"),\n t.assignmentExpression(\n \"||=\",\n t.identifier(id),\n t.callExpression(t.memberExpression(t.identifier(\"JSON\"), t.identifier(\"parse\")), [\n t.stringLiteral(JSON.stringify(documentNode)),\n ]),\n ),\n ),\n );\n } else {\n properties.push(t.objectProperty(t.identifier(\"query\"), t.stringLiteral(stripIgnoredCharacters(query))));\n }\n\n if (expressions.length) {\n properties.push(\n t.objectProperty(\n t.identifier(\"variables\"),\n t.objectExpression(\n expressions.map((expression, i) => t.objectProperty(t.identifier(\"_\" + i), expression as t.Expression)),\n ),\n ),\n );\n }\n\n path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));\n },\n },\n };\n};\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@mo36924/babel-plugin-graphql-tagged-template",
3
- "version": "1.5.1",
3
+ "version": "1.5.22",
4
4
  "description": "babel-plugin-graphql-tagged-template",
5
5
  "keywords": [],
6
- "homepage": "https://github.com/mo36924/monorepo#readme",
6
+ "homepage": "https://github.com/mo36924/graphql#readme",
7
7
  "bugs": {
8
- "url": "https://github.com/mo36924/monorepo/issues"
8
+ "url": "https://github.com/mo36924/graphql/issues"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/mo36924/monorepo.git",
12
+ "url": "git+https://github.com/mo36924/graphql.git",
13
13
  "directory": "packages/babel-plugin-graphql-tagged-template"
14
14
  },
15
15
  "license": "MIT",
16
- "author": "mo36924 <mo36924@users.noreply.github.com>",
16
+ "author": "mo36924",
17
17
  "exports": {
18
18
  ".": {
19
19
  "types": "./dist/index.d.ts",
@@ -25,21 +25,19 @@
25
25
  },
26
26
  "main": "./dist/index.cjs",
27
27
  "module": "./dist/index.mjs",
28
- "typesVersions": {
29
- "*": {
30
- "*": [
31
- "dist/*.d.ts"
32
- ]
33
- }
34
- },
28
+ "types": "./dist/index.d.ts",
29
+ "files": [
30
+ "dist"
31
+ ],
35
32
  "dependencies": {
36
- "@babel/core": "^7.15.0",
37
- "@mo36924/base52": "^1.5.1",
38
- "@mo36924/graphql-schema": "^1.5.1",
39
- "graphql": "^15.5.0"
33
+ "@babel/core": "^7.17.8",
34
+ "@mo36924/graphql-build": "^1.5.22",
35
+ "@mo36924/graphql-config": "^1.5.22",
36
+ "@mo36924/graphql-model": "^1.5.22",
37
+ "graphql": "^16.3.0"
40
38
  },
41
39
  "publishConfig": {
42
40
  "access": "public"
43
41
  },
44
- "gitHead": "24873097d2799f8a045d8601a92b1c307b75738a"
42
+ "gitHead": "345391cf7ea2061c78f671824846d5dc0de1df7b"
45
43
  }
package/src/index.test.ts DELETED
@@ -1,91 +0,0 @@
1
- import { TransformOptions, transformSync } from "@babel/core";
2
- import { describe, expect, test } from "@jest/globals";
3
- import { buildSchema } from "graphql";
4
- import plugin, { Options } from "./index";
5
-
6
- const schema = buildSchema(`
7
- scalar Unknown
8
- type Query {
9
- user(offset: Int): User
10
- }
11
- type Mutation {
12
- create(name: String): User
13
- }
14
- type User {
15
- name: String
16
- }
17
- `);
18
-
19
- const options: TransformOptions = {
20
- babelrc: false,
21
- configFile: false,
22
- plugins: [[plugin, { schema } as Options]],
23
- };
24
-
25
- const transform = (code: string) => transformSync(code, options);
26
-
27
- describe("babel-plugin-graphql-tagged-template", () => {
28
- test("gql query", () => {
29
- const result = transform(`
30
- const params = gql\`{
31
- user(offset: 2) {
32
- name
33
- }
34
- }\`
35
- `);
36
-
37
- expect(result).toMatchInlineSnapshot(`const params = gql("{user(offset:2){name}}");`);
38
- });
39
-
40
- test("gql mutation", () => {
41
- const result = transform(`
42
- const params = gql\`mutation($name: String!){
43
- create(name: $name) {
44
- name
45
- }
46
- }\`
47
- `);
48
-
49
- expect(result).toMatchInlineSnapshot(`const params = gql("mutation($name:String!){create(name:$name){name}}");`);
50
- });
51
-
52
- test("query", () => {
53
- const result = transform(`
54
- const offset = 2
55
- query\`
56
- {
57
- user(offset: \${offset}) {
58
- name
59
- }
60
- }
61
- \`
62
- `);
63
-
64
- expect(result).toMatchInlineSnapshot(`
65
- const offset = 2;
66
- query("query($a:Int){user(offset:$a){name}}", {
67
- a: offset,
68
- });
69
- `);
70
- });
71
-
72
- test("mutation", () => {
73
- const result = transform(`
74
- const name = "hoge";
75
- mutation\`
76
- {
77
- create(name: \${name}) {
78
- name
79
- }
80
- }
81
- \`
82
- `);
83
-
84
- expect(result).toMatchInlineSnapshot(`
85
- const name = "hoge";
86
- mutation("mutation($a:String){create(name:$a){name}}", {
87
- a: name,
88
- });
89
- `);
90
- });
91
- });
package/src/index.ts DELETED
@@ -1,119 +0,0 @@
1
- import { readFileSync } from "fs";
2
- import type { default as babel, PluginObj, types as t } from "@babel/core";
3
- import { encode } from "@mo36924/base52";
4
- import { buildSchema, buildSchemaModel } from "@mo36924/graphql-schema";
5
- import {
6
- DocumentNode,
7
- GraphQLInputType,
8
- GraphQLSchema,
9
- parse,
10
- stripIgnoredCharacters,
11
- TypeInfo,
12
- validate,
13
- visit,
14
- visitWithTypeInfo,
15
- } from "graphql";
16
-
17
- export type Options = {
18
- model: string;
19
- schema: string | GraphQLSchema;
20
- };
21
-
22
- export default ({ types: t }: typeof babel, options: Options): PluginObj => {
23
- let schema: GraphQLSchema;
24
-
25
- if (options.model) {
26
- const model = readFileSync(options.model || "index.graphql", "utf8");
27
- schema = buildSchemaModel(model);
28
- } else if (typeof options.schema === "string") {
29
- const graphqlSchema = readFileSync(options.schema || "index.graphql", "utf8");
30
- schema = buildSchema(graphqlSchema);
31
- } else if (options.schema) {
32
- schema = options.schema;
33
- }
34
-
35
- return {
36
- visitor: {
37
- TaggedTemplateExpression(path) {
38
- const {
39
- tag,
40
- quasi: { quasis, expressions },
41
- } = path.node;
42
-
43
- if (!t.isIdentifier(tag)) {
44
- return;
45
- }
46
-
47
- const name = tag.name;
48
-
49
- if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
50
- return;
51
- }
52
-
53
- let query = quasis[0].value.cooked ?? quasis[0].value.raw;
54
-
55
- for (let i = 0; i < expressions.length; i++) {
56
- query += `$${encode(i)}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
57
- }
58
-
59
- if (name === "mutation" || name === "subscription") {
60
- query = name + query;
61
- }
62
-
63
- let documentNode: DocumentNode;
64
-
65
- try {
66
- documentNode = parse(query);
67
- } catch (err) {
68
- throw path.buildCodeFrameError(String(err));
69
- }
70
-
71
- const values: GraphQLInputType[] = [];
72
- const typeInfo = new TypeInfo(schema);
73
-
74
- visit(
75
- documentNode,
76
- visitWithTypeInfo(typeInfo, {
77
- Variable() {
78
- values.push(typeInfo.getInputType()!);
79
- },
80
- }),
81
- );
82
-
83
- if (values.length) {
84
- const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;
85
-
86
- if (name === "query") {
87
- query = name + variables + query;
88
- } else if (name === "mutation" || name === "subscription") {
89
- query = name + variables + query.slice(name.length);
90
- }
91
- }
92
-
93
- try {
94
- documentNode = parse(query);
95
- } catch (err) {
96
- throw path.buildCodeFrameError(String(err));
97
- }
98
-
99
- const errors = validate(schema, documentNode);
100
-
101
- if (errors.length) {
102
- throw path.buildCodeFrameError(errors[0].message);
103
- }
104
-
105
- const args: t.Expression[] = [t.stringLiteral(stripIgnoredCharacters(query))];
106
-
107
- if (expressions.length) {
108
- args.push(
109
- t.objectExpression(
110
- expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression as any)),
111
- ),
112
- );
113
- }
114
-
115
- path.replaceWith(t.callExpression(t.identifier(name), args));
116
- },
117
- },
118
- };
119
- };