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

Support for lang="ts" / TypeScript #32

Closed
An-Cu opened this issue Jul 18, 2019 · 29 comments
Closed

Support for lang="ts" / TypeScript #32

An-Cu opened this issue Jul 18, 2019 · 29 comments
Labels
impact: major Svelte core Missing core feature

Comments

@An-Cu
Copy link

An-Cu commented Jul 18, 2019

I want to use svelte in typescript by using svelte-ts-preprocess preprocess
It would be great to add support for <script lang="ts"></script>.

Let me know if I can help you.

@tomblachut
Copy link
Owner

TS support could be more complicated that it seems. Currently I decided to hardcode JS because there are different parts required to coordinate. SvelteCodeMultiHostInjector uses some stringly typed black magic to enable JS support inside interpolations. JS inside script tag is injected by underlying HTML language support native to IDE. There are also props which are unsupported right now.

@tomblachut tomblachut added this to the 2.0 milestone Aug 14, 2019
@tomblachut tomblachut added the Svelte ecosystem Integration with linters, tooling etc label Nov 17, 2019
@JakubKoralewski
Copy link

I'm new to the Java/Kotlin/IntelliJ-plugin-ecosystem, but I'd love to help any way I can as well.

@tomblachut tomblachut mentioned this issue Jan 27, 2020
@tomblachut tomblachut changed the title Support for lang="ts" Support for lang="ts" / TypeScript Jan 27, 2020
@sethlivingston
Copy link

sethlivingston commented Mar 5, 2020

Would love to see this generalized to lang="[any lang IDE supports]" if possible. Also happy to help.

@tomblachut
Copy link
Owner

@sethlivingston IntelliJ doesn't work that way. You need to enable support for each and every language manually, implement coding assistance and painfully debug many integration bugs.

TS is the official future of Svelte so it will be supported eventually.

@sethlivingston
Copy link

sethlivingston commented Mar 5, 2020 via email

@syabro
Copy link

syabro commented Jun 3, 2020

sveltejs/svelte#4518 (comment)

typescript is kinda supported now
@tomblachut any chance we can have it in IDEA?

PS it's lang="typescript", not ts

@daarxwalker
Copy link

daarxwalker commented Jun 17, 2020

@tomblachut
Hi,
btw. great plugin!
Status about TS support? Svelte supports TS with no problem, but can't work with it and I rlly don't want use VSC.
It could be great, if I can finally develop with TS support!
Have a nice day!

@Dan1ve
Copy link

Dan1ve commented Jul 18, 2020

This would be so awesome.

Right now, I'm forced to switch between VS Code (which supports Typescript nicely, but doesn't really work for imports and Svelte-specific things) and IntelliJ (where -thanks for this great plugin- everything works perfectly, except the lang="typescript" support.

Please let me know if I can help!

@tomblachut
Copy link
Owner

tomblachut commented Jul 28, 2020

It is great that there's official Svelte Language Server, it will definitely help. On the other side I just don't know how to integrate that 😅

I feel your pain given that I personally love TS.

@syabro @Dan1ve is it lang="typescript" or lang="ts"? https://svelte.dev/blog/svelte-and-typescript says ts

Rough roadmap:

  1. Another rewrite related to Merged abstract syntax tree #100 - currently it's throwing IDE errors for HTML edge cases that are older than me. I didn't find a way to break that MR into smaller parts unfortunately. I burned out like 3 times already on that.
  2. Add regression tests. I've promised @daarxwalker some backlog for that an eternity ago. I still don't have one but right now i'm on a time off from work so hopefully will complete point 1. and then write that backlog.
  3. Enable TS
    3a. Extend parsers so they understand lang attribute.
    3b. Integrate with LSP.

@r00t3g
Copy link

r00t3g commented Jul 28, 2020

@tomblachut there is a plugin bringing LSP support into IntelliJ IDEs: https://github.com/gtache/intellij-lsp , however, AFAIK, it does not introduce any syntax highlighting features, niether any code navigation. Neverthelss, it might be helpful looking through it code, dunno

@tomblachut
Copy link
Owner

tomblachut commented Jul 28, 2020

@r00t3g there are even two, I imagine that plugin shows code for IPC between IntelliJ and node, and ofc spawning and killing that node process. Second part is I guess loading correct svelte-language-server (from package.json?) into that node instance. Folks from Svelte already implemented code navigation, right? (I didn't had a chance to checkout this new plugin)

There are also classes built into IJ:

image

Anyway probably the best way is to rip things from Vue plugin as I've always done with other code. They recently reworked that so should be best-in-class

@tomblachut
Copy link
Owner

I'm gonna link LSP issue #98 here

@Dan1ve
Copy link

Dan1ve commented Jul 29, 2020

@syabro @Dan1ve is it lang="typescript" or lang="ts"? https://svelte.dev/blog/svelte-and-typescript says ts

@tomblachut it appears that both typescript and ts work with the new official TS support and VS Code.

@anstarovoyt
Copy link
Contributor

anstarovoyt commented Jul 29, 2020

@tomblachut my thoughts:

  1. We still have to add parsing support for typescript on the IDE side because without proper AST almost all smart IDE features don't work (the main issue is that LSP API is very limited and it cannot cover all IDE features).
    We have script="ts" support in vue.js plugin and also I implemented something similar for riot some times ago https://github.com/anstarovoyt/intellij-riot.js

  2. Yes, we already use typescript service (it isn't lsp but very close) for code insights in vue and ts files. We use it for completion and error highlightings.

  3. The simplest example of using "server <-> IDE" communication is the tslint plugin: https://github.com/JetBrains/intellij-plugins/tree/master/tslint

So from my point of view roadmap can look like:

  1. Add ts syntax support on the IDE side
  2. Introduce LSP integration over regular ts support similar to vue / ts

@anstarovoyt
Copy link
Contributor

@tomblachut also I am ready to implement some part of the support, but we need some decision about #100 :)

@tomblachut tomblachut pinned this issue Jul 29, 2020
@tomblachut
Copy link
Owner

@anstarovoyt thanks I'm gonna go through your links later,

so the first thing to do would be to fork SvelteJSLanguage and SvelteJSParserDefinition, reactive labels will complicate that a bit.

@unlocomqx
Copy link
Contributor

I did a simple comparison with the vue plugin, here you can see that the embedded content type is not the same
2020-08-03_14-25

In vue, you get better completion and highlighting
image

Svelte
image

@tomblachut
Copy link
Owner

tomblachut commented Aug 3, 2020

Can someone verify whether as casts are supported in each block?

my favourite Svelte JS code (name shadowing but totally valid code):

{#each as as as (as)}

would become

{#each as as string[] as as as string (as)}

or with type as = string;

{#each as as as[] as as as as (as)}

@tomblachut tomblachut modified the milestones: 2.0, 1.0 Aug 9, 2020
@anstarovoyt
Copy link
Contributor

@tomblachut do you plan to implement it in the nearest future? if not, I can try to provide an implementation sketch this week.

@tomblachut
Copy link
Owner

@anstarovoyt I wanted to tackle reactivity first, so I think it's okay that you work on TS sketch. The only concern is whether both features will work together

@anstarovoyt
Copy link
Contributor

it is the reason why I call it "scratch". So we can take a look and discuss possible solutions to make it work with reactivity.

@tomblachut
Copy link
Owner

Ok, go ahead, thanks

@tomblachut tomblachut added Svelte core Missing core feature and removed Svelte ecosystem Integration with linters, tooling etc labels Aug 18, 2020
@dummdidumm
Copy link

Can someone verify whether as casts are supported in each block?

Right now only JavaScript is supported in the template, see this issue for more info sveltejs/svelte#4701

@martonlederer
Copy link

martonlederer commented Aug 22, 2020

@syabro @Dan1ve is it lang="typescript" or lang="ts"? https://svelte.dev/blog/svelte-and-typescript says ts

@tomblachut
Hey, I think both are supported. Good luck on this feature, since many of us love it and your plugin :D

@tomblachut
Copy link
Owner

Hi everyone! You can grab version 0.15.0 from within your IDE and use TS now.

https://plugins.jetbrains.com/plugin/12375-svelte/versions/stable/99919

Feel free to open additional issues around improvements.

@tomblachut tomblachut unpinned this issue Oct 19, 2020
@syabro
Copy link

syabro commented Oct 19, 2020

Doesn't work :(

image

image

image

@tomblachut
Copy link
Owner

@syabro This issue is about lang="ts", type checking of props will come later. Cheers!

@syabro
Copy link

syabro commented Oct 19, 2020

Oh, sorry.
@tomblachut should I open an issue about it?

@tomblachut
Copy link
Owner

@syabro Don't worry I could've communicated it more clearly. Anyway it's better to release small increments more often if possible so here you go 😁

Depends what you want to achieve/discuss really. There are two different issues already connected to your image.

#98 tackles LSP and I have no ETA on that, it will bring everything (I think) folks at sveltejs/language-tools are busy supporting (@dummdidumm mostly, thank you!)

#11 is an old but still relevant issue basically about improvements to html attributes - I just updated the title and description to better reflect current status, I want to do it next, before moving codebase to 2020.3. Type checking using builtin IDE engine could come after that one.

Anyway feel free to open issues if you like, that's what they are here for.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
impact: major Svelte core Missing core feature
Projects
None yet
Development

No branches or pull requests