Hacker News new | ask | show | jobs
by freshyill 3888 days ago
Why on earth would someone want to apply CSS via data attributes instead of classes? That's the kind of statement you need to justify.
2 comments

The filters are a collection of the same type of things. Therefore its more akin to filterAttr = filterEnumVal[autumn,auburn,sunnydale,cheezit,etc..]

Instead of polluting the CSS namespace, it's much more apt to use a data-instafilter="[val]" property.

Well goldenkey answered perfectly for me here.
Structural purposes.

Personally, I hate moving/changing/adding classes with Javascript. classList is hacky. Stuff like this is exactly what data-attributes are for. [0]

  img.dataset.filter // "instagram filter type"
The CSS would need slight changes, accordingly:

  img[data-filter="filter_type"] { /* styles */ }
[0] https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Usin...
Why does everyone here seem to be assuming the primary use-case is some kind of interactive on/off filter?

Surely the common setting for this to be applied is in a web page where the author/photographer/designer has already selected a fixed filter and the visitor is just looking at it applied. A UI allowing someone to toggle or select filters on an image is the exceptional case here.

There are better ways to accomplish this if you just want a fixed filter... such as displaying the image with the filter already applied instead of relying on user's (non-IE) browser to do it. Unless you plan to not support IE users at all, which is a rather big "don't do this" for front-end dev.

So a UI to select filters to apply in FF/Chrome as progressive enhancement seems to be the best use case I can see for this, if I can be frank.

"Better" from an infrastructural perspective maybe, for performance reasons, etc. but for many people quickly dropping in a bit of frontend magic is very often opted for in practice over more performant server-side setups.

As for not supporting IE users at all, it's a filter - you don't lose image display.

Hm, this is an interesting case where stylesheet design principles and application logic aren't so loosely coupled.

The data attributes almost seem to be a way to invoke CSS styles as functions themselves.

The main difference is that using classes, is misusing them. Because enum values as classes pollutes the namespace.

Enum values should map to attribute values. It makes logical sense. Attribute values don't go into a namespace. They just exist as things to query by.

It is possible many CSS engines optimize this fact. By not caching attribute values until there is a selector that uses them. Classes on the other hand are inherently saying 'I will query by this at a later time - I give no hints as to whether it is mutually exclusive with other class values. I merely have a list of class values which apply.'

Interesting, thanks for pointing this out.

I am still unclear, though, how you draw the line, in general, between things that belong in dataset and things that belong in standard classes?

goldenkey explained this well in their response.

https://news.ycombinator.com/item?id=10461988

I read that but it still isn't clear to me.

What is the namespace in question that we're polluting?

Where do you draw the line? Eg, take something a simple as creating striped table rows. Is something like 'class="oddRow"' wrong, because technically that's an enum value -- the rows can be "odd" or "even". Should we instead write 'data-rowtype="odd"'?

Basically, I need to see some more examples to understand the distinction better.

I've never understood separating by odd/even. Typically the people who do this only want to add styles to "alternate" rows. So I would use 'class="alternate"'.

>Basically, I need to see some more examples to understand the distinction better.

Personally I do it only for organizational purposes more than anything else. The "actual use cases" are a bit contrived if I'm being honest, at least for this example.

Let's say you have 5 photos on a page, each with different filters applied on different locations of the page. You want to allow users to normalize the page by selecting a single filter to apply to every photo.

I'm not a JS expert - but the first seems a lot easier to manipulate multiple images at once. A single check of img.dataset.filter instead of checking against an entire array of classes. (If there is a simpler way of checking the class example, I'm all ears.)

  <img src="/" data-filter="oldschool" class="medium"> //change to greyscale
  <img src="/" data-filter="fuchsia" class="large"> //change to greyscale
  <img src="/" class="large"> //not to be changed
  <img src="/" data-filter="1970" class="small"> //change to greyscale


  <img src="/" class="medium oldschool"> //change to greyscale
  <img src="/" class="large fuchsia"> //change to greyscale
  <img src="/" class="small"> //not to be changed
  <img src="/" class="small 1970"> //change to greyscale
If you're saying your sole reason for doing this is to ease your javascript selection, I think that's a poor reason. If you have a serious dynamic javascript page of any complexity, you have should have a pure js model and your view should be updating off that, using react, mithril, or your own vanilla update function. Now, not everyone would agree with that, and there may be use cases where it's overkill, but in that case I still don't buy the argument, as you can just write a short helper function that makes things just as easy as selecting with dataset.

I don't think a fear of javascript should be driving decisions about markup. You should write your markup in the clearest, most semantic way possible, and let what are ultimately trivial js problems take care of themselves.

> classList is hacky

How so? I don't think that it's in anyway hackier than its sister dataset.

I don't understand that comment either, but it might be the lack of classList support in earlier IE versions without a polyfill.
I hate moving/changing/adding classes with Javascript. classList is hacky.

...in what way?