Closed arnaudroques closed 1 year ago
Let’s do that! Makes sense! Very similar approach with the “extensions” is something ace editor is doing. Later, after extracting all the other non-core elements, we can think about having them as bundles rather than small files, because git is a bit complaining about that :)
Technically, I can read the puml content and find the includes there, fetch them and extract them under under /files/ directory and then call render method. With this way, there won’t be anything to change at Java part, I mean, if the last “extensions path” argument is configurable as you suggest, I can make this optimization. What do you think?
On Wed, 1 Feb 2023 at 10:44, PlantUML @.***> wrote:
To improve startup time, we propose to move outside of the jar file some resources that are not necessary needed (as we did for stdlib https://github.com/plantuml/plantuml-wasm/tree/main/plantuml-wasm/stdlib )
So we would move data files away from:
- emoji https://github.com/plantuml/plantuml/tree/master/src/net/sourceforge/plantuml/emoji/data
- openiconic https://github.com/plantuml/plantuml/tree/master/src/net/sourceforge/plantuml/openiconic/data
- theme https://github.com/plantuml/plantuml/tree/master/themes
So inside plantuml-wasm folder https://github.com/plantuml/plantuml-wasm/tree/main/plantuml-wasm/ , we would create:
- https://github.com/plantuml/plantuml-wasm/tree/main/plantuml-wasm/emoji
https://github.com/plantuml/plantuml-wasm/tree/main/plantuml-wasm/openiconic
https://github.com/plantuml/plantuml-wasm/tree/main/plantuml-wasm/themes
We would also change initialization https://github.com/plantuml/plantuml-wasm/blob/main/plantuml-wasm/plantuml.js#L9 from:
await cheerpjRunMain("com.plantuml.wasm.RunInit",
${cheerpjPath}/plantuml-wasm.jar
,${cheerpjPath}/stdlib/
)to:
await cheerpjRunMain("com.plantuml.wasm.RunInit",
${cheerpjPath}/plantuml-wasm.jar
,${cheerpjPath}/
)@sakirtemel https://github.com/sakirtemel Does it sound good to you? We'll do the change if you agree on this.
— Reply to this email directly, view it on GitHub https://github.com/plantuml/plantuml-wasm/issues/39, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAHFKUBV6DN7JJM7QT7S24LWVIWA5ANCNFSM6AAAAAAUNPUZUY . You are receiving this because you were mentioned.Message ID: @.***>
--
Sakir Temel
I just looked at the emoji and the openiconic directories, there are more than thousands of files, I believe it should be a significant improvement after suggested change you mentioned is made :)
To improve startup time, we propose to move outside of the jar file some resources that are not necessary needed (as we did for stdlib)
So we would move data files away from:
So inside plantuml-wasm folder , we would create:
We would also change initialization from:
to:
@sakirtemel Does it sound good to you? We'll do the change if you agree on this.