Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Add support for source maps in unbundled browser mode #112

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

guillaume86
Copy link

Mirrors changes in da1404e to allow inline source maps in unbundled browser mode.
Also fixes a bug that wasn't clearing previous CSS when hot reloading a CSS module.

Mirrors changes in da1404e to allow inline source maps in unbundled browser mode.
Also fixes a bug that wasn't clearing previous CSS when hot reloading a CSS module.
style.innerHTML = load.metadata.style;
document.head.appendChild(style);
var enableInlineSourceMaps = this.inlineCssSourceMaps && load.metadata.styleSourceMap;
var cssElements = document[elementsContainerKey] || (document[elementsContainerKey] = {});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you clarify what this elementsContainerKey is used for?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks,

To fix the hot reloading problem (didn't remove previous style), I reuse the same element if the module was previously loaded.
I store refs to the created elements in a hash ( { [address: string]: HTMLStyleElement | HTMLLinkElement } ) and attach it on the document.

elementsContainerKey ("__CSSPluginBase.elements") is just the key I use to attach the hash to the document.

I guess it could also just be a local variable in the module, I was just using document for easier debugging.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's the local variable alternative, must be less confusing :).
https://gist.github.com/guillaume86/bfe5d6a46b92acf164b48f597ecf8662

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, that sounds great. Can we just make this an instance variable though?

In the constructor, we'd initiate this.elementsContainers = {} and then use that in the prototype method.

Let me know if that works for you.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not familiar with the lifecycle of the plugins, I don't see any objection to moving it to the instance if it works when hot-reloading css modules.

@guybedford
Copy link
Member

This looks great, thanks for the PR!

Can you just let me know what the elementsContainerKey is for exactly?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants