27 lines
891 B
TypeScript
27 lines
891 B
TypeScript
import mongoose from 'mongoose';
|
|
import buildSchema from '../mongoose/buildSchema';
|
|
import { SanitizedConfig } from '../config/types';
|
|
import buildQueryPlugin from '../mongoose/buildQuery';
|
|
import { GlobalModel } from './config/types';
|
|
|
|
const buildModel = (config: SanitizedConfig): GlobalModel | null => {
|
|
if (config.globals && config.globals.length > 0) {
|
|
const globalsSchema = new mongoose.Schema({}, { discriminatorKey: 'globalType', timestamps: true });
|
|
|
|
globalsSchema.plugin(buildQueryPlugin);
|
|
|
|
const Globals = mongoose.model('globals', globalsSchema) as unknown as GlobalModel;
|
|
|
|
Object.values(config.globals).forEach((globalConfig) => {
|
|
const globalSchema = buildSchema(config, globalConfig.fields, { global: true });
|
|
Globals.discriminator(globalConfig.slug, globalSchema);
|
|
});
|
|
|
|
return Globals;
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
export default buildModel;
|