Applying the DRY principle

Frantisek Klucar
4 min readMay 25, 2022

I am currently assisting in the Savvily web project that is created with Hugo.

Hugo is a fast and modern static site generator written in Go, and designed to make website creation fun again.

Each time when we introduced a new feature, I saw that the code was getting more complicated to maintain. So I decided start to apply the DRY principle:

The main objective of DRY (Don’t Repeat Yourself) is to reduce the number of code repetitions. Duplicating data, logic or function in your code not only makes your code long, but also makes you spend a lot of time maintaining, debugging or modifying your code. If you need to make small changes to your code, you will need to do it in several places.

The first thing I noticed that was repeated several times was the author section. It appears in both the book, where main color is pink, and podcast,where main color is yellow, products:

Only the color changes, so we can make it a component. We create a new file in the partials folder and name it author.html. Inside we add this:

Author.html content.

Now we fix the section so that it ends like this:

Call to author.html component.

Now followed the option to subscribe to savviletter that appears on the pages of the podcast and savvi people:

As we can see, again only the color changes.

We create another file in the partials folder, but this time we call it subscribe.html and it will contain:

subscribe.html content.

And to call the component we need just add this line:

Call to subscribe.html component.

Thus, we have been creating components of the product reviews section, savvily products, savvily people page header.

The last component added is podcast-episodes.html. Which we use to paint the boxes of all the episodes of each podcast. This component is born by creating a page that hosts all the episodes of the previously selected podcast. The necessity of this component comes to that when we enter in the main page of a podcast. We can only see the last three episodes. To see all the episodes you have to click on the “see all episodes” button. The way we paint these three episodes is identical to how all the other episodes are painted on the page:

The content of the component is as follows:

So we invoke it in the templates like this:

Call in podcast page.
Call in episodes page.

In conclusion, duplication can cause maintenance nightmares, poor factorization and logical contradictions. Therefore, if we write the same logic more than once, we should do DRY in our code. The common way to make DRY in a code is to wrap the duplicated logic with a function and replace it from all places where it appears with function calls.

In my opinion, the DRY principle is key to creating good applications, with unification and reuse improving the quality of the code base and in turn improving maintainability.

--

--