Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate objects instead of enums #1040

Open
scottcorgan opened this issue Jan 30, 2025 · 3 comments
Open

Generate objects instead of enums #1040

scottcorgan opened this issue Jan 30, 2025 · 3 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@scottcorgan
Copy link

scottcorgan commented Jan 30, 2025

With Typescript 5.8's erasableSyntaxOnly flag and with Node's type stripping support, it looks like they're pushing us away from from using TS only language features (enum, namespaces, etc) We heavily rely on the enums as generated objects for typesafety everywhere.

Would love to be able to just generate the object version of these enums in the generated output.

(I did try with templates, but was unsuccessful)

References

@scr2em
Copy link

scr2em commented Feb 5, 2025

Agreed!

@nathan-de-pachtere
Copy link

Tried with that template but can't make it works, the generate process don't use it at all ... others templates are used correctly but this one not.

<%
const { contract, utils, config } = it;
const { formatDescription, require, _ } = utils;
const { name, $content } = contract;
%>
<%_
  const enumName = name.toUpperCase();
  const enumValues = Object.entries($content);
_%>
<% if (config.generateUnionEnums) { %>
  export type <%~ name %> = <%~ _.map($content, ({ value }) => value).join(" | ") %>
<% } else { %>
  export const <%= enumName %>: { [key: string]: string } = {
    <%_ enumValues.forEach(([key, value]) => { _%>
      <%= key %>: '<%= value %>',
    <%_ }); _%>
  } as const;

// export type name = ObjectValues<typeof enumName>; // didn't make it to the step of generating actual type from that const but that the goal.
<% } %>

Also tried with

codeGenConstructs: (struct) => {
        return {
          ...struct,
          EnumField: ... //Can't figure out how to modify that as the doc seems not up to date
        };
      },

@scottcorgan did you find a way ?

@nathan-de-pachtere
Copy link

@scottcorgan https://github.com/OpenAPITools/openapi-generator
This tool make it by default ;)

@smorimoto smorimoto added enhancement New feature or request good first issue Good for newcomers labels Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

4 participants