Monday, November 29, 2021

How to Build a UIkit Lightbox With Dot Navigation

How to Build a UIkit Lightbox With Dot Navigation

Have you ever worked with the UIkit front-end framework? Its current version at the time of writing is 3.9.4, and in the next few months, YOOtheme (the team behind it) plan to release v4.

This isn’t the first time I’ve written about UIkit; some years ago, while still at v2, I introduced you to its powerful features. Today I’ll cover a more specific topic; in this tutorial you’ll learn how to extend its super useful lightbox component by adding a dot navigation thanks to its dotnav component

Although not required, some knowledge of the UIkit framework or the general concept behind front-end frameworks will help when following along. Even if you have neither I encourage you to give this tutorial a chance. Think of it as a way to learn one or two things about a new framework and enhance your JavaScript skills.

Our UIkit Lightbox Extension

Without further ado, here’s what we’ll be creating (click an image to reveal the lightbox):

Notice the dot navigation that sits at the top center position of the lightbox.

The dot navigation

1. Include the Required Assets

As happens with any third-party framework or library, to use it we first have to install its required files.

UIkit requires at least two files: a CSS and a JavaScript file. Optionally, you can include another JavaScript file if you want to use the UIkit icons.

With that in mind, if you look under the Settings tab of our demo pen, you’ll see that there’s one external CSS file and one external JavaScript file.

The required UIkit CSS fileThe required UIkit CSS fileThe required UIkit CSS file
The required Uikit JavaScript fileThe required Uikit JavaScript fileThe required Uikit JavaScript file

2. Create an Image Grid

To begin with, we’ll take advantage of UIkit’s grid system to build a simple image grid. 

The image gridThe image gridThe image grid

Let’s take some notes:

  • The article element will behave as the lightbox container. All links inside it will be lightbox links. Each one of them will have a data-caption and a data-alt attribute. Their job will be to add a caption and an alt attribute to the relevant lightbox image.
  • We’ll initialize the lightbox through JavaScript later. 
  • For images, we’ll use some Unsplash photos taken from a recent tutorial.
  • We’ll lazy load the images thanks to the image component.

Here’s the required markup:

3. Create the UIkit Lightbox

Although there’s the option to activate a UIkit lightbox by adding the uk-lightbox attribute to the .post element, let’s do it through JavaScript as we want to call later its show() method:

As you can see in the demo below, with just one line of code, we’ve managed to create a fully functional UIkit lightbox.

About UIkit Events

At this point we’re ready to go a step further and extend the lightbox as we wish. To achieve this task, we’ll use lightbox’s available custom events. Let’s make a short stop here and explain a few things.

UIkit uses a special syntax for capturing events as documented here that looks like this:

In our case, the lightbox isn’t part of the initial DOM, so something like this won’t work:

Instead, we should do this:

Notice that we take advantage of the event delegation and attach the event to the document element. Then, via the target property of the specific event, we’ll check the elements on which the event occurred. 

We’ll see them in action now!

Create the Dot Navigation

As a first step, we have to create the dot navigation and append it to the lightbox. To do this, we’ll listen for the lightbox’s beforeshow event and perform the following actions:

  1. Build the dot navigation markup based on the number of lightbox items. Again, this markup will come from the dotnav component.
  2. Append the dot navigation to the lightbox and place it at the top center position via the uk-position-top-center utility class.
  3. Add the uk-light utility class to the lightbox that will give a light (white) color to the dot indicators.

Here’s the required code:

Set the Active Dot Item

As a second step, we have to declare the active dot navigation item. To do this, we’ll listen for the lightbox’s itemshown event and perform the following actions:

  1. Remove the uk-active class from the (pre-existing) active dot item, if there’s any.
  2. Find the index of the current active lightbox item (image).
  3. Assign the uk-active class to the dot item whose index matches the index of this lightbox item. 

Here’s the required code:

Click on Dot Links

Lastly, the dot links should reveal the corresponding lightbox item upon click. To do this, each time such a link is clicked, we’ll perform the following actions:

  1. Prevent its default action.
  2. Find its index.
  3. Show the associated lightbox item by using the available show() method.

Here’s the required code:

Conclusion

That’s it, folks! Today we extended the functionality of a UIkit component by taking advantage of another existing one. Hopefully, if you are a UIkit lover, you might find some usefulness in this extension. For those who haven’t used UIkit in the past, I hope this little exercise has helped you get to know a small piece of its powerful features.

What I really like about this framework is that it’s easy to embed common UI elements in your sites/apps without having to install separate plugins for carousels, scroll animations, lightboxes, etc. More UIkit tutorials will follow shortly—stay tuned!

Lastly, if you have questions regarding any of the UIkit components, be sure to join the UIkit community on Discord.

Once again, here’s what we built:

As always, thanks a lot for reading!


No comments:

Post a Comment