generated from toomuchdesign/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d3f2fd
commit 100b0bd
Showing
4 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import { makeRelativePath, formatTypeScript, saveFile } from '../utils'; | ||
import type { Plugin, SchemaMetaData } from '../types'; | ||
|
||
const FILE_NAME = 'refTypesAsArray.ts'; | ||
|
||
const generateRefTypesAsArrayPlugin: Plugin = async ({ | ||
outputPath, | ||
metaData, | ||
}) => { | ||
const refs: SchemaMetaData[] = []; | ||
metaData.schemas.forEach((schema) => { | ||
if (schema.isRef) { | ||
refs.push(schema); | ||
} | ||
}); | ||
|
||
if (refs.length === 0) { | ||
return; | ||
} | ||
|
||
const schemas = refs.map( | ||
({ schemaAbsoluteImportPath, schemaUniqueName, schemaId }) => { | ||
return { | ||
importPath: makeRelativePath({ | ||
fromDirectory: outputPath, | ||
to: schemaAbsoluteImportPath, | ||
}), | ||
schemaUniqueName, | ||
schemaId, | ||
}; | ||
}, | ||
); | ||
|
||
let output = ''; | ||
|
||
schemas.forEach((schema) => { | ||
output += `\n import ${schema.schemaUniqueName} from "${schema.importPath}";`; | ||
}); | ||
|
||
output += '\n\n'; | ||
|
||
schemas.forEach((schema) => { | ||
output += `\n const ${schema.schemaUniqueName}WithId = {...${schema.schemaUniqueName}, $id: "${schema.schemaId}"} as const;`; | ||
}); | ||
|
||
output += `\n\n | ||
type RefTypes = [ | ||
${schemas | ||
.map((schema) => `typeof ${schema.schemaUniqueName}WithId`) | ||
.join(',')} | ||
];`; | ||
|
||
output += '\n\nexport default RefTypes'; | ||
|
||
const formattedOutput = await formatTypeScript(output); | ||
await saveFile({ | ||
path: [outputPath, FILE_NAME], | ||
data: formattedOutput, | ||
}); | ||
}; | ||
|
||
export default generateRefTypesAsArrayPlugin; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import path from 'path'; | ||
import fs from 'fs/promises'; | ||
import { describe, it, expect } from 'vitest'; | ||
import { openapiToTsJsonSchema } from '../../src'; | ||
import generateRefTypesAsArrayPlugin from '../../src/plugins/generateRefTypesAsArrayPlugin'; | ||
import { importFresh } from '../test-utils'; | ||
import { formatTypeScript } from '../../src/utils'; | ||
|
||
const fixtures = path.resolve(__dirname, '../fixtures'); | ||
|
||
describe('generateRefTypesAsArrayPlugin plugin', async () => { | ||
it('generates expected file', async () => { | ||
const { outputPath, metaData } = await openapiToTsJsonSchema({ | ||
openApiSchema: path.resolve(fixtures, 'complex/specs.yaml'), | ||
definitionPathsToGenerateFrom: ['components.months', 'paths'], | ||
experimentalImportRefs: true, | ||
silent: false, | ||
}); | ||
|
||
await generateRefTypesAsArrayPlugin({ outputPath, metaData }); | ||
|
||
const actual = await fs.readFile( | ||
path.resolve(outputPath, 'refTypesAsArray.ts'), | ||
{ | ||
encoding: 'utf8', | ||
}, | ||
); | ||
|
||
// @TODO find a better way to assert against generated types | ||
const expected = await formatTypeScript(` | ||
import componentsSchemasAnswer from "./components/schemas/Answer"; | ||
import componentsMonthsJanuary from "./components/months/January"; | ||
import componentsMonthsFebruary from "./components/months/February"; | ||
const componentsSchemasAnswerWithId = { | ||
...componentsSchemasAnswer, | ||
$id: "#/components/schemas/Answer", | ||
} as const; | ||
const componentsMonthsJanuaryWithId = { | ||
...componentsMonthsJanuary, | ||
$id: "#/components/months/January", | ||
} as const; | ||
const componentsMonthsFebruaryWithId = { | ||
...componentsMonthsFebruary, | ||
$id: "#/components/months/February", | ||
} as const; | ||
type RefTypes = [ | ||
typeof componentsSchemasAnswerWithId, | ||
typeof componentsMonthsJanuaryWithId, | ||
typeof componentsMonthsFebruaryWithId, | ||
]; | ||
export default RefTypes;`); | ||
|
||
expect(actual).toBe(expected); | ||
}); | ||
}); |