Giter Club home page Giter Club logo

Comments (2)

adamsilver avatar adamsilver commented on May 19, 2024 1

This is something that I want to address, as you're not the first person to ask me about this.

If you have a JS constructor that was responsible for making an element show/hide then I would consider architecting it as follows:

var collapser1 = new Collapser(el, { cssHideClass: 'moduleA-isHidden' });
var collapser2 = new Collapser(el, { cssHideClass: 'moduleB-isHidden });

Then I might consider this in the CSS using the comma for reuse:

/* hidden */
.moduleA-isHidden,
.moduleB-isHidden {
display: none;
}

This is briefly addressed here: http://maintainablecss.com/chapters/reuse/#what-if-i-really-want-to-reuse-a-style

However, if this becomes painful or should I say unmaintainable then you could consider slightly breaking away from STRICT MaintainableCSS guidelines:

.globalState-isHidden {
     display: none;     
 }

Then not requiring the option for each "collapser" because you can hard code it within the collapser object:

var collapser1 = new Collapser(el1);
var collapser2 = new Collapser(el2);

Whilst this latter one, might at first appear to be more maintainable, and less code, you have to be careful with it. The trade off is that if something is collapseable due to that class but also has other visual difference based on that state, then it's likely that you won't want the exact same visual look for all the modules that rely on "isHidden". Does that make sense?

I need to formalise the approach to this a bit more and it's high up on my list.

HTH for now.

Update: it's also worth noting that this is a bit of a rare case, that might make more sense as a utility class. But as soon as ModuleA or ModuleB has different "isHidden" behaviour I wouldn't attempt to reuse it, and I would tie the functionality to the module in question as per the first approach above.

from maintainablecss.com-jekyll.

saschalichtenstein avatar saschalichtenstein commented on May 19, 2024 1

OK, thanks for your answer. Makes sense to me.

from maintainablecss.com-jekyll.

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.