-
Notifications
You must be signed in to change notification settings - Fork 176
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
Nested components and how to handle interactive states (pseudo class) #49
Comments
I would do this with CSS: .user-profile:hover {
.user-details > .name,
.user-image > .image {
// ...
}
} Edit: I adjusted the code a little bit, I forgot you mentioned that the styles would be applied to both elements. |
Unfortunately this is one of the edge cases that RSCSS falls short of. On Aug 9 2016, at 12:14 am, James Kolce notifications@github.com wrote:
|
Thanks for your replies! Rico, I think you're right. It actually is rather an edge case but it's quite an interesting though. I spent some time thinking about it and what do you guys think about that: Maybe you could see it as something like a variant – strictly seen it actually is – but only for interactive states or as a kind of glue. Right now I'm abusing the component pattern just for having a class/identifier to style other nested components. Maybe this could also be something that could reside in the helpers section? Something like Nevertheless this is something that shouldn't occur on purpose and should actually be avoided if you stick to RCSS and think twice about your components! Doesn't it? |
I'm using RSCSS at work and in private for quite a while now and I really love it. Though there is one thing where I would like to receive some feedback from other users or the author.
How do you guys handle interactive states like :hover etc. between multiple components? Let me demonstrate it with a simple example.
Now imagine I want to change the appearance of
.user-details > .name
and.user-image > .image
when I hover.user-profile
— remember this is quite a simple example. How do you guys do that? Is this the case where you break the rules and do something like this:Or do you handle it with JS? I know it's quite simple if we just talk about hover states on a single component, but when you need to change multiple nested components when a parent component is interacted with it's quite tricky I think.
So, how do you guys have solved this?
The text was updated successfully, but these errors were encountered: