@mo36924/babel-plugin-graphql-tagged-template 1.5.2 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -4
- package/src/index.test.ts +0 -91
- package/src/index.ts +0 -119
package/dist/index.cjs
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
'use strict';
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
3
|
+
const fs = require('fs');
|
4
|
+
const base52 = require('@mo36924/base52');
|
5
|
+
const graphqlSchema = require('@mo36924/graphql-schema');
|
6
|
+
const graphql = require('graphql');
|
7
7
|
|
8
|
-
|
8
|
+
const index = ({ types: t }, options) => {
|
9
9
|
let schema;
|
10
10
|
if (options.model) {
|
11
11
|
const model = fs.readFileSync(options.model || "index.graphql", "utf8");
|
package/dist/index.cjs.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { default as babel,
|
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":";;;;;;;AAqBA,cAAe,CAAC,EAAE,KAAK,EAAE,CAAC,EAAgB,EAAE,OAAgB;IAC1D,IAAI,MAAqB,CAAC;IAE1B,IAAI,OAAO,CAAC,KAAK,EAAE;QACjB,MAAM,KAAK,GAAGA,eAAY,CAAC,OAAO,CAAC,KAAK,IAAI,eAAe,EAAE,MAAM,CAAC,CAAC;QACrE,MAAM,GAAGC,8BAAgB,CAAC,KAAK,CAAC,CAAC;KAClC;SAAM,IAAI,OAAO,OAAO,CAAC,MAAM,KAAK,QAAQ,EAAE;QAC7C,MAAMC,eAAa,GAAGF,eAAY,CAAC,OAAO,CAAC,MAAM,IAAI,eAAe,EAAE,MAAM,CAAC,CAAC;QAC9E,MAAM,GAAGG,yBAAW,CAACD,eAAa,CAAC,CAAC;KACrC;SAAM,IAAI,OAAO,CAAC,MAAM,EAAE;QACzB,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;KACzB;IAED,OAAO;QACL,OAAO,EAAE;YACP,wBAAwB,CAAC,IAAI;gBAC3B,MAAM,EACJ,GAAG,EACH,KAAK,EAAE,EAAE,MAAM,EAAE,WAAW,EAAE,GAC/B,GAAG,IAAI,CAAC,IAAI,CAAC;gBAEd,IAAI,CAAC,CAAC,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE;oBACxB,OAAO;iBACR;gBAED,MAAM,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;gBAEtB,IAAI,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,OAAO,IAAI,IAAI,KAAK,UAAU,IAAI,IAAI,KAAK,cAAc,EAAE;oBACxF,OAAO;iBACR;gBAED,IAAI,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC;gBAE1D,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC3C,KAAK,IAAI,IAAIE,aAAM,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;iBAClF;gBAED,IAAI,IAAI,KAAK,UAAU,IAAI,IAAI,KAAK,cAAc,EAAE;oBAClD,KAAK,GAAG,IAAI,GAAG,KAAK,CAAC;iBACtB;gBAED,IAAI,YAA0B,CAAC;gBAE/B,IAAI;oBACF,YAAY,GAAGC,aAAK,CAAC,KAAK,CAAC,CAAC;iBAC7B;gBAAC,OAAO,GAAG,EAAE;oBACZ,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;iBAC7C;gBAED,MAAM,MAAM,GAAuB,EAAE,CAAC;gBACtC,MAAM,QAAQ,GAAG,IAAIC,gBAAQ,CAAC,MAAM,CAAC,CAAC;gBAEtCC,aAAK,CACH,YAAY,EACZC,yBAAiB,CAAC,QAAQ,EAAE;oBAC1B,QAAQ;wBACN,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAG,CAAC,CAAC;qBACvC;iBACF,CAAC,CACH,CAAC;gBAEF,IAAI,MAAM,CAAC,MAAM,EAAE;oBACjB,MAAM,SAAS,GAAG,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,KAAK,IAAIJ,aAAM,CAAC,CAAC,CAAC,IAAI,KAAK,EAAE,CAAC,CAAC,IAAI,EAAE,GAAG,CAAC;oBAEnF,IAAI,IAAI,KAAK,OAAO,EAAE;wBACpB,KAAK,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,CAAC;qBAClC;yBAAM,IAAI,IAAI,KAAK,UAAU,IAAI,IAAI,KAAK,cAAc,EAAE;wBACzD,KAAK,GAAG,IAAI,GAAG,SAAS,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;qBACrD;iBACF;gBAED,IAAI;oBACF,YAAY,GAAGC,aAAK,CAAC,KAAK,CAAC,CAAC;iBAC7B;gBAAC,OAAO,GAAG,EAAE;oBACZ,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;iBAC7C;gBAED,MAAM,MAAM,GAAGI,gBAAQ,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;iBACnD;gBAED,MAAM,IAAI,GAAmB,CAAC,CAAC,CAAC,aAAa,CAACC,8BAAsB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAE9E,IAAI,WAAW,CAAC,MAAM,EAAE;oBACtB,IAAI,CAAC,IAAI,CACP,CAAC,CAAC,gBAAgB,CAChB,WAAW,CAAC,GAAG,CAAC,CAAC,UAAU,EAAE,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAACN,aAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAiB,CAAC,CAAC,CACjG,CACF,CAAC;iBACH;gBAED,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;aAC9D;SACF;KACF,CAAC;AACJ,CAAC;;;;"}
|
package/dist/index.js
CHANGED
@@ -3,7 +3,7 @@ import { encode } from '@mo36924/base52';
|
|
3
3
|
import { buildSchemaModel, buildSchema } from '@mo36924/graphql-schema';
|
4
4
|
import { parse, TypeInfo, visit, visitWithTypeInfo, validate, stripIgnoredCharacters } from 'graphql';
|
5
5
|
|
6
|
-
|
6
|
+
const index = ({ types: t }, options) => {
|
7
7
|
let schema;
|
8
8
|
if (options.model) {
|
9
9
|
const model = readFileSync(options.model || "index.graphql", "utf8");
|
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,
|
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
@@ -3,7 +3,7 @@ import { encode } from '@mo36924/base52';
|
|
3
3
|
import { buildSchemaModel, buildSchema } from '@mo36924/graphql-schema';
|
4
4
|
import { parse, TypeInfo, visit, visitWithTypeInfo, validate, stripIgnoredCharacters } from 'graphql';
|
5
5
|
|
6
|
-
|
6
|
+
const index = ({ types: t }, options) => {
|
7
7
|
let schema;
|
8
8
|
if (options.model) {
|
9
9
|
const model = readFileSync(options.model || "index.graphql", "utf8");
|
package/dist/index.mjs.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../src/index.ts"],"sourcesContent":["import { readFileSync } from \"fs\";\nimport type { default as babel,
|
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,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mo36924/babel-plugin-graphql-tagged-template",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.6.0",
|
4
4
|
"description": "babel-plugin-graphql-tagged-template",
|
5
5
|
"keywords": [],
|
6
6
|
"homepage": "https://github.com/mo36924/monorepo#readme",
|
@@ -25,6 +25,7 @@
|
|
25
25
|
},
|
26
26
|
"main": "./dist/index.cjs",
|
27
27
|
"module": "./dist/index.mjs",
|
28
|
+
"types": "./dist/index.d.ts",
|
28
29
|
"typesVersions": {
|
29
30
|
"*": {
|
30
31
|
"*": [
|
@@ -32,14 +33,18 @@
|
|
32
33
|
]
|
33
34
|
}
|
34
35
|
},
|
36
|
+
"files": [
|
37
|
+
"dist"
|
38
|
+
],
|
35
39
|
"dependencies": {
|
36
40
|
"@babel/core": "^7.16.12",
|
37
|
-
"@mo36924/base52": "^1.
|
38
|
-
"@mo36924/graphql-schema": "^1.
|
41
|
+
"@mo36924/base52": "^1.6.0",
|
42
|
+
"@mo36924/graphql-schema": "^1.6.0",
|
43
|
+
"@types/babel__core": "^7.1.18",
|
39
44
|
"graphql": "^16.3.0"
|
40
45
|
},
|
41
46
|
"publishConfig": {
|
42
47
|
"access": "public"
|
43
48
|
},
|
44
|
-
"gitHead": "
|
49
|
+
"gitHead": "71343527a830500b8b3a22118f48df9949441db2"
|
45
50
|
}
|
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
|
-
};
|