Code Monkey home page Code Monkey logo

Comments (3)

gregveres avatar gregveres commented on June 16, 2024

Ok, I think I have figured it out.

IType is a symbol and as such, I can assume that it has an attributes array and do a filter on it.

I have created a function like this:

{{- func typeName(type)
   	useType = Type.Unwrap(type)
	if (useType.ArrayType != null) 
	    useType = useType.ArrayType
	end
        typeAttrs = useType.Attributes | Array.Filter @AttrIsTypescriptType
        if (typeAttrs.size > 0)
             ret typeAttrs[0] | Custom.ExtractTypescriptType;
        end
	ret useType | Type.ToTypeScriptType
	end
}}
{{- func AttrIsTypescriptType(attr)
	ret attr.Name | String.Contains "TypescriptType"
	end
}}

first, I nwrap the type and extract the actual type if the type is an array type.
Then, I search the list of attributes for the symbol to find the TypescriptType attribute and if it exists, I use a custom c# function to extract the attributes parameter, which is it's name.
If the symbol doesn't have the TypescriptType attribute, I just return the Type.ToTypescriptType.

This seems to work well. I now just need to figure out how to do this on the parameter array.

from ntypewriter.

NeVeSpl avatar NeVeSpl commented on June 16, 2024

It looks like you are getting there, but I really do not know why you prefer to do it in scriban instead of C#.

from ntypewriter.

gregveres avatar gregveres commented on June 16, 2024

Hmm, that is a good point. I hadn't thought of doing it in C#. In my mind, the NTypewriter scripts are scriban and I was just locked into "do it in scriban". I will have to re-evaluate it. I think I could really simplify the scripts, and introduce better reuse if I did more in C#.

Thanks for the suggestion!

from ntypewriter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.