Coder Social home page Coder Social logo

Comments (16)

MurhafSousli avatar MurhafSousli commented on June 20, 2024 2

This error is because your project is missing the original package npm i highlight.js

It is weird because it should be installed automatically!

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024 1

Not really! the only thing that matters is that it should not load the script twice if the highlight module is being used in different lazy modules. that's why I choice a singleton service.

from ngx-highlightjs.

GregoireLgt avatar GregoireLgt commented on June 20, 2024

Hi @MurhafSousli

I am sorry but highlight.js is already installed. I figured out the "Highlight.js library was not imported" error because this was missing in my angular.json :

"scripts": [
"src/assets/lib/hljs/highlight.pack.js"
],

But i am still getting cannot read property themePath of null, there are no options inside constructor :
image

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

I don't know why you are importing highlight.pack.js in angular.json, this is not mention anywhere in the docs!

can you make a reproduction?

from ngx-highlightjs.

GregoireLgt avatar GregoireLgt commented on June 20, 2024

The HLJS token you are talking about is the HIGHLIGHT_OPTIONS token ? If yes, i use it as a provider in the app.module.ts

EDIT @MurhafSousli

I am not having the cannot read property themePath of null with the 6.0.0 (everything works fine). But when i switch to the 6.1.0 then the error appears

from ngx-highlightjs.

GregoireLgt avatar GregoireLgt commented on June 20, 2024

Hi @MurhafSousli, sorry to insist but the 6.0.0 of your package works like a charm whereas the 6.1.0 and above are not working anymore with the 'cannot read property themePath of null' error :(

Regards,

from ngx-highlightjs.

GerkinDev avatar GerkinDev commented on June 20, 2024

I had this issue too. I think this is related to lazy-loaded modules importing this one. In fact, application lazy loaded modules provide the options in their own scope, and because HighlightLoader & HighlightJS services are provided in root, they don't have access to the options.

@Injectable({
providedIn: 'root'
})
export class HighlightLoader {

@Injectable({
providedIn: 'root'
})
export class HighlightJS {

Cloning this repo and changing providedIn scopes to any fixed it for me.

Maybe a static forRoot pattern might offer more options to avoid multiple loadings of highlight.js.

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

@GerkinDev Sure thing! the injection token should be used in the root module only! but the module can be imported at child module level.

That's why I didn't introduce HighlightModule.withConfig() so users don't make the mistake of setting the config in child module

Adding forRoot will make the users use it in the root module, and not think about lazy loading it in a child module. an injection token is the best in my opinion.

from ngx-highlightjs.

GerkinDev avatar GerkinDev commented on June 20, 2024

Yeah I get your point, but in my case, I use this module in my dev tools, and I'd like to not ship it at all in the main bundle. Thus, including it in the root module is not an option for me.

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

@GerkinDev You are not shipping it using the injection token! you are only passing a function that returns a promise which will load the library. so it won't be included in your main script.

Can you show that it is increasing it?

from ngx-highlightjs.

GerkinDev avatar GerkinDev commented on June 20, 2024

It must. The injection token declaration, along with the configured value & imports declaration processed by webpack ARE in the root module output.

This is not even close to the size of the full lib, I know. But still, there is a hard reference to multiple files, including highlightjs & your module, anyway. Tree shaking should make it as small as possible, just a few bytes, but a few bytes used by 0.01% of users isn't really worth it.

Moreover, if your module is shipped conditionally (in dev environment only for example), constraining its declaration in the root module can be troublesome, though I suppose there are handy ways to come around this.

Still. I'll go with my fork changing the providers scope.

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

@GerkinDev When webpack process the import script, it will only include that script in the dist directory, but won't merge it in the main script, meaning that the script won't slow the app launch. it will be loaded separately on parallel with the loader service.

If you are referring to the few bytes reserved for the config value the user pass, like the script string path, that is does not worth lazy loading in my opinion.

But anyway, are you proposing to remove the providedIn: root from the services?

from ngx-highlightjs.

GerkinDev avatar GerkinDev commented on June 20, 2024

Are there any real downside you expect, that I should be aware of to consider declaring providers is a necessity ?

from ngx-highlightjs.

GerkinDev avatar GerkinDev commented on June 20, 2024

Well, Highlight.js is not exported via UMD globals, yet, I see in your loader service that you expose it as global if using line numbers plugin. Maybe this could be used also to check if the lib was already loaded (& eventually supports loading via a CDN).
Globals are evil. But here, we're talking about replacing a global service with a global variable.

Or maybe another service could be globally used without any dependency, that serves just as a memo for configured loaders. Dunno.

And anyway, in most case, if the same JS asset is served twice, a cached version would be used, reducing the loading time to 0-ish

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

I don't see dependencies in the current loader service!

The line number script requires hljs to be defined in the global variables. otherwise it will not work (you can have a look at their repo).

While I am not against the idea of removing the loader service from root, loading the script twice sounds fundamentally wrong to me (even if it is cached). but anyway, the function hljs.registerLanguages() will be called twice too. and we have the load theme function which appends a style element to the head.

In case of we want to change it, we should have a clear alternative design that execute the code only once

from ngx-highlightjs.

GerkinDev avatar GerkinDev commented on June 20, 2024

I was talking about those, that force the loader to have HIGHLIGHT_OPTIONS provider in scope:

constructor(@Inject(DOCUMENT) private doc: any,
@Inject(PLATFORM_ID) platformId: object,
@Optional() @Inject(HIGHLIGHT_OPTIONS) private _options: HighlightOptions) {

from ngx-highlightjs.

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.