Frontend frameworks
Within this post, I will show you one, of many ways to use components without a frontend framework. Do not get me wrong, I like frameworks like Vue.js, React, or Angular. At our company, we write JavaScript with Vue.js on a daily basis.
But sometimes those frameworks are too much. Especially when building simple websites instead of complex web applications. In these cases, we do not use a framework at all and just write HTML, CSS, and JavaScript.
Components
If your source code gets messy there is often an easy way to improve it. Move your source code into smaller chunks β divide and conquer.
Splitting your source code into multiple components is a well-known way to structure your project. Things get isolated, readable, clear, reusable, extendable, and maintainable. In fact, that is what most of the frontend frameworks do themselves.
Welcome to BEM
BEM (Block Element Modifier) is a methodology to organize your frontend. It is mostly known in the world of CSS, but I am going to show you how to use it for JavaScript, too. Please remember, BEM is a methodology and not a framework. It will come with zero dependencies.
A card block
In BEM the components are called blocks. It is just different terminology for the same thing.
Now, imagine a card block (source code).
HTML
We use HTML for the structure and content of the card block. Of course, you can use programming languages, template engines, or other tools to improve the HTML part of the block.
<article class="card card--highlight">
<figure class="card__figure">
<img class="card__image" src="#">
<figcaption class="card__caption">#ffed00</figcaption>
</figure>
<h2 class="card__headline">Corporate yellow</h2>
<p class="card__description">This yellow is defined as #ffed00. It is a very nice color. It is one of our corporate colors at visuellverstehen.</p>
</article>
CSS
We use CSS for the presentation and style of the card block. Of course, you can use pre processors, post processors, or other tools to make CSS more comfortable to use.
.card {
font-family: sans-serif;
line-height: 1.5;
padding: 1rem;
max-width: 20rem;
border: 0.25rem solid #f6f6f6;
}
.card.card--highlight {
border-color: #ffed00;
}
.card__figure {
margin: 0;
}
.card__image {
display: block;
width: 100%;
height: 6rem;
}
.card__caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.card__headline {
font-size: 1.5rem;
font-weight: bold;
}
JavaScript
We use JavaScript for the functionality of the card block. Of course, you can use all kinds of tools to improve how you write JavaScript (Babel, TypeScript, ESLint, webpack, β¦).
(function () {
var initializeCard = function($card) {
console.log('Do whatever this $card block should be doing.');
};
document.addEventListener('DOMContentLoaded', function() {
var $cards = document.querySelectorAll('.card');
for (var i = $cards.length - 1; i >= 0; i--) {
initializeCard($cards[i]);
}
});
}());
Sometimes blocks have to communicate with each other. For that, there are at least two good options: Custom events and stage management.
Learn the basics
It is remarkable how much can be done just using HTML, CSS, and JavaScript. That is one reason why I encourage everyone to learn the basics.
Top comments (16)
I read 3 times and unless Iβm blind, I donβt see where you applied BEM in javascript.
Also the $ sign here has nothing to do with jQuery I guess.. just a naming convention to point out that it holds an element.
Thanks for your comment. It made me smile. You are not blind. You are right. I did not go into details with applying BEM to JavaScript, although I said so: Β»I am going to show you how to use it for JavaScript, tooΒ«.
The JavaScript part in my post does show how to create an isolated environment for each instance of a block. To go further, maybe a small teaser for a gallery block can help.
Thanks for this example (extended) and kudos to this loop counting backward π
for (var i = $cards.length - 1; i >= 0; i--){...}
Another practice that may be worth considering is using JavaScript Hooks (though it isn't universally accepted; see also Decoupling Your HTML, CSS, and JavaScript).
so
Now superficially this may come across as redundant but as stated by Harry Roberts:
It could also be seen as helpful that the
js-*
classes within the HTML clearly identify those blocks (or elements) that have behavioural enhancements (i.e. are "JavaScript components").It isn't always necessary to use class-based JavaScript hooks on elements inside a block. Given that a block/component instance is already scoped on a particular fragment of the DOM it is possible to more easily select on non-class features or the fragment's internal structure to bind element behaviour.
See also:
Thanks for the insights. I once tried the
js-
prefix, but did not like it that much. I like to use same classes for JavaScript and CSS.And also thanks for showing me how to use syntax highlighting at DEV. I will update my post as soon as possible.
Regarding the $ sign. Yes, I use it to point out which variables hold DOM elements.
It's my personal opinion but I think these days, unless you're web app doesn't require any JS, manipulating DOM manually is a very risky approach. It's very easy to get into a spaghetti call stack if you e.g. need to fetch and interpolate some data into DOM (especially when constructing lists). Having said that, I see why shifting towards roots using pure JS + HTML + CSS might look attractive. And I see how CV-driven development became so popular, and that over-engineering and using fancy tech-stack takes precedence over the product/feature being implemented. Luckily there are still minimalistic rendring libraries, micro frameworks, starter boilerplates or even entire self-contained tools which purpose is to make you productive.
Thanks for your opinion on this. I think it is safe to do simple DOM manipulating without a framework.
Just be careful: going frameworkless is a one-way trip. =)
Here is my small attempt: github.com/Honatas/frameworkless-j...
"Frameworkless" doesn't necessarily imply going "full vanilla". It's possible to use libraries like Β΅html (and related) to take care of some of the tedious details while having your own code supply the plumbing of the client side page/application.
Rasmus Lerdorf - original creator of PHP
Nonetheless having knowledge of the more common Web APIs on a detailed level (first) is invaluable.
Thanks for commenting.
I like your approach, but isn't it a bit of a framework? ;)
A very small one, nonetheless. Anything you do that tries to avoid code duplicity will end up looking like a framework anyway. The point of frameworkless is not to avoid frameworks at all, but to make things simple and keep the code under your control, in order to be able to eliminate as much technical debt as possible. Which I believe is exactly what you want to do with your approach: keep things simple, stick to the basics.
But yeah, I guess I could strip some stuff from there and go even simpler, but then I wouldn't have a Router anymore. Sad. ;)
I am not sure, where is that BEM in JS, too, but in CSS, BEM is overpriced, like you fix a problem that doesn't exists just to think something is much more organized and at the end, the class names are longer that the content inside the element.
Thanks for sharing your opinion.
I have made other experiences. With BEM the frontend (HTML, CSS and JavaScript) gets more organized and it works really well for some of our teams.
Not everything works well for everyone. Some of our teams use TailwindCSS, which is a completely different approach.
What works for your team?
Thanks for this nice article! Vanilla HTML, CSS and JS are truly underrated.
Btw I like seeing fellow devs from Germany here on DEV
<= located near Chemnitz π
Thank you :)
<= located in Flensburg