@trackunit/react-graphql-tools 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.14](https://github.com/Trackunit/manager/compare/react-graphql-tools/0.0.13...react-graphql-tools/0.0.14) (2023-05-11)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `test-setup` updated to version `0.0.1`
5
10
  ## [0.0.13](https://github.com/Trackunit/manager/compare/react-graphql-tools/0.0.12...react-graphql-tools/0.0.13) (2023-05-04)
6
11
 
7
12
  ## [0.0.12](https://github.com/Trackunit/manager/compare/react-graphql-tools/0.0.11...react-graphql-tools/0.0.12) (2023-05-04)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-graphql-tools",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "main": "src/index.js",
5
5
  "executors": "./executors.json",
6
6
  "repository": "https://github.com/Trackunit/manager",
@@ -10,7 +10,7 @@
10
10
  "@graphql-codegen/fragment-matcher": "4.0.1",
11
11
  "@graphql-codegen/typescript-operations": "3.0.4",
12
12
  "@graphql-codegen/typescript-react-apollo": "3.3.7",
13
- "@react-google-maps/api": "2.17.1",
13
+ "@react-google-maps/api": "2.18.1",
14
14
  "@react-spring/web": "9.6.0",
15
15
  "graphql": "15.8.0",
16
16
  "i18next": "21.10.0",
@@ -21,10 +21,12 @@ const CreateGraphqlHooks = (_unused, context) => tslib_1.__awaiter(void 0, void
21
21
  const fullLibRoot = `${nxRoot}/${libRoot}`;
22
22
  const filePath = (0, path_1.join)(__dirname, "..", "..", "..", "..", "..", "..", "libs", "api", "public-gql-schema", "src", "public-schema.gql");
23
23
  if ((0, fs_1.existsSync)(filePath)) {
24
- yield (0, generateHooks_1.generateHooks)(filePath, fullLibRoot + "/src");
24
+ yield (0, generateHooks_1.generateHooks)(filePath, fullLibRoot + "/src", context.root, { isVerbose: context.isVerbose });
25
25
  }
26
26
  else {
27
- yield (0, generateHooks_1.generateHooks)("https://iris.trackunit.com/api/graphql/", fullLibRoot + "/src");
27
+ yield (0, generateHooks_1.generateHooks)("https://iris.trackunit.com/api/graphql/", fullLibRoot + "/src", context.root, {
28
+ isVerbose: context.isVerbose,
29
+ });
28
30
  }
29
31
  return { success: 1 };
30
32
  });
@@ -1 +1 @@
1
- {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../../../libs/react/graphql-tools/src/executors/createHooks/executor.ts"],"names":[],"mappings":";;;;AACA,2BAAgC;AAChC,+BAA4B;AAC5B,mDAAgD;AAEhD;;;;;;GAMG;AACI,MAAM,kBAAkB,GAAG,CAAO,OAAgB,EAAE,OAAwB,EAAE,EAAE;IACrF,MAAM,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;IACjC,IAAI,CAAC,OAAO,CAAC,sBAAsB,EAAE;QACnC,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;KAC/D;IACD,MAAM,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAY,CAAC,CAAC,IAAI,CAAC;IACnF,MAAM,WAAW,GAAG,GAAG,MAAM,IAAI,OAAO,EAAE,CAAC;IAC3C,MAAM,QAAQ,GAAG,IAAA,WAAI,EACnB,SAAS,EACT,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,MAAM,EACN,KAAK,EACL,mBAAmB,EACnB,KAAK,EACL,mBAAmB,CACpB,CAAC;IACF,IAAI,IAAA,eAAU,EAAC,QAAQ,CAAC,EAAE;QACxB,MAAM,IAAA,6BAAa,EAAC,QAAQ,EAAE,WAAW,GAAG,MAAM,CAAC,CAAC;KACrD;SAAM;QACL,MAAM,IAAA,6BAAa,EAAC,yCAAyC,EAAE,WAAW,GAAG,MAAM,CAAC,CAAC;KACtF;IACD,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;AACxB,CAAC,CAAA,CAAC;AA3BW,QAAA,kBAAkB,sBA2B7B;AAEF,kBAAe,0BAAkB,CAAC","sourcesContent":["import { ExecutorContext } from \"@nrwl/devkit\";\nimport { existsSync } from \"fs\";\nimport { join } from \"path\";\nimport { generateHooks } from \"./generateHooks\";\n\n/**\n * This executor generates react hooks for all graphql files.\n *\n * @param _unused unused props from nx\n * @param context The execution context for this executor\n * @returns {Promise<{ success: number; }>} success when finished\n */\nexport const CreateGraphqlHooks = async (_unused: unknown, context: ExecutorContext) => {\n const nxRoot = `${context.root}`;\n if (!context.projectsConfigurations) {\n throw new Error(\"context projectsConfigurations is required\");\n }\n const libRoot = context.projectsConfigurations.projects[context.projectName!].root;\n const fullLibRoot = `${nxRoot}/${libRoot}`;\n const filePath = join(\n __dirname,\n \"..\",\n \"..\",\n \"..\",\n \"..\",\n \"..\",\n \"..\",\n \"libs\",\n \"api\",\n \"public-gql-schema\",\n \"src\",\n \"public-schema.gql\"\n );\n if (existsSync(filePath)) {\n await generateHooks(filePath, fullLibRoot + \"/src\");\n } else {\n await generateHooks(\"https://iris.trackunit.com/api/graphql/\", fullLibRoot + \"/src\");\n }\n return { success: 1 };\n};\n\nexport default CreateGraphqlHooks;\n"]}
1
+ {"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../../../libs/react/graphql-tools/src/executors/createHooks/executor.ts"],"names":[],"mappings":";;;;AACA,2BAAgC;AAChC,+BAA4B;AAC5B,mDAAgD;AAEhD;;;;;;GAMG;AACI,MAAM,kBAAkB,GAAG,CAAO,OAAgB,EAAE,OAAwB,EAAE,EAAE;IACrF,MAAM,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;IACjC,IAAI,CAAC,OAAO,CAAC,sBAAsB,EAAE;QACnC,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;KAC/D;IACD,MAAM,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAY,CAAC,CAAC,IAAI,CAAC;IACnF,MAAM,WAAW,GAAG,GAAG,MAAM,IAAI,OAAO,EAAE,CAAC;IAC3C,MAAM,QAAQ,GAAG,IAAA,WAAI,EACnB,SAAS,EACT,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,IAAI,EACJ,MAAM,EACN,KAAK,EACL,mBAAmB,EACnB,KAAK,EACL,mBAAmB,CACpB,CAAC;IACF,IAAI,IAAA,eAAU,EAAC,QAAQ,CAAC,EAAE;QACxB,MAAM,IAAA,6BAAa,EAAC,QAAQ,EAAE,WAAW,GAAG,MAAM,EAAE,OAAO,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,OAAO,CAAC,SAAS,EAAE,CAAC,CAAC;KACrG;SAAM;QACL,MAAM,IAAA,6BAAa,EAAC,yCAAyC,EAAE,WAAW,GAAG,MAAM,EAAE,OAAO,CAAC,IAAI,EAAE;YACjG,SAAS,EAAE,OAAO,CAAC,SAAS;SAC7B,CAAC,CAAC;KACJ;IACD,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;AACxB,CAAC,CAAA,CAAC;AA7BW,QAAA,kBAAkB,sBA6B7B;AAEF,kBAAe,0BAAkB,CAAC","sourcesContent":["import { ExecutorContext } from \"@nrwl/devkit\";\nimport { existsSync } from \"fs\";\nimport { join } from \"path\";\nimport { generateHooks } from \"./generateHooks\";\n\n/**\n * This executor generates react hooks for all graphql files.\n *\n * @param _unused unused props from nx\n * @param context The execution context for this executor\n * @returns {Promise<{ success: number; }>} success when finished\n */\nexport const CreateGraphqlHooks = async (_unused: unknown, context: ExecutorContext) => {\n const nxRoot = `${context.root}`;\n if (!context.projectsConfigurations) {\n throw new Error(\"context projectsConfigurations is required\");\n }\n const libRoot = context.projectsConfigurations.projects[context.projectName!].root;\n const fullLibRoot = `${nxRoot}/${libRoot}`;\n const filePath = join(\n __dirname,\n \"..\",\n \"..\",\n \"..\",\n \"..\",\n \"..\",\n \"..\",\n \"libs\",\n \"api\",\n \"public-gql-schema\",\n \"src\",\n \"public-schema.gql\"\n );\n if (existsSync(filePath)) {\n await generateHooks(filePath, fullLibRoot + \"/src\", context.root, { isVerbose: context.isVerbose });\n } else {\n await generateHooks(\"https://iris.trackunit.com/api/graphql/\", fullLibRoot + \"/src\", context.root, {\n isVerbose: context.isVerbose,\n });\n }\n return { success: 1 };\n};\n\nexport default CreateGraphqlHooks;\n"]}
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.generateHooks = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const cli_1 = require("@graphql-codegen/cli");
6
+ const scrubFile_1 = require("./scrubFile");
6
7
  /**
7
8
  * Generates React hooks from your graphql files.
8
9
  *
@@ -14,20 +15,27 @@ const cli_1 = require("@graphql-codegen/cli");
14
15
  * @param options.plugins the options list of plugins to use.
15
16
  * @param options.overridePluginConfig the options list of overridePluginConfig.
16
17
  */
17
- const generateHooks = (schemaUrl, srcPath, options = {
18
- name: "generated/graphql-api.tsx",
19
- graphqlGlob: "*.graphql",
20
- plugins: ["typescript", "typescript-operations", "typescript-react-apollo", "fragment-matcher"],
21
- }) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
18
+ const generateHooks = (schemaUrl, srcPath, nxRoot, options) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
19
+ options = Object.assign({ name: "generated/graphql-api.tsx", graphqlGlob: "*.graphql", plugins: ["typescript", "typescript-operations", "typescript-react-apollo"] }, options);
22
20
  const codegenOptions = {
23
21
  generates: {},
24
22
  };
23
+ const outputFile = `${srcPath}/${options.name}`;
25
24
  codegenOptions.generates[`${srcPath}/${options.name}`] = Object.assign({ schema: schemaUrl, documents: `${srcPath}/**/${options.graphqlGlob}`, config: {
26
25
  withHooks: true,
27
26
  withHOC: false,
28
27
  withComponent: false,
28
+ declarationKind: {
29
+ // This makes scrubbing a lot easier! marking types as classes (then we remove those)
30
+ type: "class",
31
+ // This makes scrubbing a lot easier! marking input as interfaces (then we keep these)
32
+ input: "interface",
33
+ },
34
+ // We need to do this later after scrubbing
35
+ enumsAsConst: false,
36
+ noExport: true,
37
+ avoidOptionals: true,
29
38
  noNamespaces: true,
30
- declarationKind: "interface",
31
39
  namingConvention: {
32
40
  typeNames: "keep",
33
41
  enumValues: "pascal-case#pascalCase",
@@ -37,7 +45,11 @@ const generateHooks = (schemaUrl, srcPath, options = {
37
45
  DateTime: "Date",
38
46
  },
39
47
  }, plugins: options.plugins }, options.overridePluginConfig);
40
- yield (0, cli_1.generate)(codegenOptions, true).catch(e => {
48
+ yield (0, cli_1.generate)(codegenOptions, true)
49
+ .then(() => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
50
+ yield (0, scrubFile_1.scrubFile)(outputFile, nxRoot, options.isVerbose);
51
+ }))
52
+ .catch(e => {
41
53
  // eslint-disable-next-line no-console
42
54
  console.error("❌ There was an error generating GraphQL types", e);
43
55
  process.exit(1);
@@ -1 +1 @@
1
- {"version":3,"file":"generateHooks.js","sourceRoot":"","sources":["../../../../../../../libs/react/graphql-tools/src/executors/createHooks/generateHooks.ts"],"names":[],"mappings":";;;;AAAA,8CAA+D;AAE/D;;;;;;;;;;GAUG;AACI,MAAM,aAAa,GAAG,CAC3B,SAAiB,EACjB,OAAe,EACf,UAKI;IACF,IAAI,EAAE,2BAA2B;IACjC,WAAW,EAAE,WAAW;IACxB,OAAO,EAAE,CAAC,YAAY,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,kBAAkB,CAAC;CAChG,EACD,EAAE;IACF,MAAM,cAAc,GAAkB;QACpC,SAAS,EAAE,EAAE;KACd,CAAC;IAEF,cAAc,CAAC,SAAS,CAAC,GAAG,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC,mBACpD,MAAM,EAAE,SAAS,EACjB,SAAS,EAAE,GAAG,OAAO,OAAO,OAAO,CAAC,WAAW,EAAE,EACjD,MAAM,EAAE;YACN,SAAS,EAAE,IAAI;YACf,OAAO,EAAE,KAAK;YACd,aAAa,EAAE,KAAK;YACpB,YAAY,EAAE,IAAI;YAClB,eAAe,EAAE,WAAW;YAC5B,gBAAgB,EAAE;gBAChB,SAAS,EAAE,MAAM;gBACjB,UAAU,EAAE,wBAAwB;aACrC;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,MAAM;gBACZ,QAAQ,EAAE,MAAM;aACjB;SACF,EACD,OAAO,EAAE,OAAO,CAAC,OAAO,IACrB,OAAO,CAAC,oBAAoB,CAChC,CAAC;IAEF,MAAM,IAAA,cAAQ,EAAC,cAAc,EAAE,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE;QAC7C,sCAAsC;QACtC,OAAO,CAAC,KAAK,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC;QAClE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACL,CAAC,CAAA,CAAC;AA7CW,QAAA,aAAa,iBA6CxB","sourcesContent":["import { CodegenConfig, generate } from \"@graphql-codegen/cli\";\n\n/**\n * Generates React hooks from your graphql files.\n *\n * @param schemaUrl schema url to use.\n * @param srcPath the srcPath to look for options glob.\n * @param options the options to use.\n * @param options.name the name of the output file.\n * @param options.graphqlGlob the options glob allows you to override the default.\n * @param options.plugins the options list of plugins to use.\n * @param options.overridePluginConfig the options list of overridePluginConfig.\n */\nexport const generateHooks = async (\n schemaUrl: string,\n srcPath: string,\n options: {\n name: string;\n graphqlGlob: string;\n plugins: string[];\n overridePluginConfig?: CodegenConfig;\n } = {\n name: \"generated/graphql-api.tsx\",\n graphqlGlob: \"*.graphql\",\n plugins: [\"typescript\", \"typescript-operations\", \"typescript-react-apollo\", \"fragment-matcher\"],\n }\n) => {\n const codegenOptions: CodegenConfig = {\n generates: {},\n };\n\n codegenOptions.generates[`${srcPath}/${options.name}`] = {\n schema: schemaUrl,\n documents: `${srcPath}/**/${options.graphqlGlob}`,\n config: {\n withHooks: true,\n withHOC: false,\n withComponent: false,\n noNamespaces: true,\n declarationKind: \"interface\",\n namingConvention: {\n typeNames: \"keep\",\n enumValues: \"pascal-case#pascalCase\",\n },\n scalars: {\n Date: \"Date\",\n DateTime: \"Date\",\n },\n },\n plugins: options.plugins,\n ...options.overridePluginConfig,\n };\n\n await generate(codegenOptions, true).catch(e => {\n // eslint-disable-next-line no-console\n console.error(\"❌ There was an error generating GraphQL types\", e);\n process.exit(1);\n });\n};\n"]}
1
+ {"version":3,"file":"generateHooks.js","sourceRoot":"","sources":["../../../../../../../libs/react/graphql-tools/src/executors/createHooks/generateHooks.ts"],"names":[],"mappings":";;;;AAAA,8CAA+D;AAC/D,2CAAwC;AAExC;;;;;;;;;;GAUG;AACI,MAAM,aAAa,GAAG,CAC3B,SAAiB,EACjB,OAAe,EACf,MAAc,EACd,OAMC,EACD,EAAE;IACF,OAAO,mBACL,IAAI,EAAE,2BAA2B,EACjC,WAAW,EAAE,WAAW,EACxB,OAAO,EAAE,CAAC,YAAY,EAAE,uBAAuB,EAAE,yBAAyB,CAAC,IACxE,OAAO,CACX,CAAC;IAEF,MAAM,cAAc,GAAkB;QACpC,SAAS,EAAE,EAAE;KACd,CAAC;IACF,MAAM,UAAU,GAAG,GAAG,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;IAChD,cAAc,CAAC,SAAS,CAAC,GAAG,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC,mBACpD,MAAM,EAAE,SAAS,EACjB,SAAS,EAAE,GAAG,OAAO,OAAO,OAAO,CAAC,WAAW,EAAE,EACjD,MAAM,EAAE;YACN,SAAS,EAAE,IAAI;YACf,OAAO,EAAE,KAAK;YACd,aAAa,EAAE,KAAK;YACpB,eAAe,EAAE;gBACf,qFAAqF;gBACrF,IAAI,EAAE,OAAO;gBACb,sFAAsF;gBACtF,KAAK,EAAE,WAAW;aACnB;YACD,2CAA2C;YAC3C,YAAY,EAAE,KAAK;YACnB,QAAQ,EAAE,IAAI;YACd,cAAc,EAAE,IAAI;YACpB,YAAY,EAAE,IAAI;YAClB,gBAAgB,EAAE;gBAChB,SAAS,EAAE,MAAM;gBACjB,UAAU,EAAE,wBAAwB;aACrC;YACD,OAAO,EAAE;gBACP,IAAI,EAAE,MAAM;gBACZ,QAAQ,EAAE,MAAM;aACjB;SACF,EACD,OAAO,EAAE,OAAO,CAAC,OAAO,IACrB,OAAO,CAAC,oBAAoB,CAChC,CAAC;IAEF,MAAM,IAAA,cAAQ,EAAC,cAAc,EAAE,IAAI,CAAC;SACjC,IAAI,CAAC,GAAS,EAAE;QACf,MAAM,IAAA,qBAAS,EAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IACzD,CAAC,CAAA,CAAC;SACD,KAAK,CAAC,CAAC,CAAC,EAAE;QACT,sCAAsC;QACtC,OAAO,CAAC,KAAK,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC;QAClE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC,CAAC,CAAC;AACP,CAAC,CAAA,CAAC;AA/DW,QAAA,aAAa,iBA+DxB","sourcesContent":["import { CodegenConfig, generate } from \"@graphql-codegen/cli\";\nimport { scrubFile } from \"./scrubFile\";\n\n/**\n * Generates React hooks from your graphql files.\n *\n * @param schemaUrl schema url to use.\n * @param srcPath the srcPath to look for options glob.\n * @param options the options to use.\n * @param options.name the name of the output file.\n * @param options.graphqlGlob the options glob allows you to override the default.\n * @param options.plugins the options list of plugins to use.\n * @param options.overridePluginConfig the options list of overridePluginConfig.\n */\nexport const generateHooks = async (\n schemaUrl: string,\n srcPath: string,\n nxRoot: string,\n options: {\n isVerbose?: boolean;\n name?: string;\n graphqlGlob?: string;\n plugins?: string[];\n overridePluginConfig?: CodegenConfig;\n }\n) => {\n options = {\n name: \"generated/graphql-api.tsx\",\n graphqlGlob: \"*.graphql\",\n plugins: [\"typescript\", \"typescript-operations\", \"typescript-react-apollo\"],\n ...options,\n };\n\n const codegenOptions: CodegenConfig = {\n generates: {},\n };\n const outputFile = `${srcPath}/${options.name}`;\n codegenOptions.generates[`${srcPath}/${options.name}`] = {\n schema: schemaUrl,\n documents: `${srcPath}/**/${options.graphqlGlob}`,\n config: {\n withHooks: true,\n withHOC: false,\n withComponent: false,\n declarationKind: {\n // This makes scrubbing a lot easier! marking types as classes (then we remove those)\n type: \"class\",\n // This makes scrubbing a lot easier! marking input as interfaces (then we keep these)\n input: \"interface\",\n },\n // We need to do this later after scrubbing\n enumsAsConst: false,\n noExport: true,\n avoidOptionals: true,\n noNamespaces: true,\n namingConvention: {\n typeNames: \"keep\",\n enumValues: \"pascal-case#pascalCase\",\n },\n scalars: {\n Date: \"Date\",\n DateTime: \"Date\",\n },\n },\n plugins: options.plugins,\n ...options.overridePluginConfig,\n };\n\n await generate(codegenOptions, true)\n .then(async () => {\n await scrubFile(outputFile, nxRoot, options.isVerbose);\n })\n .catch(e => {\n // eslint-disable-next-line no-console\n console.error(\"❌ There was an error generating GraphQL types\", e);\n process.exit(1);\n });\n};\n"]}
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.scrubFile = void 0;
4
+ const tslib_1 = require("tslib");
5
+ /* eslint-disable no-console */
6
+ /* eslint-disable import/no-extraneous-dependencies */
7
+ /* eslint-disable @typescript-eslint/no-var-requires */
8
+ const fs = require("fs");
9
+ const path_1 = require("path");
10
+ const prettier = tslib_1.__importStar(require("prettier"));
11
+ const ts_morph_1 = require("ts-morph");
12
+ /**
13
+ * Removes unused identifiers from the source file.
14
+ *
15
+ * This does more then sourceFile.fixUnusedIdentifiers(diagnostic) as it also removes unused enums and interfaces.
16
+ *
17
+ * @param sourceFile The source file to remove unused identifiers from.
18
+ */
19
+ const removeUnusedIdentifiers = (sourceFile) => {
20
+ const diagnostics = sourceFile.getPreEmitDiagnostics();
21
+ diagnostics.forEach(diagnostic => {
22
+ var _a;
23
+ const messageText = diagnostic.getMessageText();
24
+ if (typeof messageText === "string" && messageText.startsWith("'")) {
25
+ const identifierName = (_a = messageText.match(/'([^']+)'/)) === null || _a === void 0 ? void 0 : _a[1];
26
+ if (identifierName) {
27
+ if (messageText.includes("is declared but never used")) {
28
+ const identifier = sourceFile.getVariableDeclaration(identifierName) ||
29
+ sourceFile.getInterface(identifierName) ||
30
+ sourceFile.getEnum(identifierName) ||
31
+ sourceFile.getClass(identifierName) ||
32
+ sourceFile.getTypeAlias(identifierName);
33
+ if (!identifier) {
34
+ console.log("Could not find: ", messageText);
35
+ }
36
+ else {
37
+ identifier.remove();
38
+ }
39
+ }
40
+ }
41
+ }
42
+ });
43
+ };
44
+ const convertEnumToConstObject = (enumDeclaration) => {
45
+ const enumName = enumDeclaration.getName();
46
+ const members = enumDeclaration.getMembers();
47
+ const properties = members.map(member => {
48
+ const name = member.getName();
49
+ const value = member.getValue();
50
+ return `${name}: '${value}'`;
51
+ });
52
+ const constObjectText = `export const ${enumName} = {\n ${properties.join(",\n ")},\n} as const;\nexport type ${enumName} = typeof ${enumName}[keyof typeof ${enumName}];`;
53
+ // Replace the EnumDeclaration with the const object text
54
+ enumDeclaration.replaceWithText(constObjectText);
55
+ };
56
+ /**
57
+ * Generates React hooks from your graphql files.
58
+ */
59
+ const scrubFile = (file, nxRoot, isVerbose) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
60
+ const start = new Date().getTime();
61
+ const project = new ts_morph_1.Project({
62
+ compilerOptions: {
63
+ noUnusedLocals: true,
64
+ noUnusedParameters: true,
65
+ },
66
+ });
67
+ project.addSourceFileAtPath(file);
68
+ const generatedFile = project.getSourceFileOrThrow(file);
69
+ generatedFile.insertStatements(0, "/* eslint-disable @typescript-eslint/no-explicit-any */");
70
+ generatedFile.insertStatements(1, "/* eslint-disable @typescript-eslint/array-type */");
71
+ // all return object types are defined as classes, where input types are defined as interfaces
72
+ // therefore we can remove all classes.
73
+ generatedFile.getClasses().forEach(node => {
74
+ node.remove();
75
+ });
76
+ let lastWidth = 0;
77
+ do {
78
+ lastWidth = generatedFile.getFullWidth();
79
+ removeUnusedIdentifiers(generatedFile);
80
+ if (isVerbose) {
81
+ console.log("Cleanup", lastWidth, generatedFile.getFullWidth());
82
+ }
83
+ } while (lastWidth !== generatedFile.getFullWidth());
84
+ generatedFile.getInterfaces().forEach(node => {
85
+ node.setIsExported(true);
86
+ });
87
+ generatedFile.getTypeAliases().forEach(node => {
88
+ node.setIsExported(true);
89
+ });
90
+ generatedFile.getVariableStatements().forEach(variableStatement => {
91
+ variableStatement.setIsExported(true);
92
+ });
93
+ generatedFile.getEnums().forEach(node => {
94
+ node.setIsExported(true);
95
+ convertEnumToConstObject(node);
96
+ });
97
+ generatedFile.formatText();
98
+ let options = null;
99
+ try {
100
+ options = prettier
101
+ .resolveConfig((0, path_1.join)(nxRoot, ".prettierrc"), {
102
+ useCache: false,
103
+ editorconfig: false,
104
+ config: (0, path_1.join)(nxRoot, ".prettierrc"),
105
+ })
106
+ .catch((error) => console.log(error));
107
+ }
108
+ catch (e) {
109
+ console.log(e);
110
+ }
111
+ if (!options) {
112
+ throw new Error("Could not find prettier config");
113
+ }
114
+ const prettierOptions = yield options;
115
+ let prettySrc = generatedFile.getFullText();
116
+ if (prettierOptions) {
117
+ prettierOptions.parser = "typescript";
118
+ prettySrc = prettier.format(generatedFile.getFullText(), prettierOptions);
119
+ }
120
+ fs.writeFileSync(file, prettySrc, { encoding: "utf-8" });
121
+ if (isVerbose) {
122
+ const end = new Date().getTime();
123
+ const time = end - start;
124
+ console.log("Execution time: " + time);
125
+ }
126
+ });
127
+ exports.scrubFile = scrubFile;
128
+ //# sourceMappingURL=scrubFile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scrubFile.js","sourceRoot":"","sources":["../../../../../../../libs/react/graphql-tools/src/executors/createHooks/scrubFile.ts"],"names":[],"mappings":"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","sourcesContent":["/* eslint-disable no-console */\n/* eslint-disable import/no-extraneous-dependencies */\n/* eslint-disable @typescript-eslint/no-var-requires */\nconst fs = require(\"fs\");\nimport { join } from \"path\";\nimport * as prettier from \"prettier\";\nimport { EnumDeclaration, Project, SourceFile } from \"ts-morph\";\n\n/**\n * Removes unused identifiers from the source file.\n *\n * This does more then sourceFile.fixUnusedIdentifiers(diagnostic) as it also removes unused enums and interfaces.\n *\n * @param sourceFile The source file to remove unused identifiers from.\n */\nconst removeUnusedIdentifiers = (sourceFile: SourceFile) => {\n const diagnostics = sourceFile.getPreEmitDiagnostics();\n diagnostics.forEach(diagnostic => {\n const messageText = diagnostic.getMessageText();\n\n if (typeof messageText === \"string\" && messageText.startsWith(\"'\")) {\n const identifierName = messageText.match(/'([^']+)'/)?.[1];\n if (identifierName) {\n if (messageText.includes(\"is declared but never used\")) {\n const identifier =\n sourceFile.getVariableDeclaration(identifierName) ||\n sourceFile.getInterface(identifierName) ||\n sourceFile.getEnum(identifierName) ||\n sourceFile.getClass(identifierName) ||\n sourceFile.getTypeAlias(identifierName);\n\n if (!identifier) {\n console.log(\"Could not find: \", messageText);\n } else {\n identifier.remove();\n }\n }\n }\n }\n });\n};\n\nconst convertEnumToConstObject = (enumDeclaration: EnumDeclaration) => {\n const enumName = enumDeclaration.getName();\n const members = enumDeclaration.getMembers();\n\n const properties = members.map(member => {\n const name = member.getName();\n const value = member.getValue();\n return `${name}: '${value}'`;\n });\n\n const constObjectText = `export const ${enumName} = {\\n ${properties.join(\n \",\\n \"\n )},\\n} as const;\\nexport type ${enumName} = typeof ${enumName}[keyof typeof ${enumName}];`;\n\n // Replace the EnumDeclaration with the const object text\n enumDeclaration.replaceWithText(constObjectText);\n};\n\n/**\n * Generates React hooks from your graphql files.\n */\nexport const scrubFile = async (file: string, nxRoot: string, isVerbose?: boolean) => {\n const start = new Date().getTime();\n\n const project = new Project({\n compilerOptions: {\n noUnusedLocals: true,\n noUnusedParameters: true,\n },\n });\n project.addSourceFileAtPath(file);\n\n const generatedFile = project.getSourceFileOrThrow(file);\n\n generatedFile.insertStatements(0, \"/* eslint-disable @typescript-eslint/no-explicit-any */\");\n generatedFile.insertStatements(1, \"/* eslint-disable @typescript-eslint/array-type */\");\n\n // all return object types are defined as classes, where input types are defined as interfaces\n // therefore we can remove all classes.\n generatedFile.getClasses().forEach(node => {\n node.remove();\n });\n\n let lastWidth = 0;\n do {\n lastWidth = generatedFile.getFullWidth();\n removeUnusedIdentifiers(generatedFile);\n if (isVerbose) {\n console.log(\"Cleanup\", lastWidth, generatedFile.getFullWidth());\n }\n } while (lastWidth !== generatedFile.getFullWidth());\n\n generatedFile.getInterfaces().forEach(node => {\n node.setIsExported(true);\n });\n generatedFile.getTypeAliases().forEach(node => {\n node.setIsExported(true);\n });\n generatedFile.getVariableStatements().forEach(variableStatement => {\n variableStatement.setIsExported(true);\n });\n generatedFile.getEnums().forEach(node => {\n node.setIsExported(true);\n convertEnumToConstObject(node);\n });\n\n generatedFile.formatText();\n\n let options = null;\n try {\n options = prettier\n .resolveConfig(join(nxRoot, \".prettierrc\"), {\n useCache: false,\n editorconfig: false,\n config: join(nxRoot, \".prettierrc\"),\n })\n .catch((error: Error) => console.log(error));\n } catch (e) {\n console.log(e);\n }\n if (!options) {\n throw new Error(\"Could not find prettier config\");\n }\n const prettierOptions = await options;\n let prettySrc = generatedFile.getFullText();\n\n if (prettierOptions) {\n prettierOptions.parser = \"typescript\";\n prettySrc = prettier.format(generatedFile.getFullText(), prettierOptions);\n }\n fs.writeFileSync(file, prettySrc, { encoding: \"utf-8\" });\n\n if (isVerbose) {\n const end = new Date().getTime();\n const time = end - start;\n console.log(\"Execution time: \" + time);\n }\n};\n"]}