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

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) 2022 mo36924
3
+ Copyright (c) 2021 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,85 +1,40 @@
1
1
  'use strict';
2
2
 
3
- const graphqlBuild = require('@mo36924/graphql-build');
4
- const graphqlConfig = require('@mo36924/graphql-config');
5
- const graphqlModel = require('@mo36924/graphql-model');
3
+ const fs = require('fs');
4
+ const base52 = require('@mo36924/base52');
5
+ const graphqlSchema = require('@mo36924/graphql-schema');
6
6
  const graphql = require('graphql');
7
7
 
8
- let _schema;
9
8
  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";
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;
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);
30
21
  return {
31
- name: "graphql-tagged-template",
32
22
  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
- },
57
23
  TaggedTemplateExpression(path) {
58
24
  const { tag, quasi: { quasis, expressions }, } = path.node;
59
25
  if (!t.isIdentifier(tag)) {
60
26
  return;
61
27
  }
62
28
  const name = tag.name;
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;
29
+ if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
30
+ return;
79
31
  }
80
- let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);
32
+ let query = quasis[0].value.cooked ?? quasis[0].value.raw;
81
33
  for (let i = 0; i < expressions.length; i++) {
82
- query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
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;
83
38
  }
84
39
  let documentNode;
85
40
  try {
@@ -96,16 +51,16 @@ const index = ({ types: t }, options) => {
96
51
  },
97
52
  }));
98
53
  if (values.length) {
99
- const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;
100
- if (operation) {
101
- query = operation + variables + query.slice(operation.length);
54
+ const variables = `(${values.map((value, i) => `$${base52.encode(i)}:${value}`).join()})`;
55
+ if (name === "query") {
56
+ query = name + variables + query;
102
57
  }
103
- else if (name !== "gql") {
104
- query = "query" + variables + query;
58
+ else if (name === "mutation" || name === "subscription") {
59
+ query = name + variables + query.slice(name.length);
105
60
  }
106
61
  }
107
62
  try {
108
- documentNode = graphql.parse(query, { noLocation: true });
63
+ documentNode = graphql.parse(query);
109
64
  }
110
65
  catch (err) {
111
66
  throw path.buildCodeFrameError(String(err));
@@ -114,21 +69,11 @@ const index = ({ types: t }, options) => {
114
69
  if (errors.length) {
115
70
  throw path.buildCodeFrameError(errors[0].message);
116
71
  }
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
- }
72
+ const args = [t.stringLiteral(graphql.stripIgnoredCharacters(query))];
128
73
  if (expressions.length) {
129
- properties.push(t.objectProperty(t.identifier("variables"), t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier("_" + i), expression)))));
74
+ args.push(t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier(base52.encode(i)), expression))));
130
75
  }
131
- path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));
76
+ path.replaceWith(t.callExpression(t.identifier(name), args));
132
77
  },
133
78
  },
134
79
  };
@@ -1 +1 @@
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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"}
1
+ {"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { PluginObj, default as babel, 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 TypeInfo,\n parse,\n stripIgnoredCharacters,\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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"}
package/dist/index.d.ts CHANGED
@@ -1,10 +1,9 @@
1
1
  import babel, { PluginObj } from '@babel/core';
2
- import { DocumentNode, GraphQLSchema } from 'graphql';
2
+ import { GraphQLSchema } from 'graphql';
3
3
 
4
4
  declare type Options = {
5
- client?: "fetch" | "postgres";
6
- model?: string | DocumentNode;
7
- schema?: string | GraphQLSchema;
5
+ model: string;
6
+ schema: string | GraphQLSchema;
8
7
  };
9
8
  declare const _default: ({ types: t }: typeof babel, options: Options) => PluginObj;
10
9
 
package/dist/index.js CHANGED
@@ -1,83 +1,38 @@
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';
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';
5
5
 
6
- let _schema;
7
6
  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";
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;
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);
28
19
  return {
29
- name: "graphql-tagged-template",
30
20
  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
- },
55
21
  TaggedTemplateExpression(path) {
56
22
  const { tag, quasi: { quasis, expressions }, } = path.node;
57
23
  if (!t.isIdentifier(tag)) {
58
24
  return;
59
25
  }
60
26
  const name = tag.name;
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;
27
+ if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
28
+ return;
77
29
  }
78
- let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);
30
+ let query = quasis[0].value.cooked ?? quasis[0].value.raw;
79
31
  for (let i = 0; i < expressions.length; i++) {
80
- query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
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;
81
36
  }
82
37
  let documentNode;
83
38
  try {
@@ -94,16 +49,16 @@ const index = ({ types: t }, options) => {
94
49
  },
95
50
  }));
96
51
  if (values.length) {
97
- const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;
98
- if (operation) {
99
- query = operation + variables + query.slice(operation.length);
52
+ const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;
53
+ if (name === "query") {
54
+ query = name + variables + query;
100
55
  }
101
- else if (name !== "gql") {
102
- query = "query" + variables + query;
56
+ else if (name === "mutation" || name === "subscription") {
57
+ query = name + variables + query.slice(name.length);
103
58
  }
104
59
  }
105
60
  try {
106
- documentNode = parse(query, { noLocation: true });
61
+ documentNode = parse(query);
107
62
  }
108
63
  catch (err) {
109
64
  throw path.buildCodeFrameError(String(err));
@@ -112,21 +67,11 @@ const index = ({ types: t }, options) => {
112
67
  if (errors.length) {
113
68
  throw path.buildCodeFrameError(errors[0].message);
114
69
  }
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
- }
70
+ const args = [t.stringLiteral(stripIgnoredCharacters(query))];
126
71
  if (expressions.length) {
127
- properties.push(t.objectProperty(t.identifier("variables"), t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier("_" + i), expression)))));
72
+ args.push(t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression))));
128
73
  }
129
- path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));
74
+ path.replaceWith(t.callExpression(t.identifier(name), args));
130
75
  },
131
76
  },
132
77
  };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
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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"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { PluginObj, default as babel, 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 TypeInfo,\n parse,\n stripIgnoredCharacters,\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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"}
package/dist/index.mjs CHANGED
@@ -1,83 +1,38 @@
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';
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';
5
5
 
6
- let _schema;
7
6
  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";
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;
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);
28
19
  return {
29
- name: "graphql-tagged-template",
30
20
  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
- },
55
21
  TaggedTemplateExpression(path) {
56
22
  const { tag, quasi: { quasis, expressions }, } = path.node;
57
23
  if (!t.isIdentifier(tag)) {
58
24
  return;
59
25
  }
60
26
  const name = tag.name;
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;
27
+ if (name !== "gql" && name !== "query" && name !== "mutation" && name !== "subscription") {
28
+ return;
77
29
  }
78
- let query = operation + (quasis[0].value.cooked ?? quasis[0].value.raw);
30
+ let query = quasis[0].value.cooked ?? quasis[0].value.raw;
79
31
  for (let i = 0; i < expressions.length; i++) {
80
- query += `$_${i}${quasis[i + 1].value.cooked ?? quasis[i + 1].value.raw}`;
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;
81
36
  }
82
37
  let documentNode;
83
38
  try {
@@ -94,16 +49,16 @@ const index = ({ types: t }, options) => {
94
49
  },
95
50
  }));
96
51
  if (values.length) {
97
- const variables = `(${values.map((value, i) => `$_${i}:${value}`).join()})`;
98
- if (operation) {
99
- query = operation + variables + query.slice(operation.length);
52
+ const variables = `(${values.map((value, i) => `$${encode(i)}:${value}`).join()})`;
53
+ if (name === "query") {
54
+ query = name + variables + query;
100
55
  }
101
- else if (name !== "gql") {
102
- query = "query" + variables + query;
56
+ else if (name === "mutation" || name === "subscription") {
57
+ query = name + variables + query.slice(name.length);
103
58
  }
104
59
  }
105
60
  try {
106
- documentNode = parse(query, { noLocation: true });
61
+ documentNode = parse(query);
107
62
  }
108
63
  catch (err) {
109
64
  throw path.buildCodeFrameError(String(err));
@@ -112,21 +67,11 @@ const index = ({ types: t }, options) => {
112
67
  if (errors.length) {
113
68
  throw path.buildCodeFrameError(errors[0].message);
114
69
  }
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
- }
70
+ const args = [t.stringLiteral(stripIgnoredCharacters(query))];
126
71
  if (expressions.length) {
127
- properties.push(t.objectProperty(t.identifier("variables"), t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier("_" + i), expression)))));
72
+ args.push(t.objectExpression(expressions.map((expression, i) => t.objectProperty(t.identifier(encode(i)), expression))));
128
73
  }
129
- path.replaceWith(t.callExpression(t.identifier(name), [t.objectExpression(properties)]));
74
+ path.replaceWith(t.callExpression(t.identifier(name), args));
130
75
  },
131
76
  },
132
77
  };
@@ -1 +1 @@
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":";;;;;AAuBA,IAAI,OAAsB,CAAC;AAE3B,cAAe,CAAC,EAAE,KAAK,EAAE,CAAC,EAAgB,EAAE,OAAgB,KAAe;IACzE,MAAM,SAAS,GAAG,6BAA6B,CAAC;IAChD,MAAM,QAAQ,GAAG,4BAA4B,CAAC;AAC9C,IAAA,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC;IACzC,IAAI,UAAU,GAAY,KAAK,CAAC;IAChC,IAAI,YAAY,GAAG,+BAA+B,CAAC;IACnD,IAAI,WAAW,GAAG,8BAA8B,CAAC;IAEjD,IAAI,MAAM,KAAK,UAAU,EAAE;QACzB,UAAU,GAAG,IAAI,CAAC;QAClB,YAAY,GAAG,kCAAkC,CAAC;QAClD,WAAW,GAAG,iCAAiC,CAAC;AACjD,KAAA;AAED,IAAA,IAAI,MAAM,GAAG,OAAO,CAAC,MAAM;AACzB,UAAE,OAAO,OAAO,CAAC,MAAM,KAAK,QAAQ;cAChC,OAAO,CAAC,MAAM;AAChB,cAAE,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC;UAC7B,OAAO,CAAC,KAAK;AACf,cAAE,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ;AACjC,kBAAE,cAAc,CAAC,OAAO,CAAC,KAAK,CAAC;kBAC7B,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM;eACjC,OAAO,KAAK,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC;IAElC,OAAO;AACL,QAAA,IAAI,EAAE,yBAAyB;AAC/B,QAAA,OAAO,EAAE;AACP,YAAA,iBAAiB,CAAC,IAAI,EAAA;gBACpB,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,SAAS,EAAE;oBACxC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;AAC5F,iBAAA;qBAAM,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,QAAQ,EAAE;oBAC9C,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;AAC3F,iBAAA;aACF;AACD,YAAA,oBAAoB,CAAC,IAAI,EAAA;gBACvB,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,SAAS,EAAE;AACxC,oBAAA,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;AACzE,iBAAA;qBAAM,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,QAAQ,EAAE;AAC9C,oBAAA,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,oBAAoB,CAAC,CAAC,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;AACxE,iBAAA;aACF;AACD,YAAA,sBAAsB,CAAC,IAAI,EAAA;AACzB,gBAAA,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,SAAS,EAAE;oBAC5D,IAAI,CAAC,WAAW,CACd,CAAC,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CACrG,CAAC;AACH,iBAAA;AAAM,qBAAA,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,QAAQ,EAAE;oBAClE,IAAI,CAAC,WAAW,CACd,CAAC,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC,CACpG,CAAC;AACH,iBAAA;aACF;AACD,YAAA,wBAAwB,CAAC,IAAI,EAAA;AAC3B,gBAAA,MAAM,EACJ,GAAG,EACH,KAAK,EAAE,EAAE,MAAM,EAAE,WAAW,EAAE,GAC/B,GAAG,IAAI,CAAC,IAAI,CAAC;AAEd,gBAAA,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE;oBACxB,OAAO;AACR,iBAAA;AAED,gBAAA,MAAM,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;gBACtB,IAAI,SAAS,GAAG,EAAE,CAAC;AAEnB,gBAAA,QAAQ,IAAI;AACV,oBAAA,KAAK,KAAK,CAAC;AACX,oBAAA,KAAK,OAAO,CAAC;AACb,oBAAA,KAAK,UAAU;wBACb,MAAM;AACR,oBAAA,KAAK,UAAU,CAAC;AAChB,oBAAA,KAAK,aAAa;wBAChB,SAAS,GAAG,UAAU,CAAC;wBACvB,MAAM;AACR,oBAAA,KAAK,cAAc,CAAC;AACpB,oBAAA,KAAK,iBAAiB;wBACpB,SAAS,GAAG,cAAc,CAAC;wBAC3B,MAAM;AACR,oBAAA;wBACE,OAAO;AACV,iBAAA;gBAED,IAAI,KAAK,GAAG,SAAS,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;AAExE,gBAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC3C,KAAK,IAAI,CAAK,EAAA,EAAA,CAAC,CAAG,EAAA,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAA,CAAE,CAAC;AAC3E,iBAAA;AAED,gBAAA,IAAI,YAA0B,CAAC;gBAE/B,IAAI;AACF,oBAAA,YAAY,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC;AAC7B,iBAAA;AAAC,gBAAA,OAAO,GAAG,EAAE;oBACZ,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;AAC7C,iBAAA;gBAED,MAAM,MAAM,GAAuB,EAAE,CAAC;AACtC,gBAAA,MAAM,QAAQ,GAAG,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC;AAEtC,gBAAA,KAAK,CACH,YAAY,EACZ,iBAAiB,CAAC,QAAQ,EAAE;oBAC1B,QAAQ,GAAA;wBACN,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAG,CAAC,CAAC;qBACvC;AACF,iBAAA,CAAC,CACH,CAAC;gBAEF,IAAI,MAAM,CAAC,MAAM,EAAE;oBACjB,MAAM,SAAS,GAAG,CAAA,CAAA,EAAI,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,CAAA,EAAA,EAAK,CAAC,CAAA,CAAA,EAAI,KAAK,CAAA,CAAE,CAAC,CAAC,IAAI,EAAE,CAAA,CAAA,CAAG,CAAC;AAE5E,oBAAA,IAAI,SAAS,EAAE;AACb,wBAAA,KAAK,GAAG,SAAS,GAAG,SAAS,GAAG,KAAK,CAAC,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;AAC/D,qBAAA;yBAAM,IAAI,IAAI,KAAK,KAAK,EAAE;AACzB,wBAAA,KAAK,GAAG,OAAO,GAAG,SAAS,GAAG,KAAK,CAAC;AACrC,qBAAA;AACF,iBAAA;gBAED,IAAI;oBACF,YAAY,GAAG,KAAK,CAAC,KAAK,EAAE,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAC;AACnD,iBAAA;AAAC,gBAAA,OAAO,GAAG,EAAE;oBACZ,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;AAC7C,iBAAA;gBAED,MAAM,MAAM,GAAG,QAAQ,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;gBAE9C,IAAI,MAAM,CAAC,MAAM,EAAE;oBACjB,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;AACnD,iBAAA;gBAED,MAAM,UAAU,GAAuB,EAAE,CAAC;AAE1C,gBAAA,IAAI,UAAU,EAAE;oBACd,MAAM,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;oBACzC,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;oBAE1E,UAAU,CAAC,IAAI,CACb,CAAC,CAAC,cAAc,CACd,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,EACxB,CAAC,CAAC,oBAAoB,CACpB,KAAK,EACL,CAAC,CAAC,UAAU,CAAC,EAAE,CAAC,EAChB,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE;wBAChF,CAAC,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;qBAC9C,CAAC,CACH,CACF,CACF,CAAC;AACH,iBAAA;AAAM,qBAAA;oBACL,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,sBAAsB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1G,iBAAA;gBAED,IAAI,WAAW,CAAC,MAAM,EAAE;oBACtB,UAAU,CAAC,IAAI,CACb,CAAC,CAAC,cAAc,CACd,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,EACzB,CAAC,CAAC,gBAAgB,CAChB,WAAW,CAAC,GAAG,CAAC,CAAC,UAAU,EAAE,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,GAAG,CAAC,CAAC,EAAE,UAA0B,CAAC,CAAC,CACxG,CACF,CACF,CAAC;AACH,iBAAA;gBAED,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;aAC1F;AACF,SAAA;KACF,CAAC;AACJ,CAAC;;;;"}
1
+ {"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { PluginObj, default as babel, 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 TypeInfo,\n parse,\n stripIgnoredCharacters,\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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"}
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@mo36924/babel-plugin-graphql-tagged-template",
3
- "version": "1.5.22",
3
+ "version": "1.6.0",
4
4
  "description": "babel-plugin-graphql-tagged-template",
5
5
  "keywords": [],
6
- "homepage": "https://github.com/mo36924/graphql#readme",
6
+ "homepage": "https://github.com/mo36924/monorepo#readme",
7
7
  "bugs": {
8
- "url": "https://github.com/mo36924/graphql/issues"
8
+ "url": "https://github.com/mo36924/monorepo/issues"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/mo36924/graphql.git",
12
+ "url": "git+https://github.com/mo36924/monorepo.git",
13
13
  "directory": "packages/babel-plugin-graphql-tagged-template"
14
14
  },
15
15
  "license": "MIT",
16
- "author": "mo36924",
16
+ "author": "mo36924 <mo36924@users.noreply.github.com>",
17
17
  "exports": {
18
18
  ".": {
19
19
  "types": "./dist/index.d.ts",
@@ -26,18 +26,25 @@
26
26
  "main": "./dist/index.cjs",
27
27
  "module": "./dist/index.mjs",
28
28
  "types": "./dist/index.d.ts",
29
+ "typesVersions": {
30
+ "*": {
31
+ "*": [
32
+ "dist/*.d.ts"
33
+ ]
34
+ }
35
+ },
29
36
  "files": [
30
37
  "dist"
31
38
  ],
32
39
  "dependencies": {
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",
40
+ "@babel/core": "^7.16.12",
41
+ "@mo36924/base52": "^1.6.0",
42
+ "@mo36924/graphql-schema": "^1.6.0",
43
+ "@types/babel__core": "^7.1.18",
37
44
  "graphql": "^16.3.0"
38
45
  },
39
46
  "publishConfig": {
40
47
  "access": "public"
41
48
  },
42
- "gitHead": "345391cf7ea2061c78f671824846d5dc0de1df7b"
49
+ "gitHead": "71343527a830500b8b3a22118f48df9949441db2"
43
50
  }