ts-to-mongo-schema
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

Introduction

This program allows the user to convert Typescript defined interfaces or type alias declarations, to MongoDB bson type schemas. This is achieved through the steps below

Program Logic

Click To Expand!

The program traverses all nodes that the interface or type depends on, according to the steps below.

  1. Generate a file's AST through the Typescript Compiler API
  2. Recursively parse through each AST node to either:
    • Extract the property types
    • Search another file for an imported module
  3. Map the extracted AST property types to supported MongoDB bson types
  4. Combine the property types into one large MongoDB bson schema

Setup

Click To Expand!
type GenerateSchema = {
  //Path to the tsconfig.json of the target project
  configPath: string;
  
  //Exact string name of type or interface declaration
  identifier: string;
  
  //Path to the file the identifier is located
  filePath: string;
  
  //typescript file extension
  extension: ".tsx" | ".ts";
  
  /* 
    Provide custom map that contains the name 
    of the custom generic as a string, and a 
    function that returns the bson schema value 
    of that generic
  */
  resolveCustomGenerics?: { [key: string]: (params: any) => any };
};

Example:

import { generateSchema, ResolveCustomParams } from "ts-to-mongo-schema";
import * as fs from "fs";

//paths
const projectPath = "../../testProject";
const configPath = projectPath + "/tsconfig.json";
const filePath = projectPath + "/src/types/testFile.tsx";

const bsonSchema = generateSchema({
  configPath: configPath,
  identifier: "Person",
  filePath: filePath,
  extension: '.tsx',
});

Error Management

Click To Expand!

If the program cannot parse the property type, an empty object will be returned in the property type's place. The user can then modify this manually, in the generated schema. Example Typescript:

type ArrayOneOrMore<T> = {
  0: T;
} & Array<T>;

interface Person{
  name: string; 
  interests: ArrayOneOrMore<string>
}

BSON Schema Result:

{
  bsonType: 'object'
  properties: {
    name: {bsonType: string}
    //empty object
    interests: {}
  }
  required: [
    name, 
    interests
  ]
}

Note:

This will usually occur if the interface or type depends on a custom generic, or an imported type from a third-party library. If this is the case, please use the resolveCustomGenerics function to provide a custom value. This outlined below.

Providing Custom Values for Custom Generics

Click To Expand!

When the program returns too many empty objects for property values, there could be an unsupported custom generic that does not allow for the extraction of properties. However, that does not mean all hope is lost.

Find the offending generics and pass in a map to help the program identify them, and parse them according to custom logic

type ResolveCustomParams = {
  propertiesPerArg?: any[];
  combinedProperties?: { [key: string]: any };
};
const bsonSchema = generateSchema({
  configPath: configPath,
  identifier: "Person",
  filePath: filePath,
  extension: '.tsx',
  resolveCustomGenerics: {
    //the test file contains a custom generic declared as ArrayOneOrMore.
    //Therefore, the key is the name of the generic, and attached function 
    //returns the custom value for that generic
    ArrayOneOrMore: (props: ResolveCustomParams) => {
      return {
        bsonType: "array",
        items: props.combinedProperties,
        minItems: 1,
      };
    },
  },
});

Package Sidebar

Install

npm i ts-to-mongo-schema

Weekly Downloads

0

Version

1.0.4

License

ISC

Unpacked Size

64.5 kB

Total Files

34

Last publish

Collaborators

  • arkyasmal