Popups in Drupal 8
2016 02 Apr

Popups in Drupal 8? No problem!

Drupal 8 is here and everyone is excited about it. There are too many features and add-ons to explore. However, this one focusses only on overlay/popup i.e. provide a simple and easy implementation. With this blog, I aim to explain the basic implementation of how to create a popup of your own.

Before learning to implement popup, let us briefly go through the Drupal 8 routing system.

If you already know about the routing system, you can skip this section and if you don't I assume you still know at least the basics of Drupal 8. I have a page which has a table display of some data. On top of this page, I'll provide a link which will open a form in a popup.

Now, let's start with the steps.

At first, we create a routing link where we show a table with some content.


hollywood.view_movie:
    path: '/movies-list'
    defaults:
        _title: 'Movie List'
        _controller: '\Drupal\hollywood\Controller\MovieList::overview'
    requirements:
        _permission: 'movies list'

I am using the below code to render this table.   


$content['movie_list'] = array(
     '#type' => 'table',
     '#header' => $this->header(),
     '#title' => $this->t('Movie List'),
     '#rows' => $this->row(),
);

 

Now let us see how we display the link at the top of the table which says "Add Movie".
I am using the following code to show the above link and its overlay.


$content['overlay_link'] = array(
    '#type' => 'link',
    '#title' => $this->t('Add movie'),
    '#url' => Url::fromRoute('node.add', ['node_type' => 'content_type_movie']),
    '#attributes' => [
        'class' => ['use-ajax'],
        'data-dialog-type' => 'modal',
        'data-dialog-options' => Json::encode([
            'width' => 700,
        ]),
    ],
);

This code is self-explanatory but let me explain to you one by one, we ask Drupal to create a link using '#type' => 'link', with the title “Add movie” defined by #title, #url defining the href attribute of the tag and, #attributes adds an attribute to the tag.     


'#attributes' => [
    'class' => ['use-ajax'],
    'data-dialog-type' => 'modal',
    'data-dialog-options' => Json::encode([
        'width' => 700,
    ]),
],

These above attributes will make the content of the link in an overlay, without these attributes, this will be a simple link.

And there you go. It is as simple as that. No more dependencies on multiple modal and popup modules. Now you just need to be right in your syntax and understand the attributes well enough to create a popup link in no time.
There are a lot of other things that can be done around the popups and I'll continue to explain them in further blogs. Look forward to your thoughts and feedback.

Latest Blogs

Blockchain Integration Into Public Digital Good

The Role of Blockchain in Digital Public Goods: Use Cases and Innovations

Digital public goods, such as open-source software, IT models, and standards, are the backbone of our digital infrastructure.

Read More

Role of Open Source and Digital Public Goods

Boost DPG Development: How Open Source Maximizes Efficiency

The emergence of open-source workflow solutions has revolutionized workflow management.

Read More

Digital Public Goods Alliance Strategy 2021–2026

Boosting Digital Infrastructure with Digital Public Goods

The United Nations (UN) defines a roadmap for Digital Public Goods (DPGs) as open-source software, open data, open AI models, open standards, and open content.

Read More

Best Practices for Software Testing

Power of Software Testing: Why Software Teams Use It Effectively

In the modern digital era, where software is used in nearly every aspect of everyday life, the importance of software testing cannot be emphasized.

Read More