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

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

Benefits of Programmatic SEO Implementation

What It Is and How to Implement It How SEOs Make the Web Better

In the rapidly evolving field of SEO, staying ahead of the curve necessitates adopting new strategies and utilizing technology.

Read More

Unlocking the potential of SEO for boosting business

Branding With SEO: Boost brand Visibility, credibility, and Engagement With An SEO Strategy

Many people think that the primary function of search engine optimization is to garner organic traffic on a website; however, it is beyond that.

Read More

Future-proofing your Mobile UI

Future-proofing your Mobile UI: Design Trends and Insights For Lasting Success

2023 was a revolutionizing year in the user interface designing field. Some events also showed substantial changes in how technology is used.

Read More