Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Don't return in getComponentName(), if component.name === 'cl' #44

Closed
sampi opened this issue Aug 31, 2017 · 2 comments
Closed

Don't return in getComponentName(), if component.name === 'cl' #44

sampi opened this issue Aug 31, 2017 · 2 comments

Comments

@sampi
Copy link

sampi commented Aug 31, 2017

In the same setup as #43

I noticed that when getComponentName() is called on inner === true VNodes, the resolution for the name of the component is often cl, even though proto.displayName or proto.name contains the name of the actual component.

The string cl is coming from this line: https://github.com/developit/preact-compat/blob/e25d0607d8a00a3e2f9229f33de4dc0f63c8e931/src/index.js#L405

I could fix this in the code with a simple if inside getComponentName:

if (component.name === 'cl') {
	delete component.name;
}

Again, I'm not sure if this is happening due to my setup with preact-compat or maybe it's related to the preact-compat-enzyme but it would be nice to know if this is intended operation of if I'm actually doing something wrong.

Can you help to figure this issue out as well?

@developit
Copy link
Member

Hmm - displayName shouldn't be on the prototype, it should be a property of the component's constructor. Does changing that fix the issue?

@developit
Copy link
Member

developit commented Sep 8, 2017

Ah - it looks like getComponent() is looking for displayName on the instance, which is incorrect:

https://github.com/developit/preact-render-to-string/blob/master/src/index.js#L211

Changing it to this should fix the issue (and save some bytes!):

function getComponentName(component) {
	let ctor = component.prototype && component.prototype.constructor;
	return ctor.displayName || ctor.name || getFallbackComponentName(component);
}

I've opened #45 with the fix.

# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

2 participants