本文整理匯總了TypeScript中klay-kiln.IKiln.getModels方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript IKiln.getModels方法的具體用法?TypeScript IKiln.getModels怎麽用?TypeScript IKiln.getModels使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類klay-kiln.IKiln
的用法示例。
在下文中一共展示了IKiln.getModels方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: createAndMergeRouters
export function createAndMergeRouters(
kiln: IKiln,
routerMap: IRouterMap,
swaggerOverrides?: Partial<SwaggerSpec>,
): IRouter {
const models = keyBy(kiln.getModels(), kilnModel => kilnModel.name)
const router = express.Router()
const routes: IRouterRoute[] = []
forEach(routerMap, (routerOrOptions, prefix) => {
let subRouter = routerOrOptions as IRouter
if (!Array.isArray(routerOrOptions.routes)) {
const routerOptions = routerOrOptions as IRouterOptions
if (routerOptions.modelName) {
const kilnModel = models[routerOptions.modelName]
const databaseExtension = routerOptions.databaseExtension || DEFAULT_DATABASE_EXTENSION
const executor = kiln.build<IDatabaseExecutor>(routerOptions.modelName, databaseExtension)
subRouter = createRouter(routerOptions, kilnModel, executor)
} else {
subRouter = createRouter(routerOptions)
}
}
router.use(prefix, subRouter.router)
subRouter.routes.forEach(route => {
routes.push({...route, path: `${prefix}${route.path}`})
})
})
const mergedRouter = {router, routes}
const swagger = buildSpecification(kiln, mergedRouter, swaggerOverrides)
router.get('/swagger.json', createSwaggerSpecHandler(swagger))
router.get('/docs', createSwaggerUIHandler(swagger, './swagger.json'))
return mergedRouter
}
示例2: buildSpecification
export function buildSpecification(kiln: IKiln, router: IRouter, overrides?: Partial<Spec>): Spec {
const schemaCache = new SwaggerSchemaCache()
for (const kilnModel of kiln.getModels()) {
const arrayModel = defaultModelContext.array().children(kilnModel.model)
getSchema(kilnModel.model, schemaCache, startCase(kilnModel.name))
getSchema(arrayModel, schemaCache, `${startCase(kilnModel.meta.plural)}List`)
}
return {
swagger: '2.0',
basePath: '/',
produces: ['application/json'],
host: 'localhost',
schemes: ['http'],
info: {
title: 'Title',
version: 'Version',
},
paths: buildPaths(router, schemaCache),
definitions: schemaCache.getUniqueSchemas(),
...overrides,
}
}