@kubb/plugin-faker 3.0.0-alpha.10 → 3.0.0-alpha.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/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/plugin.ts","../src/OperationGenerator.tsx","../src/components/OperationSchema.tsx","../src/SchemaGenerator.tsx","../src/components/Schema.tsx","../src/parser/index.ts"],"sourcesContent":["import path from 'node:path'\n\nimport { FileManager, PluginManager, createPlugin } from '@kubb/core'\nimport { camelCase } from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { pluginOasName } from '@kubb/plugin-oas'\n\nimport { pluginTsName } from '@kubb/plugin-ts'\n\nimport { OperationGenerator } from './OperationGenerator.tsx'\nimport { SchemaGenerator } from './SchemaGenerator.tsx'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas } from '@kubb/plugin-oas'\nimport type { PluginFaker } from './types.ts'\n\nexport const pluginFakerName = 'plugin-faker' satisfies PluginFaker['name']\n\nexport const pluginFaker = createPlugin<PluginFaker>((options) => {\n const {\n output = { path: 'mocks' },\n seed,\n group,\n exclude = [],\n include,\n override = [],\n transformers = {},\n mapper = {},\n dateType = 'string',\n unknownType = 'any',\n dateParser,\n regexGenerator = 'faker',\n } = options\n const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`\n\n return {\n name: pluginFakerName,\n output: {\n exportType: 'barrelNamed',\n ...output,\n },\n options: {\n extName: output.extName,\n transformers,\n dateType,\n seed,\n unknownType,\n dateParser,\n mapper,\n override,\n regexGenerator,\n },\n pre: [pluginOasName, pluginTsName],\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 (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 if (options?.tag && group?.type === 'tag') {\n const tag = camelCase(options.tag)\n\n return path.resolve(root, renderTemplate(template, { tag }), baseName)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n const resolvedName = camelCase(name, {\n prefix: type ? 'create' : undefined,\n isFile: type === 'file',\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\n const schemaGenerator = new SchemaGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.context.contentType,\n include: undefined,\n override,\n mode,\n output: output.path,\n })\n\n const schemaFiles = await schemaGenerator.build()\n await this.addFile(...schemaFiles)\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 operationFiles = await operationGenerator.build()\n await this.addFile(...operationFiles)\n\n if (this.config.output.exportType) {\n const barrelFiles = await this.fileManager.getBarrelFiles({\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})\n","import { OperationGenerator as Generator } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\n\nimport { OperationSchema } from './components/OperationSchema.tsx'\n\nimport type { Operation } from '@kubb/oas'\nimport type { OperationMethodResult } from '@kubb/plugin-oas'\nimport type { FileMeta, PluginFaker } from './types.ts'\n\nexport class OperationGenerator extends Generator<PluginFaker['resolvedOptions'], PluginFaker> {\n async operation(operation: Operation, options: PluginFaker['resolvedOptions']): OperationMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas} operations={[operation]} generator={this}>\n <Oas.Operation operation={operation}>\n <OperationSchema.File />\n </Oas.Operation>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n","import { Oas } from '@kubb/plugin-oas/components'\nimport { useOas, useOperation, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { File, useApp } from '@kubb/react'\n\nimport { SchemaGenerator } from '../SchemaGenerator.tsx'\n\nimport type { OperationSchema as OperationSchemaType } from '@kubb/plugin-oas'\nimport type { ReactNode } from 'react'\nimport type { FileMeta, PluginFaker } from '../types.ts'\nimport { Schema } from './Schema.tsx'\n\ntype Props = {\n description?: string\n}\n\nexport function OperationSchema({ description }: Props): ReactNode {\n return <Schema withData={false} description={description} />\n}\n\ntype FileProps = {}\n\nOperationSchema.File = function ({}: FileProps): ReactNode {\n const { plugin, pluginManager, mode } = useApp<PluginFaker>()\n\n const oas = useOas()\n const { getSchemas, getFile } = useOperationManager()\n const operation = useOperation()\n\n const file = getFile(operation)\n const schemas = getSchemas(operation)\n const generator = new SchemaGenerator(plugin.options, {\n oas,\n plugin,\n pluginManager,\n mode,\n override: plugin.options.override,\n })\n\n const items = [schemas.pathParams, schemas.queryParams, schemas.headerParams, schemas.statusCodes, schemas.request, schemas.response].flat().filter(Boolean)\n\n const mapItem = ({ name, schema, description, ...options }: OperationSchemaType, i: number) => {\n // used for this.options.typed\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n const typeFileName = pluginManager.resolveName({\n name: options.operationName || name,\n pluginKey: [pluginTsName],\n type: 'file',\n })\n\n // todo replace by getFile\n const typePath = pluginManager.resolvePath({\n baseName: typeFileName,\n pluginKey: [pluginTsName],\n options: { tag: options.operation?.getTags()[0]?.name },\n })\n\n const tree = generator.parse({ schema, name })\n\n return (\n <Oas.Schema key={i} name={name} value={schema} tree={tree}>\n {typeName && typePath && <File.Import isTypeOnly root={file.path} path={typePath} name={[typeName]} />}\n {plugin.options.dateParser && <File.Import path={plugin.options.dateParser} name={plugin.options.dateParser} />}\n\n {mode === 'split' && <Oas.Schema.Imports />}\n <OperationSchema description={description} />\n </Oas.Schema>\n )\n }\n\n return (\n <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta}>\n <File.Import name={['faker']} path=\"@faker-js/faker\" />\n {plugin.options.regexGenerator === 'randexp' && <File.Import name={'RandExp'} path={'randexp'} />}\n {items.map(mapItem)}\n </File>\n )\n}\n","import type { SchemaObject } from '@kubb/oas'\nimport { SchemaGenerator as Generator } from '@kubb/plugin-oas'\nimport type { SchemaMethodResult } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\nimport { Schema } from './components/Schema.tsx'\nimport type { FileMeta, PluginFaker } from './types.ts'\n\nexport class SchemaGenerator extends Generator<PluginFaker['resolvedOptions'], PluginFaker> {\n async schema(name: string, schema: SchemaObject, options: PluginFaker['resolvedOptions']): SchemaMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode, output } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const tree = this.parse({ schema, name })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas}>\n <Oas.Schema name={name} value={schema} tree={tree}>\n <Schema.File />\n </Oas.Schema>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n","import { Oas } from '@kubb/plugin-oas/components'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { File, Function, useApp, useFile } from '@kubb/react'\n\nimport transformers from '@kubb/core/transformers'\nimport { schemaKeywords } from '@kubb/plugin-oas'\nimport { useSchema } from '@kubb/plugin-oas/hooks'\nimport type { ReactNode } from 'react'\nimport * as parserFaker from '../parser/index.ts'\nimport { pluginFakerName } from '../plugin.ts'\nimport type { PluginFaker } from '../types.ts'\n\ntype Props = {\n description?: string\n withData?: boolean\n}\n\nexport function Schema(props: Props): ReactNode {\n const { withData, description } = props\n const { tree, name } = useSchema()\n const {\n pluginManager,\n plugin: {\n options: { dateParser, regexGenerator, mapper, seed },\n },\n } = useApp<PluginFaker>()\n\n // all checks are also inside this.schema(React)\n const resolvedName = pluginManager.resolveName({\n name,\n pluginKey: [pluginFakerName],\n type: 'function',\n })\n\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n const fakerText = parserFaker.joinItems(\n tree\n .map((schema) => parserFaker.parse(undefined, schema, { name: resolvedName, typeName, seed, regexGenerator, mapper, withData, dateParser }))\n .filter(Boolean),\n )\n\n let fakerDefaultOverride: '' | '[]' | '{}' | undefined = undefined\n let fakerTextWithOverride = fakerText\n\n if (withData && fakerText.startsWith('{')) {\n fakerDefaultOverride = '{}'\n fakerTextWithOverride = `{\n ...${fakerText},\n ...data\n}`\n }\n\n if (withData && fakerText.startsWith('faker.helpers.arrayElements')) {\n fakerDefaultOverride = '[]'\n fakerTextWithOverride = `[\n ...${fakerText},\n ...data\n ]`\n }\n\n const params = fakerDefaultOverride ? `data: NonNullable<Partial<${typeName}>> = ${fakerDefaultOverride}` : `data?: NonNullable<Partial<${typeName}>>`\n\n return (\n <File.Source name={resolvedName} isExportable isIndexable>\n <Function\n export\n name={resolvedName}\n JSDoc={{ comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean) }}\n params={withData ? params : ''}\n returnType={typeName ? `NonNullable<${typeName}>` : ''}\n >\n {seed ? `faker.seed(${JSON.stringify(seed)})` : ''}\n <br />\n <Function.Return>{fakerTextWithOverride}</Function.Return>\n </Function>\n <br />\n </File.Source>\n )\n}\n\ntype FileProps = {}\n\nSchema.File = function ({}: FileProps): ReactNode {\n const { pluginManager } = useApp<PluginFaker>()\n const { tree, schema } = useSchema()\n\n const withData = tree.some(\n (schema) =>\n schema.keyword === schemaKeywords.array ||\n schema.keyword === schemaKeywords.and ||\n schema.keyword === schemaKeywords.object ||\n schema.keyword === schemaKeywords.union ||\n schema.keyword === schemaKeywords.tuple,\n )\n\n return (\n <Oas.Schema.File output={pluginManager.config.output.path}>\n <Schema.Imports />\n <Schema description={schema?.description} withData={withData} />\n </Oas.Schema.File>\n )\n}\nSchema.Imports = (): ReactNode => {\n const {\n pluginManager,\n plugin: {\n options: { extName, dateParser, regexGenerator },\n },\n } = useApp<PluginFaker>()\n const { path: root } = useFile()\n const { name, tree, schema } = useSchema()\n\n // used for this.options.typed\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n const typeFileName = pluginManager.resolveName({\n name: name,\n pluginKey: [pluginTsName],\n type: 'file',\n })\n\n const typePath = pluginManager.resolvePath({\n baseName: typeFileName,\n pluginKey: [pluginTsName],\n })\n\n return (\n <>\n <File.Import name={['faker']} path=\"@faker-js/faker\" />\n {regexGenerator === 'randexp' && <File.Import name={'RandExp'} path={'randexp'} />}\n {dateParser && <File.Import path={dateParser} name={dateParser} />}\n {typeName && typePath && <File.Import isTypeOnly root={root} path={typePath} name={[typeName]} />}\n </>\n )\n}\n","import transformers from '@kubb/core/transformers'\nimport { SchemaGenerator, isKeyword, schemaKeywords } from '@kubb/plugin-oas'\n\nimport type { Schema, SchemaKeywordBase, SchemaKeywordMapper, SchemaMapper } from '@kubb/plugin-oas'\nimport type { Options } from '../types.ts'\n\nexport const fakerKeywordMapper = {\n any: () => 'undefined',\n unknown: () => 'unknown',\n number: (min?: number, max?: number) => {\n if (max !== undefined && min !== undefined) {\n return `faker.number.float({ min: ${min}, max: ${max} })`\n }\n\n if (min !== undefined) {\n return `faker.number.float({ min: ${min} })`\n }\n\n if (max !== undefined) {\n return `faker.number.float({ max: ${max} })`\n }\n\n return 'faker.number.float()'\n },\n integer: (min?: number, max?: number) => {\n if (max !== undefined && min !== undefined) {\n return `faker.number.int({ min: ${min}, max: ${max} })`\n }\n\n if (min !== undefined) {\n return `faker.number.int({ min: ${min} })`\n }\n\n if (max !== undefined) {\n return `faker.number.int({ max: ${max} })`\n }\n\n return 'faker.number.int()'\n },\n string: (min?: number, max?: number) => {\n if (max !== undefined && min !== undefined) {\n return `faker.string.alpha({ length: { min: ${min}, max: ${max} } })`\n }\n\n if (min !== undefined) {\n return `faker.string.alpha({ length: { min: ${min} } })`\n }\n\n if (max !== undefined) {\n return `faker.string.alpha({ length: { max: ${max} } })`\n }\n\n return 'faker.string.alpha()'\n },\n boolean: () => 'faker.datatype.boolean()',\n undefined: () => 'undefined',\n null: () => 'null',\n array: (items: string[] = []) => `faker.helpers.arrayElements([${items.join(', ')}]) as any`,\n tuple: (items: string[] = []) => `faker.helpers.arrayElements([${items.join(', ')}]) as any`,\n enum: (items: Array<string | number> = []) => `faker.helpers.arrayElement<any>([${items.join(', ')}])`,\n union: (items: string[] = []) => `faker.helpers.arrayElement<any>([${items.join(', ')}])`,\n /**\n * ISO 8601\n */\n datetime: () => 'faker.date.anytime().toISOString()',\n /**\n * Type `'date'` Date\n * Type `'string'` ISO date format (YYYY-MM-DD)\n * @default ISO date format (YYYY-MM-DD)\n */\n date: (type: 'date' | 'string' = 'string', parser?: string) => {\n if (type === 'string') {\n if (parser) {\n return `${parser}(faker.date.anytime()).format(\"YYYY-MM-DD\")`\n }\n return 'faker.date.anytime().toString()'\n }\n return 'faker.date.anytime()'\n },\n /**\n * Type `'date'` Date\n * Type `'string'` ISO time format (HH:mm:ss[.SSSSSS])\n * @default ISO time format (HH:mm:ss[.SSSSSS])\n */\n time: (type: 'date' | 'string' = 'string', parser?: string) => {\n if (type === 'string') {\n if (parser) {\n return `${parser}(faker.date.anytime()).format(\"HH:mm:ss\")`\n }\n return 'faker.date.anytime().toString()'\n }\n return 'faker.date.anytime()'\n },\n uuid: () => 'faker.string.uuid()',\n url: () => 'faker.internet.url()',\n and: (items: string[] = []) => `Object.assign({}, ${items.join(', ')})`,\n object: () => 'object',\n ref: () => 'ref',\n matches: (value = '', regexGenerator: 'faker' | 'randexp' = 'faker') => {\n if (regexGenerator === 'randexp') {\n return `${transformers.toRegExpString(value, 'RandExp')}.gen()`\n }\n return `faker.helpers.fromRegExp(${transformers.toRegExpString(value)})`\n },\n email: () => 'faker.internet.email()',\n firstName: () => 'faker.person.firstName()',\n lastName: () => 'faker.person.lastName()',\n password: () => 'faker.internet.password()',\n phone: () => 'faker.phone.number()',\n blob: () => 'faker.image.imageUrl() as unknown as Blob',\n default: undefined,\n describe: undefined,\n const: (value?: string | number) => (value as string) ?? '',\n max: undefined,\n min: undefined,\n nullable: undefined,\n nullish: undefined,\n optional: undefined,\n readOnly: undefined,\n strict: undefined,\n deprecated: undefined,\n example: undefined,\n schema: undefined,\n catchall: undefined,\n name: undefined,\n} satisfies SchemaMapper<string | null | undefined>\n\n/**\n * @link based on https://github.com/cellular/oazapfts/blob/7ba226ebb15374e8483cc53e7532f1663179a22c/src/codegen/generate.ts#L398\n */\n\nfunction schemaKeywordsorter(a: Schema, b: Schema) {\n if (b.keyword === 'null') {\n return -1\n }\n\n return 0\n}\n\nexport function joinItems(items: string[]): string {\n switch (items.length) {\n case 0:\n return 'undefined'\n case 1:\n return items[0]!\n default:\n return fakerKeywordMapper.union(items)\n }\n}\n\ntype ParserOptions = {\n name: string\n typeName?: string\n description?: string\n\n seed?: number | number[]\n regexGenerator?: 'faker' | 'randexp'\n withData?: boolean\n dateParser?: Options['dateParser']\n mapper?: Record<string, string>\n}\n\nexport function parse(parent: Schema | undefined, current: Schema, options: ParserOptions): string | null | undefined {\n const value = fakerKeywordMapper[current.keyword as keyof typeof fakerKeywordMapper]\n\n if (!value) {\n return undefined\n }\n\n if (isKeyword(current, schemaKeywords.union)) {\n return fakerKeywordMapper.union(current.args.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.and)) {\n return fakerKeywordMapper.and(current.args.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.array)) {\n return fakerKeywordMapper.array(current.args.items.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.enum)) {\n return fakerKeywordMapper.enum(\n current.args.items.map((schema) => {\n if (schema.format === 'number') {\n return schema.name\n }\n return transformers.stringify(schema.name)\n }),\n )\n }\n\n if (isKeyword(current, schemaKeywords.ref)) {\n if (!current.args?.name) {\n throw new Error(`Name not defined for keyword ${current.keyword}`)\n }\n\n if (options.withData) {\n return `${current.args.name}(data)`\n }\n\n return `${current.args.name}()`\n }\n\n if (isKeyword(current, schemaKeywords.object)) {\n const argsObject = Object.entries(current.args?.properties || {})\n .filter((item) => {\n const schema = item[1]\n return schema && typeof schema.map === 'function'\n })\n .map(([name, schemas]) => {\n const nameSchema = schemas.find((schema) => schema.keyword === schemaKeywords.name) as SchemaKeywordMapper['name']\n const mappedName = nameSchema?.args || name\n\n // custom mapper(pluginOptions)\n if (options.mapper?.[mappedName]) {\n return `\"${name}\": ${options.mapper?.[mappedName]}`\n }\n\n return `\"${name}\": ${joinItems(\n schemas\n .sort(schemaKeywordsorter)\n .map((schema) => parse(current, schema, { ...options, withData: false }))\n .filter(Boolean),\n )}`\n })\n .join(',')\n\n return `{${argsObject}}`\n }\n\n if (isKeyword(current, schemaKeywords.tuple)) {\n if (Array.isArray(current.args.items)) {\n return fakerKeywordMapper.tuple(current.args.items.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n return parse(current, current.args.items, { ...options, withData: false })\n }\n\n if (isKeyword(current, schemaKeywords.const)) {\n if (current.args.format === 'number' && current.args.name !== undefined) {\n return fakerKeywordMapper.const(current.args.name?.toString())\n }\n return fakerKeywordMapper.const(transformers.stringify(current.args.value))\n }\n\n if (isKeyword(current, schemaKeywords.matches) && current.args) {\n return fakerKeywordMapper.matches(current.args, options.regexGenerator)\n }\n\n if (isKeyword(current, schemaKeywords.null) || isKeyword(current, schemaKeywords.undefined) || isKeyword(current, schemaKeywords.any)) {\n return value() || ''\n }\n\n if (isKeyword(current, schemaKeywords.string)) {\n if (parent) {\n const minSchema = SchemaGenerator.find([parent], schemaKeywords.min)\n const maxSchema = SchemaGenerator.find([parent], schemaKeywords.max)\n\n return fakerKeywordMapper.string(minSchema?.args, maxSchema?.args)\n }\n\n return fakerKeywordMapper.string()\n }\n\n if (isKeyword(current, schemaKeywords.number)) {\n if (parent) {\n const minSchema = SchemaGenerator.find([parent], schemaKeywords.min)\n const maxSchema = SchemaGenerator.find([parent], schemaKeywords.max)\n\n return fakerKeywordMapper.number(minSchema?.args, maxSchema?.args)\n }\n\n return fakerKeywordMapper.number()\n }\n\n if (isKeyword(current, schemaKeywords.integer)) {\n if (parent) {\n const minSchema = SchemaGenerator.find([parent], schemaKeywords.min)\n const maxSchema = SchemaGenerator.find([parent], schemaKeywords.max)\n\n return fakerKeywordMapper.integer(minSchema?.args, maxSchema?.args)\n }\n\n return fakerKeywordMapper.integer()\n }\n\n if (isKeyword(current, schemaKeywords.datetime)) {\n return fakerKeywordMapper.datetime()\n }\n\n if (isKeyword(current, schemaKeywords.date)) {\n return fakerKeywordMapper.date(current.args.type, options.dateParser)\n }\n\n if (isKeyword(current, schemaKeywords.time)) {\n return fakerKeywordMapper.time(current.args.type, options.dateParser)\n }\n\n if (current.keyword in fakerKeywordMapper && 'args' in current) {\n const value = fakerKeywordMapper[current.keyword as keyof typeof fakerKeywordMapper] as (typeof fakerKeywordMapper)['const']\n\n const options = JSON.stringify((current as SchemaKeywordBase<unknown>).args)\n\n return value(options)\n }\n\n if (current.keyword in fakerKeywordMapper) {\n return value()\n }\n\n return undefined\n}\n"],"mappings":"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","names":["pluginTsName","Generator","Oas","App","createRoot","Oas","pluginTsName","File","useApp","Oas","transformers","schemaKeywords","value","options","transformers","schema","schemaKeywords","jsx","SchemaGenerator","Oas","jsx","jsxs","useApp","SchemaGenerator","pluginTsName","Oas","File","jsx","Generator","createRoot","App","Oas","transformers","pluginTsName","options","SchemaGenerator"]}
1
+ {"version":3,"sources":["../src/parser/index.ts","../src/components/Schema.tsx","../src/SchemaGenerator.tsx","../src/components/OperationSchema.tsx","../src/OperationGenerator.tsx","../src/plugin.ts"],"names":["value","options","transformers","schema","schemaKeywords","SchemaGenerator","Generator","jsx","Oas","useApp","pluginTsName","jsxs","File","createRoot","App"],"mappings":"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","file":"index.js","sourcesContent":["import transformers from '@kubb/core/transformers'\nimport { SchemaGenerator, isKeyword, schemaKeywords } from '@kubb/plugin-oas'\n\nimport type { Schema, SchemaKeywordBase, SchemaKeywordMapper, SchemaMapper } from '@kubb/plugin-oas'\nimport type { Options } from '../types.ts'\n\nexport const fakerKeywordMapper = {\n any: () => 'undefined',\n unknown: () => 'unknown',\n number: (min?: number, max?: number) => {\n if (max !== undefined && min !== undefined) {\n return `faker.number.float({ min: ${min}, max: ${max} })`\n }\n\n if (min !== undefined) {\n return `faker.number.float({ min: ${min} })`\n }\n\n if (max !== undefined) {\n return `faker.number.float({ max: ${max} })`\n }\n\n return 'faker.number.float()'\n },\n integer: (min?: number, max?: number) => {\n if (max !== undefined && min !== undefined) {\n return `faker.number.int({ min: ${min}, max: ${max} })`\n }\n\n if (min !== undefined) {\n return `faker.number.int({ min: ${min} })`\n }\n\n if (max !== undefined) {\n return `faker.number.int({ max: ${max} })`\n }\n\n return 'faker.number.int()'\n },\n string: (min?: number, max?: number) => {\n if (max !== undefined && min !== undefined) {\n return `faker.string.alpha({ length: { min: ${min}, max: ${max} } })`\n }\n\n if (min !== undefined) {\n return `faker.string.alpha({ length: { min: ${min} } })`\n }\n\n if (max !== undefined) {\n return `faker.string.alpha({ length: { max: ${max} } })`\n }\n\n return 'faker.string.alpha()'\n },\n boolean: () => 'faker.datatype.boolean()',\n undefined: () => 'undefined',\n null: () => 'null',\n array: (items: string[] = []) => `faker.helpers.arrayElements([${items.join(', ')}]) as any`,\n tuple: (items: string[] = []) => `faker.helpers.arrayElements([${items.join(', ')}]) as any`,\n enum: (items: Array<string | number> = []) => `faker.helpers.arrayElement<any>([${items.join(', ')}])`,\n union: (items: string[] = []) => `faker.helpers.arrayElement<any>([${items.join(', ')}])`,\n /**\n * ISO 8601\n */\n datetime: () => 'faker.date.anytime().toISOString()',\n /**\n * Type `'date'` Date\n * Type `'string'` ISO date format (YYYY-MM-DD)\n * @default ISO date format (YYYY-MM-DD)\n */\n date: (type: 'date' | 'string' = 'string', parser?: string) => {\n if (type === 'string') {\n if (parser) {\n return `${parser}(faker.date.anytime()).format(\"YYYY-MM-DD\")`\n }\n return 'faker.date.anytime().toString()'\n }\n return 'faker.date.anytime()'\n },\n /**\n * Type `'date'` Date\n * Type `'string'` ISO time format (HH:mm:ss[.SSSSSS])\n * @default ISO time format (HH:mm:ss[.SSSSSS])\n */\n time: (type: 'date' | 'string' = 'string', parser?: string) => {\n if (type === 'string') {\n if (parser) {\n return `${parser}(faker.date.anytime()).format(\"HH:mm:ss\")`\n }\n return 'faker.date.anytime().toString()'\n }\n return 'faker.date.anytime()'\n },\n uuid: () => 'faker.string.uuid()',\n url: () => 'faker.internet.url()',\n and: (items: string[] = []) => `Object.assign({}, ${items.join(', ')})`,\n object: () => 'object',\n ref: () => 'ref',\n matches: (value = '', regexGenerator: 'faker' | 'randexp' = 'faker') => {\n if (regexGenerator === 'randexp') {\n return `${transformers.toRegExpString(value, 'RandExp')}.gen()`\n }\n return `faker.helpers.fromRegExp(${transformers.toRegExpString(value)})`\n },\n email: () => 'faker.internet.email()',\n firstName: () => 'faker.person.firstName()',\n lastName: () => 'faker.person.lastName()',\n password: () => 'faker.internet.password()',\n phone: () => 'faker.phone.number()',\n blob: () => 'faker.image.imageUrl() as unknown as Blob',\n default: undefined,\n describe: undefined,\n const: (value?: string | number) => (value as string) ?? '',\n max: undefined,\n min: undefined,\n nullable: undefined,\n nullish: undefined,\n optional: undefined,\n readOnly: undefined,\n strict: undefined,\n deprecated: undefined,\n example: undefined,\n schema: undefined,\n catchall: undefined,\n name: undefined,\n} satisfies SchemaMapper<string | null | undefined>\n\n/**\n * @link based on https://github.com/cellular/oazapfts/blob/7ba226ebb15374e8483cc53e7532f1663179a22c/src/codegen/generate.ts#L398\n */\n\nfunction schemaKeywordsorter(a: Schema, b: Schema) {\n if (b.keyword === 'null') {\n return -1\n }\n\n return 0\n}\n\nexport function joinItems(items: string[]): string {\n switch (items.length) {\n case 0:\n return 'undefined'\n case 1:\n return items[0]!\n default:\n return fakerKeywordMapper.union(items)\n }\n}\n\ntype ParserOptions = {\n name: string\n typeName?: string\n description?: string\n\n seed?: number | number[]\n regexGenerator?: 'faker' | 'randexp'\n withData?: boolean\n dateParser?: Options['dateParser']\n mapper?: Record<string, string>\n}\n\nexport function parse(parent: Schema | undefined, current: Schema, options: ParserOptions): string | null | undefined {\n const value = fakerKeywordMapper[current.keyword as keyof typeof fakerKeywordMapper]\n\n if (!value) {\n return undefined\n }\n\n if (isKeyword(current, schemaKeywords.union)) {\n return fakerKeywordMapper.union(current.args.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.and)) {\n return fakerKeywordMapper.and(current.args.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.array)) {\n return fakerKeywordMapper.array(current.args.items.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.enum)) {\n return fakerKeywordMapper.enum(\n current.args.items.map((schema) => {\n if (schema.format === 'number') {\n return schema.name\n }\n return transformers.stringify(schema.name)\n }),\n )\n }\n\n if (isKeyword(current, schemaKeywords.ref)) {\n if (!current.args?.name) {\n throw new Error(`Name not defined for keyword ${current.keyword}`)\n }\n\n if (options.withData) {\n return `${current.args.name}(data)`\n }\n\n return `${current.args.name}()`\n }\n\n if (isKeyword(current, schemaKeywords.object)) {\n const argsObject = Object.entries(current.args?.properties || {})\n .filter((item) => {\n const schema = item[1]\n return schema && typeof schema.map === 'function'\n })\n .map(([name, schemas]) => {\n const nameSchema = schemas.find((schema) => schema.keyword === schemaKeywords.name) as SchemaKeywordMapper['name']\n const mappedName = nameSchema?.args || name\n\n // custom mapper(pluginOptions)\n if (options.mapper?.[mappedName]) {\n return `\"${name}\": ${options.mapper?.[mappedName]}`\n }\n\n return `\"${name}\": ${joinItems(\n schemas\n .sort(schemaKeywordsorter)\n .map((schema) => parse(current, schema, { ...options, withData: false }))\n .filter(Boolean),\n )}`\n })\n .join(',')\n\n return `{${argsObject}}`\n }\n\n if (isKeyword(current, schemaKeywords.tuple)) {\n if (Array.isArray(current.args.items)) {\n return fakerKeywordMapper.tuple(current.args.items.map((schema) => parse(current, schema, { ...options, withData: false })).filter(Boolean))\n }\n\n return parse(current, current.args.items, { ...options, withData: false })\n }\n\n if (isKeyword(current, schemaKeywords.const)) {\n if (current.args.format === 'number' && current.args.name !== undefined) {\n return fakerKeywordMapper.const(current.args.name?.toString())\n }\n return fakerKeywordMapper.const(transformers.stringify(current.args.value))\n }\n\n if (isKeyword(current, schemaKeywords.matches) && current.args) {\n return fakerKeywordMapper.matches(current.args, options.regexGenerator)\n }\n\n if (isKeyword(current, schemaKeywords.null) || isKeyword(current, schemaKeywords.undefined) || isKeyword(current, schemaKeywords.any)) {\n return value() || ''\n }\n\n if (isKeyword(current, schemaKeywords.string)) {\n if (parent) {\n const minSchema = SchemaGenerator.find([parent], schemaKeywords.min)\n const maxSchema = SchemaGenerator.find([parent], schemaKeywords.max)\n\n return fakerKeywordMapper.string(minSchema?.args, maxSchema?.args)\n }\n\n return fakerKeywordMapper.string()\n }\n\n if (isKeyword(current, schemaKeywords.number)) {\n if (parent) {\n const minSchema = SchemaGenerator.find([parent], schemaKeywords.min)\n const maxSchema = SchemaGenerator.find([parent], schemaKeywords.max)\n\n return fakerKeywordMapper.number(minSchema?.args, maxSchema?.args)\n }\n\n return fakerKeywordMapper.number()\n }\n\n if (isKeyword(current, schemaKeywords.integer)) {\n if (parent) {\n const minSchema = SchemaGenerator.find([parent], schemaKeywords.min)\n const maxSchema = SchemaGenerator.find([parent], schemaKeywords.max)\n\n return fakerKeywordMapper.integer(minSchema?.args, maxSchema?.args)\n }\n\n return fakerKeywordMapper.integer()\n }\n\n if (isKeyword(current, schemaKeywords.datetime)) {\n return fakerKeywordMapper.datetime()\n }\n\n if (isKeyword(current, schemaKeywords.date)) {\n return fakerKeywordMapper.date(current.args.type, options.dateParser)\n }\n\n if (isKeyword(current, schemaKeywords.time)) {\n return fakerKeywordMapper.time(current.args.type, options.dateParser)\n }\n\n if (current.keyword in fakerKeywordMapper && 'args' in current) {\n const value = fakerKeywordMapper[current.keyword as keyof typeof fakerKeywordMapper] as (typeof fakerKeywordMapper)['const']\n\n const options = JSON.stringify((current as SchemaKeywordBase<unknown>).args)\n\n return value(options)\n }\n\n if (current.keyword in fakerKeywordMapper) {\n return value()\n }\n\n return undefined\n}\n","import { Oas } from '@kubb/plugin-oas/components'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { File, Function, useApp, useFile } from '@kubb/react'\n\nimport transformers from '@kubb/core/transformers'\nimport { schemaKeywords } from '@kubb/plugin-oas'\nimport { useSchema } from '@kubb/plugin-oas/hooks'\nimport type { ReactNode } from 'react'\nimport * as parserFaker from '../parser/index.ts'\nimport { pluginFakerName } from '../plugin.ts'\nimport type { PluginFaker } from '../types.ts'\n\ntype Props = {\n description?: string\n withData?: boolean\n}\n\nexport function Schema(props: Props): ReactNode {\n const { withData, description } = props\n const { tree, name } = useSchema()\n const {\n pluginManager,\n plugin: {\n options: { dateParser, regexGenerator, mapper, seed },\n },\n } = useApp<PluginFaker>()\n\n // all checks are also inside this.schema(React)\n const resolvedName = pluginManager.resolveName({\n name,\n pluginKey: [pluginFakerName],\n type: 'function',\n })\n\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n const fakerText = parserFaker.joinItems(\n tree\n .map((schema) => parserFaker.parse(undefined, schema, { name: resolvedName, typeName, seed, regexGenerator, mapper, withData, dateParser }))\n .filter(Boolean),\n )\n\n let fakerDefaultOverride: '' | '[]' | '{}' | undefined = undefined\n let fakerTextWithOverride = fakerText\n\n if (withData && fakerText.startsWith('{')) {\n fakerDefaultOverride = '{}'\n fakerTextWithOverride = `{\n ...${fakerText},\n ...data\n}`\n }\n\n if (withData && fakerText.startsWith('faker.helpers.arrayElements')) {\n fakerDefaultOverride = '[]'\n fakerTextWithOverride = `[\n ...${fakerText},\n ...data\n ]`\n }\n\n const params = fakerDefaultOverride ? `data: NonNullable<Partial<${typeName}>> = ${fakerDefaultOverride}` : `data?: NonNullable<Partial<${typeName}>>`\n\n const containsFaker = !!fakerTextWithOverride.match(/faker/) || !!seed\n\n return (\n <>\n {containsFaker && <File.Import name={['faker']} path=\"@faker-js/faker\" />}\n <File.Source name={resolvedName} isExportable isIndexable>\n <Function\n export\n name={resolvedName}\n JSDoc={{ comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean) }}\n params={withData ? params : ''}\n returnType={typeName ? `NonNullable<${typeName}>` : ''}\n >\n {seed ? `faker.seed(${JSON.stringify(seed)})` : ''}\n <br />\n <Function.Return>{fakerTextWithOverride}</Function.Return>\n </Function>\n <br />\n </File.Source>\n </>\n )\n}\n\ntype FileProps = {}\n\nSchema.File = function ({}: FileProps): ReactNode {\n const { pluginManager } = useApp<PluginFaker>()\n const { tree, schema } = useSchema()\n\n const withData = tree.some(\n (schema) =>\n schema.keyword === schemaKeywords.array ||\n schema.keyword === schemaKeywords.and ||\n schema.keyword === schemaKeywords.object ||\n schema.keyword === schemaKeywords.union ||\n schema.keyword === schemaKeywords.tuple,\n )\n\n return (\n <Oas.Schema.File output={pluginManager.config.output.path}>\n <Schema.Imports />\n <Schema description={schema?.description} withData={withData} />\n </Oas.Schema.File>\n )\n}\nSchema.Imports = (): ReactNode => {\n const {\n pluginManager,\n plugin: {\n options: { extName, dateParser, regexGenerator },\n },\n } = useApp<PluginFaker>()\n const { path: root } = useFile()\n const { name, tree, schema } = useSchema()\n\n // used for this.options.typed\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n const typeFileName = pluginManager.resolveName({\n name: name,\n pluginKey: [pluginTsName],\n type: 'file',\n })\n\n const typePath = pluginManager.resolvePath({\n baseName: typeFileName,\n pluginKey: [pluginTsName],\n })\n\n return (\n <>\n {regexGenerator === 'randexp' && <File.Import name={'RandExp'} path={'randexp'} />}\n {dateParser && <File.Import path={dateParser} name={dateParser} />}\n {typeName && typePath && <File.Import isTypeOnly root={root} path={typePath} name={[typeName]} />}\n </>\n )\n}\n","import type { SchemaObject } from '@kubb/oas'\nimport { SchemaGenerator as Generator } from '@kubb/plugin-oas'\nimport type { SchemaMethodResult } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\nimport { Schema } from './components/Schema.tsx'\nimport type { FileMeta, PluginFaker } from './types.ts'\n\nexport class SchemaGenerator extends Generator<PluginFaker['resolvedOptions'], PluginFaker> {\n async schema(name: string, schema: SchemaObject, options: PluginFaker['resolvedOptions']): SchemaMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode, output } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const tree = this.parse({ schema, name })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas}>\n <Oas.Schema name={name} value={schema} tree={tree}>\n <Schema.File />\n </Oas.Schema>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n","import { Oas } from '@kubb/plugin-oas/components'\nimport { useOas, useOperation, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { File, useApp } from '@kubb/react'\n\nimport { SchemaGenerator } from '../SchemaGenerator.tsx'\n\nimport type { OperationSchema as OperationSchemaType } from '@kubb/plugin-oas'\nimport type { ReactNode } from 'react'\nimport type { FileMeta, PluginFaker } from '../types.ts'\nimport { Schema } from './Schema.tsx'\n\ntype Props = {\n description?: string\n}\n\nexport function OperationSchema({ description }: Props): ReactNode {\n return <Schema withData={false} description={description} />\n}\n\ntype FileProps = {}\n\nOperationSchema.File = function ({}: FileProps): ReactNode {\n const { plugin, pluginManager, mode } = useApp<PluginFaker>()\n\n const oas = useOas()\n const { getSchemas, getFile } = useOperationManager()\n const operation = useOperation()\n\n const file = getFile(operation)\n const schemas = getSchemas(operation)\n const generator = new SchemaGenerator(plugin.options, {\n oas,\n plugin,\n pluginManager,\n mode,\n override: plugin.options.override,\n })\n\n const items = [schemas.pathParams, schemas.queryParams, schemas.headerParams, schemas.statusCodes, schemas.request, schemas.response].flat().filter(Boolean)\n\n const mapItem = ({ name, schema, description, ...options }: OperationSchemaType, i: number) => {\n // used for this.options.typed\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n const typeFileName = pluginManager.resolveName({\n name: options.operationName || name,\n pluginKey: [pluginTsName],\n type: 'file',\n })\n\n // todo replace by getFile\n const typePath = pluginManager.resolvePath({\n baseName: typeFileName,\n pluginKey: [pluginTsName],\n options: { tag: options.operation?.getTags()[0]?.name },\n })\n\n const tree = generator.parse({ schema, name })\n\n return (\n <Oas.Schema key={i} name={name} value={schema} tree={tree}>\n {typeName && typePath && <File.Import isTypeOnly root={file.path} path={typePath} name={[typeName]} />}\n {plugin.options.dateParser && <File.Import path={plugin.options.dateParser} name={plugin.options.dateParser} />}\n\n {mode === 'split' && <Oas.Schema.Imports />}\n <OperationSchema description={description} />\n </Oas.Schema>\n )\n }\n\n return (\n <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta}>\n {plugin.options.regexGenerator === 'randexp' && <File.Import name={'RandExp'} path={'randexp'} />}\n {items.map(mapItem)}\n </File>\n )\n}\n","import { OperationGenerator as Generator } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\n\nimport { OperationSchema } from './components/OperationSchema.tsx'\n\nimport type { Operation } from '@kubb/oas'\nimport type { OperationMethodResult } from '@kubb/plugin-oas'\nimport type { FileMeta, PluginFaker } from './types.ts'\n\nexport class OperationGenerator extends Generator<PluginFaker['resolvedOptions'], PluginFaker> {\n async operation(operation: Operation, options: PluginFaker['resolvedOptions']): OperationMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas} operations={[operation]} generator={this}>\n <Oas.Operation operation={operation}>\n <OperationSchema.File />\n </Oas.Operation>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n","import path from 'node:path'\n\nimport { FileManager, PluginManager, createPlugin } from '@kubb/core'\nimport { camelCase } from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { pluginOasName } from '@kubb/plugin-oas'\n\nimport { pluginTsName } from '@kubb/plugin-ts'\n\nimport { OperationGenerator } from './OperationGenerator.tsx'\nimport { SchemaGenerator } from './SchemaGenerator.tsx'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas } from '@kubb/plugin-oas'\nimport type { PluginFaker } from './types.ts'\n\nexport const pluginFakerName = 'plugin-faker' satisfies PluginFaker['name']\n\nexport const pluginFaker = createPlugin<PluginFaker>((options) => {\n const {\n output = { path: 'mocks' },\n seed,\n group,\n exclude = [],\n include,\n override = [],\n transformers = {},\n mapper = {},\n dateType = 'string',\n unknownType = 'any',\n dateParser,\n regexGenerator = 'faker',\n } = options\n const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`\n\n return {\n name: pluginFakerName,\n output: {\n exportType: 'barrelNamed',\n ...output,\n },\n options: {\n extName: output.extName,\n transformers,\n dateType,\n seed,\n unknownType,\n dateParser,\n mapper,\n override,\n regexGenerator,\n },\n pre: [pluginOasName, pluginTsName],\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 (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 if (options?.tag && group?.type === 'tag') {\n const tag = camelCase(options.tag)\n\n return path.resolve(root, renderTemplate(template, { tag }), baseName)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n const resolvedName = camelCase(name, {\n prefix: type ? 'create' : undefined,\n isFile: type === 'file',\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\n const schemaGenerator = new SchemaGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.context.contentType,\n include: undefined,\n override,\n mode,\n output: output.path,\n })\n\n const schemaFiles = await schemaGenerator.build()\n await this.addFile(...schemaFiles)\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 operationFiles = await operationGenerator.build()\n await this.addFile(...operationFiles)\n\n if (this.config.output.exportType) {\n const barrelFiles = await this.fileManager.getBarrelFiles({\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})\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/plugin-faker",
3
- "version": "3.0.0-alpha.10",
3
+ "version": "3.0.0-alpha.12",
4
4
  "description": "Generator plugin-faker",
5
5
  "keywords": [
6
6
  "faker",
@@ -53,25 +53,25 @@
53
53
  "!/**/__tests__/**"
54
54
  ],
55
55
  "dependencies": {
56
- "@kubb/core": "3.0.0-alpha.10",
57
- "@kubb/fs": "3.0.0-alpha.10",
58
- "@kubb/oas": "3.0.0-alpha.10",
59
- "@kubb/parser-ts": "3.0.0-alpha.10",
60
- "@kubb/plugin-oas": "3.0.0-alpha.10",
61
- "@kubb/plugin-ts": "3.0.0-alpha.10",
62
- "@kubb/react": "3.0.0-alpha.10"
56
+ "@kubb/core": "3.0.0-alpha.12",
57
+ "@kubb/fs": "3.0.0-alpha.12",
58
+ "@kubb/oas": "3.0.0-alpha.12",
59
+ "@kubb/plugin-oas": "3.0.0-alpha.12",
60
+ "@kubb/parser-ts": "3.0.0-alpha.12",
61
+ "@kubb/plugin-ts": "3.0.0-alpha.12",
62
+ "@kubb/react": "3.0.0-alpha.12"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@types/react": "^18.3.5",
66
66
  "react": "^18.3.1",
67
67
  "tsup": "^8.2.4",
68
68
  "typescript": "^5.5.4",
69
- "@kubb/config-biome": "3.0.0-alpha.10",
70
- "@kubb/config-ts": "3.0.0-alpha.10",
71
- "@kubb/config-tsup": "3.0.0-alpha.10"
69
+ "@kubb/config-biome": "3.0.0-alpha.12",
70
+ "@kubb/config-ts": "3.0.0-alpha.12",
71
+ "@kubb/config-tsup": "3.0.0-alpha.12"
72
72
  },
73
73
  "peerDependencies": {
74
- "@kubb/react": "3.0.0-alpha.10"
74
+ "@kubb/react": "3.0.0-alpha.12"
75
75
  },
76
76
  "engines": {
77
77
  "node": ">=20"
@@ -74,7 +74,6 @@ OperationSchema.File = function ({}: FileProps): ReactNode {
74
74
 
75
75
  return (
76
76
  <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta}>
77
- <File.Import name={['faker']} path="@faker-js/faker" />
78
77
  {plugin.options.regexGenerator === 'randexp' && <File.Import name={'RandExp'} path={'randexp'} />}
79
78
  {items.map(mapItem)}
80
79
  </File>
@@ -65,21 +65,26 @@ export function Schema(props: Props): ReactNode {
65
65
 
66
66
  const params = fakerDefaultOverride ? `data: NonNullable<Partial<${typeName}>> = ${fakerDefaultOverride}` : `data?: NonNullable<Partial<${typeName}>>`
67
67
 
68
+ const containsFaker = !!fakerTextWithOverride.match(/faker/) || !!seed
69
+
68
70
  return (
69
- <File.Source name={resolvedName} isExportable isIndexable>
70
- <Function
71
- export
72
- name={resolvedName}
73
- JSDoc={{ comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean) }}
74
- params={withData ? params : ''}
75
- returnType={typeName ? `NonNullable<${typeName}>` : ''}
76
- >
77
- {seed ? `faker.seed(${JSON.stringify(seed)})` : ''}
71
+ <>
72
+ {containsFaker && <File.Import name={['faker']} path="@faker-js/faker" />}
73
+ <File.Source name={resolvedName} isExportable isIndexable>
74
+ <Function
75
+ export
76
+ name={resolvedName}
77
+ JSDoc={{ comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean) }}
78
+ params={withData ? params : ''}
79
+ returnType={typeName ? `NonNullable<${typeName}>` : ''}
80
+ >
81
+ {seed ? `faker.seed(${JSON.stringify(seed)})` : ''}
82
+ <br />
83
+ <Function.Return>{fakerTextWithOverride}</Function.Return>
84
+ </Function>
78
85
  <br />
79
- <Function.Return>{fakerTextWithOverride}</Function.Return>
80
- </Function>
81
- <br />
82
- </File.Source>
86
+ </File.Source>
87
+ </>
83
88
  )
84
89
  }
85
90
 
@@ -135,7 +140,6 @@ Schema.Imports = (): ReactNode => {
135
140
 
136
141
  return (
137
142
  <>
138
- <File.Import name={['faker']} path="@faker-js/faker" />
139
143
  {regexGenerator === 'randexp' && <File.Import name={'RandExp'} path={'randexp'} />}
140
144
  {dateParser && <File.Import path={dateParser} name={dateParser} />}
141
145
  {typeName && typePath && <File.Import isTypeOnly root={root} path={typePath} name={[typeName]} />}