@kubb/plugin-react-query 3.0.0-beta.10 → 3.0.0-beta.12
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/dist/{chunk-BML6BZ4F.cjs → chunk-EOG7AHFO.cjs} +22 -10
- package/dist/chunk-EOG7AHFO.cjs.map +1 -0
- package/dist/{chunk-JFIGHRBM.js → chunk-EY5KE7R7.js} +22 -10
- package/dist/chunk-EY5KE7R7.js.map +1 -0
- package/dist/{chunk-24SL7I66.cjs → chunk-NBC6BPMV.cjs} +129 -112
- package/dist/chunk-NBC6BPMV.cjs.map +1 -0
- package/dist/{chunk-LBVGJA4Q.js → chunk-NZKAIPYC.js} +118 -101
- package/dist/chunk-NZKAIPYC.js.map +1 -0
- package/dist/components.cjs +9 -9
- package/dist/components.d.cts +7 -5
- package/dist/components.d.ts +7 -5
- package/dist/components.js +1 -1
- package/dist/generators.cjs +6 -6
- package/dist/generators.d.cts +1 -1
- package/dist/generators.d.ts +1 -1
- package/dist/generators.js +2 -2
- package/dist/index.cjs +21 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +20 -22
- package/dist/index.js.map +1 -1
- package/dist/{types-Dlwxp28D.d.cts → types-IuxCCG1K.d.cts} +28 -14
- package/dist/{types-Dlwxp28D.d.ts → types-IuxCCG1K.d.ts} +28 -14
- package/package.json +11 -11
- package/src/components/MutationKey.tsx +11 -5
- package/src/components/QueryKey.tsx +17 -7
- package/src/generators/__snapshots__/clientDataReturnTypeFull.ts +1 -1
- package/src/generators/__snapshots__/clientGetImportPath.ts +1 -1
- package/src/generators/__snapshots__/findByTags.ts +1 -1
- package/src/generators/__snapshots__/findByTagsObject.ts +1 -1
- package/src/generators/__snapshots__/findByTagsPathParamsObject.ts +1 -1
- package/src/generators/__snapshots__/findByTagsWithCustomQueryKey.ts +2 -2
- package/src/generators/__snapshots__/findByTagsWithZod.ts +1 -1
- package/src/generators/__snapshots__/findInfiniteByTags.ts +1 -1
- package/src/generators/__snapshots__/findInfiniteByTagsCursor.ts +1 -1
- package/src/generators/__snapshots__/postAsQuery.ts +1 -1
- package/src/generators/infiniteQueryGenerator.tsx +39 -29
- package/src/generators/mutationGenerator.tsx +24 -16
- package/src/generators/queryGenerator.tsx +22 -18
- package/src/generators/suspenseQueryGenerator.tsx +24 -17
- package/src/plugin.ts +20 -19
- package/src/types.ts +25 -13
- package/dist/chunk-24SL7I66.cjs.map +0 -1
- package/dist/chunk-BML6BZ4F.cjs.map +0 -1
- package/dist/chunk-JFIGHRBM.js.map +0 -1
- package/dist/chunk-LBVGJA4Q.js.map +0 -1
package/dist/components.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Operation } from '@kubb/oas';
|
|
2
2
|
import { OperationSchemas } from '@kubb/plugin-oas';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
|
-
import { P as PluginReactQuery, I as Infinite } from './types-
|
|
4
|
+
import { P as PluginReactQuery, T as Transformer, I as Infinite } from './types-IuxCCG1K.cjs';
|
|
5
5
|
import { FunctionParams } from '@kubb/react';
|
|
6
6
|
import '@kubb/core';
|
|
7
7
|
|
|
@@ -52,15 +52,16 @@ type Props$5 = {
|
|
|
52
52
|
typeSchemas: OperationSchemas;
|
|
53
53
|
operation: Operation;
|
|
54
54
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
55
|
-
|
|
55
|
+
transformer: Transformer | undefined;
|
|
56
56
|
};
|
|
57
57
|
type GetParamsProps$5 = {
|
|
58
58
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
59
59
|
typeSchemas: OperationSchemas;
|
|
60
60
|
};
|
|
61
|
-
declare function QueryKey({ name, typeSchemas, pathParamsType, operation, typeName,
|
|
61
|
+
declare function QueryKey({ name, typeSchemas, pathParamsType, operation, typeName, transformer }: Props$5): ReactNode;
|
|
62
62
|
declare namespace QueryKey {
|
|
63
63
|
var getParams: ({ pathParamsType, typeSchemas }: GetParamsProps$5) => FunctionParams;
|
|
64
|
+
var getTransformer: Transformer;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
type Props$4 = {
|
|
@@ -69,15 +70,16 @@ type Props$4 = {
|
|
|
69
70
|
typeSchemas: OperationSchemas;
|
|
70
71
|
operation: Operation;
|
|
71
72
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
72
|
-
|
|
73
|
+
transformer: Transformer | undefined;
|
|
73
74
|
};
|
|
74
75
|
type GetParamsProps$4 = {
|
|
75
76
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
76
77
|
typeSchemas: OperationSchemas;
|
|
77
78
|
};
|
|
78
|
-
declare function MutationKey({ name, typeSchemas, pathParamsType, operation, typeName,
|
|
79
|
+
declare function MutationKey({ name, typeSchemas, pathParamsType, operation, typeName, transformer }: Props$4): ReactNode;
|
|
79
80
|
declare namespace MutationKey {
|
|
80
81
|
var getParams: ({}: GetParamsProps$4) => FunctionParams;
|
|
82
|
+
var getTransformer: Transformer;
|
|
81
83
|
}
|
|
82
84
|
|
|
83
85
|
type Props$3 = {
|
package/dist/components.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Operation } from '@kubb/oas';
|
|
2
2
|
import { OperationSchemas } from '@kubb/plugin-oas';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
|
-
import { P as PluginReactQuery, I as Infinite } from './types-
|
|
4
|
+
import { P as PluginReactQuery, T as Transformer, I as Infinite } from './types-IuxCCG1K.js';
|
|
5
5
|
import { FunctionParams } from '@kubb/react';
|
|
6
6
|
import '@kubb/core';
|
|
7
7
|
|
|
@@ -52,15 +52,16 @@ type Props$5 = {
|
|
|
52
52
|
typeSchemas: OperationSchemas;
|
|
53
53
|
operation: Operation;
|
|
54
54
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
55
|
-
|
|
55
|
+
transformer: Transformer | undefined;
|
|
56
56
|
};
|
|
57
57
|
type GetParamsProps$5 = {
|
|
58
58
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
59
59
|
typeSchemas: OperationSchemas;
|
|
60
60
|
};
|
|
61
|
-
declare function QueryKey({ name, typeSchemas, pathParamsType, operation, typeName,
|
|
61
|
+
declare function QueryKey({ name, typeSchemas, pathParamsType, operation, typeName, transformer }: Props$5): ReactNode;
|
|
62
62
|
declare namespace QueryKey {
|
|
63
63
|
var getParams: ({ pathParamsType, typeSchemas }: GetParamsProps$5) => FunctionParams;
|
|
64
|
+
var getTransformer: Transformer;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
type Props$4 = {
|
|
@@ -69,15 +70,16 @@ type Props$4 = {
|
|
|
69
70
|
typeSchemas: OperationSchemas;
|
|
70
71
|
operation: Operation;
|
|
71
72
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
72
|
-
|
|
73
|
+
transformer: Transformer | undefined;
|
|
73
74
|
};
|
|
74
75
|
type GetParamsProps$4 = {
|
|
75
76
|
pathParamsType: PluginReactQuery['resolvedOptions']['pathParamsType'];
|
|
76
77
|
typeSchemas: OperationSchemas;
|
|
77
78
|
};
|
|
78
|
-
declare function MutationKey({ name, typeSchemas, pathParamsType, operation, typeName,
|
|
79
|
+
declare function MutationKey({ name, typeSchemas, pathParamsType, operation, typeName, transformer }: Props$4): ReactNode;
|
|
79
80
|
declare namespace MutationKey {
|
|
80
81
|
var getParams: ({}: GetParamsProps$4) => FunctionParams;
|
|
82
|
+
var getTransformer: Transformer;
|
|
81
83
|
}
|
|
82
84
|
|
|
83
85
|
type Props$3 = {
|
package/dist/components.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { InfiniteQuery, InfiniteQueryOptions, Mutation, MutationKey, Query, QueryKey, QueryOptions, SuspenseQuery } from './chunk-
|
|
1
|
+
export { InfiniteQuery, InfiniteQueryOptions, Mutation, MutationKey, Query, QueryKey, QueryOptions, SuspenseQuery } from './chunk-EY5KE7R7.js';
|
|
2
2
|
//# sourceMappingURL=components.js.map
|
|
3
3
|
//# sourceMappingURL=components.js.map
|
package/dist/generators.cjs
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var chunkNBC6BPMV_cjs = require('./chunk-NBC6BPMV.cjs');
|
|
4
|
+
require('./chunk-EOG7AHFO.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "infiniteQueryGenerator", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkNBC6BPMV_cjs.infiniteQueryGenerator; }
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "mutationGenerator", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkNBC6BPMV_cjs.mutationGenerator; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "queryGenerator", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkNBC6BPMV_cjs.queryGenerator; }
|
|
19
19
|
});
|
|
20
20
|
Object.defineProperty(exports, "suspenseQueryGenerator", {
|
|
21
21
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkNBC6BPMV_cjs.suspenseQueryGenerator; }
|
|
23
23
|
});
|
|
24
24
|
//# sourceMappingURL=generators.cjs.map
|
|
25
25
|
//# sourceMappingURL=generators.cjs.map
|
package/dist/generators.d.cts
CHANGED
package/dist/generators.d.ts
CHANGED
package/dist/generators.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseQueryGenerator } from './chunk-
|
|
2
|
-
import './chunk-
|
|
1
|
+
export { infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseQueryGenerator } from './chunk-NZKAIPYC.js';
|
|
2
|
+
import './chunk-EY5KE7R7.js';
|
|
3
3
|
//# sourceMappingURL=generators.js.map
|
|
4
4
|
//# sourceMappingURL=generators.js.map
|
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
3
|
+
var chunkNBC6BPMV_cjs = require('./chunk-NBC6BPMV.cjs');
|
|
4
|
+
var chunkEOG7AHFO_cjs = require('./chunk-EOG7AHFO.cjs');
|
|
5
5
|
var path = require('path');
|
|
6
6
|
var core = require('@kubb/core');
|
|
7
7
|
var transformers = require('@kubb/core/transformers');
|
|
@@ -27,15 +27,16 @@ var pluginReactQuery = core.createPlugin((options) => {
|
|
|
27
27
|
transformers: transformers$1 = {},
|
|
28
28
|
paramsType = "inline",
|
|
29
29
|
pathParamsType = "inline",
|
|
30
|
-
generators = [
|
|
30
|
+
generators = [chunkNBC6BPMV_cjs.queryGenerator, chunkNBC6BPMV_cjs.suspenseQueryGenerator, chunkNBC6BPMV_cjs.infiniteQueryGenerator, chunkNBC6BPMV_cjs.mutationGenerator].filter(Boolean),
|
|
31
31
|
mutation = {},
|
|
32
|
-
query = {}
|
|
32
|
+
query = {},
|
|
33
|
+
mutationKey = chunkEOG7AHFO_cjs.MutationKey.getTransformer,
|
|
34
|
+
queryKey = chunkEOG7AHFO_cjs.QueryKey.getTransformer
|
|
33
35
|
} = options;
|
|
34
36
|
return {
|
|
35
37
|
name: pluginReactQueryName,
|
|
36
38
|
options: {
|
|
37
39
|
output,
|
|
38
|
-
baseURL: void 0,
|
|
39
40
|
client: {
|
|
40
41
|
importPath: "@kubb/plugin-client/client",
|
|
41
42
|
dataReturnType: "data",
|
|
@@ -48,14 +49,14 @@ var pluginReactQuery = core.createPlugin((options) => {
|
|
|
48
49
|
...infinite
|
|
49
50
|
} : false,
|
|
50
51
|
suspense,
|
|
52
|
+
queryKey,
|
|
51
53
|
query: {
|
|
52
|
-
key: (key) => key,
|
|
53
54
|
methods: ["get"],
|
|
54
55
|
importPath: "@tanstack/react-query",
|
|
55
56
|
...query
|
|
56
57
|
},
|
|
58
|
+
mutationKey,
|
|
57
59
|
mutation: {
|
|
58
|
-
key: (key) => key,
|
|
59
60
|
methods: ["post", "put", "patch", "delete"],
|
|
60
61
|
importPath: "@tanstack/react-query",
|
|
61
62
|
...mutation
|
|
@@ -98,22 +99,19 @@ var pluginReactQuery = core.createPlugin((options) => {
|
|
|
98
99
|
const root = path__default.default.resolve(this.config.root, this.config.output.path);
|
|
99
100
|
const mode = core.FileManager.getMode(path__default.default.resolve(root, output.path));
|
|
100
101
|
const baseURL = await swaggerPlugin.context.getBaseURL();
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
mode
|
|
115
|
-
}
|
|
116
|
-
);
|
|
102
|
+
if (baseURL) {
|
|
103
|
+
this.plugin.options.client.baseURL = baseURL;
|
|
104
|
+
}
|
|
105
|
+
const operationGenerator = new pluginOas.OperationGenerator(this.plugin.options, {
|
|
106
|
+
oas,
|
|
107
|
+
pluginManager: this.pluginManager,
|
|
108
|
+
plugin: this.plugin,
|
|
109
|
+
contentType: swaggerPlugin.context.contentType,
|
|
110
|
+
exclude,
|
|
111
|
+
include,
|
|
112
|
+
override,
|
|
113
|
+
mode
|
|
114
|
+
});
|
|
117
115
|
const files = await operationGenerator.build(...generators);
|
|
118
116
|
await this.addFile(...files);
|
|
119
117
|
const barrelFiles = await this.fileManager.getBarrelFiles({
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/plugin.ts"],"names":["createPlugin","transformers","queryGenerator","suspenseQueryGenerator","infiniteQueryGenerator","mutationGenerator","pluginOasName","pluginTsName","pluginZodName","options","path","FileManager","camelCase","pascalCase","PluginManager","OperationGenerator"],"mappings":";;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"sources":["../src/plugin.ts"],"names":["createPlugin","transformers","queryGenerator","suspenseQueryGenerator","infiniteQueryGenerator","mutationGenerator","MutationKey","QueryKey","pluginOasName","pluginTsName","pluginZodName","options","path","FileManager","camelCase","pascalCase","PluginManager","OperationGenerator"],"mappings":"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","file":"index.cjs","sourcesContent":["import path from 'node:path'\n\nimport { FileManager, type Group, PluginManager, createPlugin } from '@kubb/core'\nimport { camelCase, pascalCase } from '@kubb/core/transformers'\nimport { OperationGenerator, pluginOasName } from '@kubb/plugin-oas'\n\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas } from '@kubb/plugin-oas'\nimport { MutationKey } from './components'\nimport { QueryKey } from './components/QueryKey.tsx'\nimport { infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseQueryGenerator } from './generators'\nimport type { PluginReactQuery } from './types.ts'\n\nexport const pluginReactQueryName = 'plugin-react-query' satisfies PluginReactQuery['name']\n\nexport const pluginReactQuery = createPlugin<PluginReactQuery>((options) => {\n const {\n output = { path: 'hooks', barrelType: 'named' },\n group,\n exclude = [],\n include,\n override = [],\n parser = 'client',\n suspense = {},\n infinite = false,\n transformers = {},\n paramsType = 'inline',\n pathParamsType = 'inline',\n generators = [queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator].filter(Boolean),\n mutation = {},\n query = {},\n mutationKey = MutationKey.getTransformer,\n queryKey = QueryKey.getTransformer,\n } = options\n\n return {\n name: pluginReactQueryName,\n options: {\n output,\n client: {\n importPath: '@kubb/plugin-client/client',\n dataReturnType: 'data',\n ...options.client,\n },\n infinite: infinite\n ? {\n queryParam: 'id',\n initialPageParam: 0,\n cursorParam: undefined,\n ...infinite,\n }\n : false,\n suspense,\n queryKey,\n query: {\n methods: ['get'],\n importPath: '@tanstack/react-query',\n ...query,\n },\n mutationKey,\n mutation: {\n methods: ['post', 'put', 'patch', 'delete'],\n importPath: '@tanstack/react-query',\n ...mutation,\n },\n paramsType,\n pathParamsType: paramsType === 'object' ? 'object' : pathParamsType,\n parser,\n },\n pre: [pluginOasName, pluginTsName, parser === 'zod' ? pluginZodName : undefined].filter(Boolean),\n resolvePath(baseName, pathMode, options) {\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = pathMode ?? FileManager.getMode(path.resolve(root, output.path))\n\n if (options?.tag && group?.type === 'tag') {\n const groupName: Group['name'] = group?.name ? group.name : (ctx) => `${ctx.group}Controller`\n\n return path.resolve(root, output.path, groupName({ group: camelCase(options.tag) }), baseName)\n }\n\n if (mode === 'single') {\n /**\n * when output is a file then we will always append to the same file(output file), see fileManager.addOrAppend\n * Other plugins then need to call addOrAppend instead of just add from the fileManager class\n */\n return path.resolve(root, output.path)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n let resolvedName = camelCase(name)\n\n if (type === 'file' || type === 'function') {\n resolvedName = camelCase(name, {\n isFile: type === 'file',\n })\n }\n if (type === 'type') {\n resolvedName = pascalCase(name)\n }\n\n if (type) {\n return transformers?.name?.(resolvedName, type) || resolvedName\n }\n\n return resolvedName\n },\n async buildStart() {\n const [swaggerPlugin]: [Plugin<PluginOas>] = PluginManager.getDependedPlugins<PluginOas>(this.plugins, [pluginOasName])\n\n const oas = await swaggerPlugin.context.getOas()\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = FileManager.getMode(path.resolve(root, output.path))\n const baseURL = await swaggerPlugin.context.getBaseURL()\n\n if (baseURL) {\n this.plugin.options.client.baseURL = baseURL\n }\n\n const operationGenerator = new OperationGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.context.contentType,\n exclude,\n include,\n override,\n mode,\n })\n\n const files = await operationGenerator.build(...generators)\n await this.addFile(...files)\n\n const barrelFiles = await this.fileManager.getBarrelFiles({\n type: output.barrelType ?? 'named',\n root,\n output,\n files: this.fileManager.files,\n meta: {\n pluginKey: this.plugin.key,\n },\n logger: this.logger,\n })\n\n await this.addFile(...barrelFiles)\n },\n }\n})\n"]}
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator } from './chunk-
|
|
2
|
-
import './chunk-
|
|
1
|
+
import { queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator } from './chunk-NZKAIPYC.js';
|
|
2
|
+
import { MutationKey, QueryKey } from './chunk-EY5KE7R7.js';
|
|
3
3
|
import path from 'node:path';
|
|
4
4
|
import { createPlugin, FileManager, PluginManager } from '@kubb/core';
|
|
5
5
|
import { camelCase, pascalCase } from '@kubb/core/transformers';
|
|
@@ -23,13 +23,14 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
23
23
|
pathParamsType = "inline",
|
|
24
24
|
generators = [queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator].filter(Boolean),
|
|
25
25
|
mutation = {},
|
|
26
|
-
query = {}
|
|
26
|
+
query = {},
|
|
27
|
+
mutationKey = MutationKey.getTransformer,
|
|
28
|
+
queryKey = QueryKey.getTransformer
|
|
27
29
|
} = options;
|
|
28
30
|
return {
|
|
29
31
|
name: pluginReactQueryName,
|
|
30
32
|
options: {
|
|
31
33
|
output,
|
|
32
|
-
baseURL: void 0,
|
|
33
34
|
client: {
|
|
34
35
|
importPath: "@kubb/plugin-client/client",
|
|
35
36
|
dataReturnType: "data",
|
|
@@ -42,14 +43,14 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
42
43
|
...infinite
|
|
43
44
|
} : false,
|
|
44
45
|
suspense,
|
|
46
|
+
queryKey,
|
|
45
47
|
query: {
|
|
46
|
-
key: (key) => key,
|
|
47
48
|
methods: ["get"],
|
|
48
49
|
importPath: "@tanstack/react-query",
|
|
49
50
|
...query
|
|
50
51
|
},
|
|
52
|
+
mutationKey,
|
|
51
53
|
mutation: {
|
|
52
|
-
key: (key) => key,
|
|
53
54
|
methods: ["post", "put", "patch", "delete"],
|
|
54
55
|
importPath: "@tanstack/react-query",
|
|
55
56
|
...mutation
|
|
@@ -92,22 +93,19 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
92
93
|
const root = path.resolve(this.config.root, this.config.output.path);
|
|
93
94
|
const mode = FileManager.getMode(path.resolve(root, output.path));
|
|
94
95
|
const baseURL = await swaggerPlugin.context.getBaseURL();
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
mode
|
|
109
|
-
}
|
|
110
|
-
);
|
|
96
|
+
if (baseURL) {
|
|
97
|
+
this.plugin.options.client.baseURL = baseURL;
|
|
98
|
+
}
|
|
99
|
+
const operationGenerator = new OperationGenerator(this.plugin.options, {
|
|
100
|
+
oas,
|
|
101
|
+
pluginManager: this.pluginManager,
|
|
102
|
+
plugin: this.plugin,
|
|
103
|
+
contentType: swaggerPlugin.context.contentType,
|
|
104
|
+
exclude,
|
|
105
|
+
include,
|
|
106
|
+
override,
|
|
107
|
+
mode
|
|
108
|
+
});
|
|
111
109
|
const files = await operationGenerator.build(...generators);
|
|
112
110
|
await this.addFile(...files);
|
|
113
111
|
const barrelFiles = await this.fileManager.getBarrelFiles({
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/plugin.ts"],"names":["options"],"mappings":";;;;;;;;;
|
|
1
|
+
{"version":3,"sources":["../src/plugin.ts"],"names":["options"],"mappings":"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","file":"index.js","sourcesContent":["import path from 'node:path'\n\nimport { FileManager, type Group, PluginManager, createPlugin } from '@kubb/core'\nimport { camelCase, pascalCase } from '@kubb/core/transformers'\nimport { OperationGenerator, pluginOasName } from '@kubb/plugin-oas'\n\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas } from '@kubb/plugin-oas'\nimport { MutationKey } from './components'\nimport { QueryKey } from './components/QueryKey.tsx'\nimport { infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseQueryGenerator } from './generators'\nimport type { PluginReactQuery } from './types.ts'\n\nexport const pluginReactQueryName = 'plugin-react-query' satisfies PluginReactQuery['name']\n\nexport const pluginReactQuery = createPlugin<PluginReactQuery>((options) => {\n const {\n output = { path: 'hooks', barrelType: 'named' },\n group,\n exclude = [],\n include,\n override = [],\n parser = 'client',\n suspense = {},\n infinite = false,\n transformers = {},\n paramsType = 'inline',\n pathParamsType = 'inline',\n generators = [queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator].filter(Boolean),\n mutation = {},\n query = {},\n mutationKey = MutationKey.getTransformer,\n queryKey = QueryKey.getTransformer,\n } = options\n\n return {\n name: pluginReactQueryName,\n options: {\n output,\n client: {\n importPath: '@kubb/plugin-client/client',\n dataReturnType: 'data',\n ...options.client,\n },\n infinite: infinite\n ? {\n queryParam: 'id',\n initialPageParam: 0,\n cursorParam: undefined,\n ...infinite,\n }\n : false,\n suspense,\n queryKey,\n query: {\n methods: ['get'],\n importPath: '@tanstack/react-query',\n ...query,\n },\n mutationKey,\n mutation: {\n methods: ['post', 'put', 'patch', 'delete'],\n importPath: '@tanstack/react-query',\n ...mutation,\n },\n paramsType,\n pathParamsType: paramsType === 'object' ? 'object' : pathParamsType,\n parser,\n },\n pre: [pluginOasName, pluginTsName, parser === 'zod' ? pluginZodName : undefined].filter(Boolean),\n resolvePath(baseName, pathMode, options) {\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = pathMode ?? FileManager.getMode(path.resolve(root, output.path))\n\n if (options?.tag && group?.type === 'tag') {\n const groupName: Group['name'] = group?.name ? group.name : (ctx) => `${ctx.group}Controller`\n\n return path.resolve(root, output.path, groupName({ group: camelCase(options.tag) }), baseName)\n }\n\n if (mode === 'single') {\n /**\n * when output is a file then we will always append to the same file(output file), see fileManager.addOrAppend\n * Other plugins then need to call addOrAppend instead of just add from the fileManager class\n */\n return path.resolve(root, output.path)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n let resolvedName = camelCase(name)\n\n if (type === 'file' || type === 'function') {\n resolvedName = camelCase(name, {\n isFile: type === 'file',\n })\n }\n if (type === 'type') {\n resolvedName = pascalCase(name)\n }\n\n if (type) {\n return transformers?.name?.(resolvedName, type) || resolvedName\n }\n\n return resolvedName\n },\n async buildStart() {\n const [swaggerPlugin]: [Plugin<PluginOas>] = PluginManager.getDependedPlugins<PluginOas>(this.plugins, [pluginOasName])\n\n const oas = await swaggerPlugin.context.getOas()\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = FileManager.getMode(path.resolve(root, output.path))\n const baseURL = await swaggerPlugin.context.getBaseURL()\n\n if (baseURL) {\n this.plugin.options.client.baseURL = baseURL\n }\n\n const operationGenerator = new OperationGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.context.contentType,\n exclude,\n include,\n override,\n mode,\n })\n\n const files = await operationGenerator.build(...generators)\n await this.addFile(...files)\n\n const barrelFiles = await this.fileManager.getBarrelFiles({\n type: output.barrelType ?? 'named',\n root,\n output,\n files: this.fileManager.files,\n meta: {\n pluginKey: this.plugin.key,\n },\n logger: this.logger,\n })\n\n await this.addFile(...barrelFiles)\n },\n }\n})\n"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PluginFactoryOptions, Output, Group, ResolveNameParams } from '@kubb/core';
|
|
2
|
-
import { HttpMethod } from '@kubb/oas';
|
|
3
|
-
import { ResolvePathOptions, Exclude, Include, Override, Generator } from '@kubb/plugin-oas';
|
|
2
|
+
import { Operation, HttpMethod } from '@kubb/oas';
|
|
3
|
+
import { ResolvePathOptions, Exclude, Include, Override, Generator, OperationSchemas } from '@kubb/plugin-oas';
|
|
4
4
|
|
|
5
5
|
type Options$1 = {
|
|
6
6
|
/**
|
|
@@ -36,6 +36,10 @@ type Options$1 = {
|
|
|
36
36
|
* @default '@kubb/plugin-client/client'
|
|
37
37
|
*/
|
|
38
38
|
importPath?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Allows you to set a custom base url for all generated calls.
|
|
41
|
+
*/
|
|
42
|
+
baseURL?: string;
|
|
39
43
|
/**
|
|
40
44
|
* ReturnType that will be used when calling the client.
|
|
41
45
|
* - 'data' will return ResponseConfig[data].
|
|
@@ -86,12 +90,21 @@ type ResolvedOptions$1 = {
|
|
|
86
90
|
};
|
|
87
91
|
type PluginClient = PluginFactoryOptions<'plugin-client', Options$1, ResolvedOptions$1, never, ResolvePathOptions>;
|
|
88
92
|
|
|
93
|
+
type TransformerProps = {
|
|
94
|
+
operation: Operation;
|
|
95
|
+
schemas: OperationSchemas;
|
|
96
|
+
};
|
|
97
|
+
type Transformer = (props: TransformerProps) => unknown[];
|
|
89
98
|
type Suspense = object;
|
|
99
|
+
/**
|
|
100
|
+
* Customize the queryKey
|
|
101
|
+
*/
|
|
102
|
+
type QueryKey = Transformer;
|
|
103
|
+
/**
|
|
104
|
+
* Customize the mutationKey
|
|
105
|
+
*/
|
|
106
|
+
type MutationKey = Transformer;
|
|
90
107
|
type Query = {
|
|
91
|
-
/**
|
|
92
|
-
* Customize the queryKey, here you can specify a suffix.
|
|
93
|
-
*/
|
|
94
|
-
key: (key: unknown[]) => unknown[];
|
|
95
108
|
/**
|
|
96
109
|
* Define which HttpMethods can be used for queries
|
|
97
110
|
* @default ['get']
|
|
@@ -107,10 +120,6 @@ type Query = {
|
|
|
107
120
|
importPath?: string;
|
|
108
121
|
};
|
|
109
122
|
type Mutation = {
|
|
110
|
-
/**
|
|
111
|
-
* Customize the queryKey, here you can specify a suffix.
|
|
112
|
-
*/
|
|
113
|
-
key: (key: unknown[]) => unknown[];
|
|
114
123
|
/**
|
|
115
124
|
* Define which HttpMethods can be used for mutations
|
|
116
125
|
* @default ['post', 'put', 'delete']
|
|
@@ -151,7 +160,7 @@ type Options = {
|
|
|
151
160
|
* Group the @tanstack/query hooks based on the provided name.
|
|
152
161
|
*/
|
|
153
162
|
group?: Group;
|
|
154
|
-
client?: Pick<PluginClient['options'], 'dataReturnType' | 'importPath'>;
|
|
163
|
+
client?: Pick<PluginClient['options'], 'dataReturnType' | 'importPath' | 'baseURL'>;
|
|
155
164
|
/**
|
|
156
165
|
* Array containing exclude parameters to exclude/skip tags/operations/methods/paths.
|
|
157
166
|
*/
|
|
@@ -186,10 +195,12 @@ type Options = {
|
|
|
186
195
|
* When set, a suspenseQuery hooks will be added.
|
|
187
196
|
*/
|
|
188
197
|
suspense?: Partial<Suspense> | false;
|
|
198
|
+
queryKey?: QueryKey;
|
|
189
199
|
/**
|
|
190
200
|
* Override some useQuery behaviours.
|
|
191
201
|
*/
|
|
192
202
|
query?: Partial<Query> | false;
|
|
203
|
+
mutationKey?: MutationKey;
|
|
193
204
|
/**
|
|
194
205
|
* Override some useMutation behaviours.
|
|
195
206
|
*/
|
|
@@ -212,8 +223,9 @@ type Options = {
|
|
|
212
223
|
};
|
|
213
224
|
type ResolvedOptions = {
|
|
214
225
|
output: Output;
|
|
215
|
-
|
|
216
|
-
|
|
226
|
+
client: Required<Omit<NonNullable<PluginReactQuery['options']['client']>, 'baseURL'>> & {
|
|
227
|
+
baseURL?: string;
|
|
228
|
+
};
|
|
217
229
|
parser: Required<NonNullable<Options['parser']>>;
|
|
218
230
|
pathParamsType: NonNullable<Options['pathParamsType']>;
|
|
219
231
|
paramsType: NonNullable<Options['paramsType']>;
|
|
@@ -222,9 +234,11 @@ type ResolvedOptions = {
|
|
|
222
234
|
*/
|
|
223
235
|
infinite: NonNullable<Infinite> | false;
|
|
224
236
|
suspense: Suspense | false;
|
|
237
|
+
queryKey: QueryKey | undefined;
|
|
225
238
|
query: NonNullable<Required<Query>> | false;
|
|
239
|
+
mutationKey: MutationKey | undefined;
|
|
226
240
|
mutation: NonNullable<Required<Mutation>> | false;
|
|
227
241
|
};
|
|
228
242
|
type PluginReactQuery = PluginFactoryOptions<'plugin-react-query', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
229
243
|
|
|
230
|
-
export type { Infinite as I, Options as O, PluginReactQuery as P };
|
|
244
|
+
export type { Infinite as I, Options as O, PluginReactQuery as P, Transformer as T };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PluginFactoryOptions, Output, Group, ResolveNameParams } from '@kubb/core';
|
|
2
|
-
import { HttpMethod } from '@kubb/oas';
|
|
3
|
-
import { ResolvePathOptions, Exclude, Include, Override, Generator } from '@kubb/plugin-oas';
|
|
2
|
+
import { Operation, HttpMethod } from '@kubb/oas';
|
|
3
|
+
import { ResolvePathOptions, Exclude, Include, Override, Generator, OperationSchemas } from '@kubb/plugin-oas';
|
|
4
4
|
|
|
5
5
|
type Options$1 = {
|
|
6
6
|
/**
|
|
@@ -36,6 +36,10 @@ type Options$1 = {
|
|
|
36
36
|
* @default '@kubb/plugin-client/client'
|
|
37
37
|
*/
|
|
38
38
|
importPath?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Allows you to set a custom base url for all generated calls.
|
|
41
|
+
*/
|
|
42
|
+
baseURL?: string;
|
|
39
43
|
/**
|
|
40
44
|
* ReturnType that will be used when calling the client.
|
|
41
45
|
* - 'data' will return ResponseConfig[data].
|
|
@@ -86,12 +90,21 @@ type ResolvedOptions$1 = {
|
|
|
86
90
|
};
|
|
87
91
|
type PluginClient = PluginFactoryOptions<'plugin-client', Options$1, ResolvedOptions$1, never, ResolvePathOptions>;
|
|
88
92
|
|
|
93
|
+
type TransformerProps = {
|
|
94
|
+
operation: Operation;
|
|
95
|
+
schemas: OperationSchemas;
|
|
96
|
+
};
|
|
97
|
+
type Transformer = (props: TransformerProps) => unknown[];
|
|
89
98
|
type Suspense = object;
|
|
99
|
+
/**
|
|
100
|
+
* Customize the queryKey
|
|
101
|
+
*/
|
|
102
|
+
type QueryKey = Transformer;
|
|
103
|
+
/**
|
|
104
|
+
* Customize the mutationKey
|
|
105
|
+
*/
|
|
106
|
+
type MutationKey = Transformer;
|
|
90
107
|
type Query = {
|
|
91
|
-
/**
|
|
92
|
-
* Customize the queryKey, here you can specify a suffix.
|
|
93
|
-
*/
|
|
94
|
-
key: (key: unknown[]) => unknown[];
|
|
95
108
|
/**
|
|
96
109
|
* Define which HttpMethods can be used for queries
|
|
97
110
|
* @default ['get']
|
|
@@ -107,10 +120,6 @@ type Query = {
|
|
|
107
120
|
importPath?: string;
|
|
108
121
|
};
|
|
109
122
|
type Mutation = {
|
|
110
|
-
/**
|
|
111
|
-
* Customize the queryKey, here you can specify a suffix.
|
|
112
|
-
*/
|
|
113
|
-
key: (key: unknown[]) => unknown[];
|
|
114
123
|
/**
|
|
115
124
|
* Define which HttpMethods can be used for mutations
|
|
116
125
|
* @default ['post', 'put', 'delete']
|
|
@@ -151,7 +160,7 @@ type Options = {
|
|
|
151
160
|
* Group the @tanstack/query hooks based on the provided name.
|
|
152
161
|
*/
|
|
153
162
|
group?: Group;
|
|
154
|
-
client?: Pick<PluginClient['options'], 'dataReturnType' | 'importPath'>;
|
|
163
|
+
client?: Pick<PluginClient['options'], 'dataReturnType' | 'importPath' | 'baseURL'>;
|
|
155
164
|
/**
|
|
156
165
|
* Array containing exclude parameters to exclude/skip tags/operations/methods/paths.
|
|
157
166
|
*/
|
|
@@ -186,10 +195,12 @@ type Options = {
|
|
|
186
195
|
* When set, a suspenseQuery hooks will be added.
|
|
187
196
|
*/
|
|
188
197
|
suspense?: Partial<Suspense> | false;
|
|
198
|
+
queryKey?: QueryKey;
|
|
189
199
|
/**
|
|
190
200
|
* Override some useQuery behaviours.
|
|
191
201
|
*/
|
|
192
202
|
query?: Partial<Query> | false;
|
|
203
|
+
mutationKey?: MutationKey;
|
|
193
204
|
/**
|
|
194
205
|
* Override some useMutation behaviours.
|
|
195
206
|
*/
|
|
@@ -212,8 +223,9 @@ type Options = {
|
|
|
212
223
|
};
|
|
213
224
|
type ResolvedOptions = {
|
|
214
225
|
output: Output;
|
|
215
|
-
|
|
216
|
-
|
|
226
|
+
client: Required<Omit<NonNullable<PluginReactQuery['options']['client']>, 'baseURL'>> & {
|
|
227
|
+
baseURL?: string;
|
|
228
|
+
};
|
|
217
229
|
parser: Required<NonNullable<Options['parser']>>;
|
|
218
230
|
pathParamsType: NonNullable<Options['pathParamsType']>;
|
|
219
231
|
paramsType: NonNullable<Options['paramsType']>;
|
|
@@ -222,9 +234,11 @@ type ResolvedOptions = {
|
|
|
222
234
|
*/
|
|
223
235
|
infinite: NonNullable<Infinite> | false;
|
|
224
236
|
suspense: Suspense | false;
|
|
237
|
+
queryKey: QueryKey | undefined;
|
|
225
238
|
query: NonNullable<Required<Query>> | false;
|
|
239
|
+
mutationKey: MutationKey | undefined;
|
|
226
240
|
mutation: NonNullable<Required<Mutation>> | false;
|
|
227
241
|
};
|
|
228
242
|
type PluginReactQuery = PluginFactoryOptions<'plugin-react-query', Options, ResolvedOptions, never, ResolvePathOptions>;
|
|
229
243
|
|
|
230
|
-
export type { Infinite as I, Options as O, PluginReactQuery as P };
|
|
244
|
+
export type { Infinite as I, Options as O, PluginReactQuery as P, Transformer as T };
|