mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import { Model } from '../client/interfaces/Model';
|
|
import { Templates } from './readHandlebarsTemplates';
|
|
import { exportModel } from './exportModel';
|
|
import { format } from './format';
|
|
import { getModelNames } from './getModelNames';
|
|
|
|
/**
|
|
* Generate Models using the Handlebar template and write to disk.
|
|
* @param models Array of Models to write.
|
|
* @param templates The loaded handlebar templates.
|
|
* @param outputPath
|
|
*/
|
|
export function writeClientModels(models: Model[], templates: Templates, outputPath: string): void {
|
|
models.forEach(model => {
|
|
const file = path.resolve(outputPath, `${model.name}.ts`);
|
|
const templateData = exportModel(model);
|
|
const templateResult = templates.model(templateData);
|
|
fs.writeFileSync(file, format(templateResult));
|
|
});
|
|
|
|
const file = path.resolve(outputPath, 'index.ts');
|
|
const templateResult = templates.models({
|
|
models: getModelNames(models),
|
|
});
|
|
fs.writeFileSync(file, format(templateResult));
|
|
}
|