Wednesday, 27 April 2016

Open My Account page in modal using liferay custom theme

In this blog I will explain how to open "My account" page in modal popup using custom theme in liferay 6.2.


  • Prerequisites
    • Have basic knowledge of Liferay 6.2 theme. You can learn more about Liferay theme from here.
  • Requirement
    • Open my account page in modal popup using liferay theme.
  • Implementation
    • Step 1: Create theme and add my account link where you want to add as per your UI requirement.
    • Step 2: Add following function in javascript for open modal popup in theme.
                 <script type="text/javascript">
            /* function for open modal popup onclick of myaccount */
            function openMyAccount() {
                var myAcc_url = '$theme_display.getURLMyAccount()';
                var popUpWindow = Liferay.Util.openWindow({
                    dialog: {
                        align: Liferay.Util.Window.ALIGN_CENTER,
                        cache: false,
                        width: 1200, // width of modal popup
                        modal: true
                    },
                    title: "My Account", // anything you want to give 
                    id: "myAccountPopUpID", //modal id
                    uri: myAcc_url
                });
            }
        </script>
    • Step 3: Bind onclick event on "My account" link created using onClick property.
                  <a href="#" onclick='openMyAccount()'>My Account</a>

Friday, 8 April 2016

A blazing-fast Single Page Application (SPA) using Liferay 6.2 and Senna.js

In this blog I will explain about how to develop a blazing-fast single page application (SPA) using Liferay theme and senna.js.
  • Prerequisites
    • Knowledge about the SPA (Single Page Application). You can learn more about SPA from here.
    • Have basic knowledge of Liferay 6.2 theme. You can learn more about Liferay theme from here.
    • Have basic knowledge of senna.js Framework which is developed for support Single Page Application. You can learn about senna.js from here.
  • Requirement
    • We can use the concept of SPA(Single Page Application) in liferay to make liferay portal work faster.
  • Implementation
    • Step 1: Create liferay theme project.
      • Create a liferay plugin project for theme with name "SPA support theme".
      • Select Theme Parent: classic, as we do not need to change look and feel of theme for now.
      • Select Theme Framework: Velocity, as I am comfortable with this scripting language and showing demo using velocity as theme framework.
    • Step 2: Modify theme for support spa using senna.js. 
      • Modify portal_normal.vm file by adding it in theme-folder/docroot/_diffs/templates, by including senna.js file in head of html downloaded from here.
             <script src="$javascript_folder/senna.js"></script>
      • Modify navigation.vm file by adding it in theme-folder/docroot/_diffs/templates. Apply class to all anchor tags as "senna-link" or any other class name you want to apply for identify links of navigation by senna and not all links available in html page.
      • Add following script at the end of portal_normal.vm to configure navigation link and liferay site with senna.
                           <script>
                 // initializing senna 
                 var app = new senna.App();
                 // Set links selector for navigations
                 app.setLinkSelector(".senna-link");
                 // set basic path of liferay site
                 app.setBasePath('/web/spa-demo/');
                 // Id of DOM element which will be replaced from
                 // next page request
                 // using content div - default in liferay theme
                 app.addSurfaces('content');
                 // define routes for all the navigation links
                 // route link = Base path + page link
                 app.addRoutes([
                     new senna.Route('home', senna.HtmlScreen),
                     new senna.Route('second', senna.HtmlScreen),
                     new senna.Route('third', senna.HtmlScreen),
                 ]);
            </script>
    • Step 3: Apply "SPA support theme".
      • Create liferay blank site with name "SPA Demo" and add public pages with name "Home", "Second" and "Third". Add some web content on the pages.
      • Apply created theme to all public pages and see the SPA applied on liferay site and how your public pages are loaded faster then never.
      • You can see the ajax request are made by senna for load only content part of the page using developer-tools.
Note: Make sure that you have configured basic path and routes same as your created site pages URL in script appended at the end of the portal_normal.vm.

Find the screenshots below of demo of SPA in liferay.
1. Site "Home" page
Site "Home" page

 2. Site "Second" page requested using ajax by Senna
Site "Second" page requested using ajax by Senna 
 3. Site "Third" page requested using ajax by Senna
Site "Third" page requested using ajax by Senna
following is the URL of git 
You will find example under theme > SPA folder.