-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Add TypeScript Definitions for JS API #55
base: master
Are you sure you want to change the base?
Add TypeScript Definitions for JS API #55
Conversation
Change ASM interfaces to "any" types
I'm also interested in adding type support for CoreMods, but I'm going to need a little more information on this since it's rather foreign to me.
As of right now, CoreMods uses Nashorn 15.3, which does not include several newer JavaScript features that TypeScript usually relies on, so keep that in mind. I figure this might be better solved by writing JSDocs with type parameters rather than including a TypeScript library file. |
I have some limited understanding of this, so answering some of your questions here. Proper clarification/documentation from @ByThePowerOfScience on how to use these type definitions when writing a JS coremod would be greatly appreciated though.
JavaScript support in the Java IDE ecosystem isn't great. My guess is this'll work well in VS Code and NetBeans, maybe in IntelliJ Ultimate and as for Eclipse, I dunno. Personally I'd be happy even if this only helps Visual Studio Code - some support is better than none. Having a new VS Code window open for writing your JS CoreMods could still be a better experience than no type defs at all.
No, it's a standalone TypeScript type definition file. You can attach it to your IDE to help it provide richer context of your CoreMods JS files. I haven't checked, but I think you could also do a JSDoc
TypeScript type definitions don't require TypeScript to be used - they can also be used for improved IDE support in plain JS. If using TypeScript, a compilation target set to ES5 would suffice for getting it working on Nashorn 15.3. |
In that case I'm ok with pulling this, although I do agree that additional clarification from our PR author here would be ideal. |
It's as @PaintNinja said. Modern JS type checkers - like the native VSCode and IDEA linters - can use these type defintions even for raw JS code of any version. For example, when validating these definitions, my coremod file looked like this: /** @type CoreModInitializer */ // JSDoc for the function's return type
function initalizeCoreMod() {
// ...
} and IDEA was able to give me proper schema validation for the returned object. In IDEA Ultimate, my dependencies' coremod JS files were consumed by the typechecker automatically, so I don't doubt the lib.d.ts file would be too. Further type definitions for the allowed Java classes ( |
I have no strong opinion on this, if it makes people's lives easier with minimal maintenance on our end, then i'm fine with it. How difficult would it be to integrate the java2typescript plugin in this PR? As might as well do it all in one pass. |
You right; looking at DefinitelyTyped (the gold standard for 3rd party type references), the standard is
EDIT: Nevermind, neither work for what we need. One only generates method stubs, the other only generates fields. I don't have the knowledge needed to combine the two. |
Ok I got it, but it's janky, manual, and it doesn't have the fields. I wouldn't recommend taking that commit; it'll probably be more confusing than just referencing the classes manually. Either way, that part is far less necessary than the basic coremod schema being available somewhere. |
Add typings for ASMAPI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ASMAPI will continue to get changes made to it as I continue to work on CoreMods. Is there any way we could automate this process? You did mention in your comment that this was a manual process.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It can technically be automated with the java2ts AP I mentioned, but it would probably be better to rig up a Python script with some regex.
I also made .d.ts files for the most-used ASM classes cause I got tired of having to pull up the InsnList docs constantly. it is also 1am i should stop
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Naw, we're a java project using gradle/java toolchians. Better to write it in that then to require yet another toolset to build things.
remove duplicate code
Since the work needed to make this efficient is a bit much at the moment, I'm not considering it an urgent pull for CoreMods 5.2.0. Don't get me wrong though, I absolutely do want better IDE support for CoreMods. But if I pull this as-is, it will make maintainability a nightmare. A group of ASMAPI-related PRs which were recently merged have already slightly outdated the content in this PR. |
We can just remove the ASMAPI part then. The thing that's absolutely required is including a schema for the expected return value of |
Ok, then let's just remove the ASMAPI part for now then. I don't expect the schema for |
As mentioned in MinecraftForge#10177, we are planning on deprecating CoreMods in the (somewhat?) near future. I would still like to make one last minor patch, 5.3, that includes the changes you've made here, but know that there probably won't be any changes to the implementation aside from any last-minute additions to ASMAPI. If you have the time, please cleanup this PR (basically just remove the ASMAPI stuff if you have it) and let me know so I can review it and have it merged in soon. |
This will allow some minor intellisense for coremod development.