BookmarkSubscribeRSS Feed

An approach to SAS Portal in Viya : Adding SAS Visual Analytics content

Started ‎02-28-2022 by
Modified ‎09-30-2022 by
Views 4,642

In the first article in this series, I described the role of the SAS Information Delivery Portal and the different types of information that you can include in it.

 

This article will be about integrating SAS Visual Analytics content in the portal. To achieve this, I will walk you through the steps to configure a development environment that you can use throughout the blog series. You will discover how you can use technologies like NodeJS, ReactJS and Visual Studio Code to build a web application like a portal. You will also discover the different approaches to insert SAS Visual Analytics content in a portal-like web application using the SAS Visual Analytics SDK.

 

Configure the development environment

 

Based on my experience and the feedback I received from people who are reading my blogs, configuring a development environment is sometimes challenging. The questions I often get are:

 

  • Which editor should I use to write my HTML/JavaScript code?
  • How do I test my code?
  • Do I really need a web server?

 

There is no one perfect answer that can meet everyone's needs. I recommend to use the components that you are confident with and for which you can get support from colleagues and from a large developer's community.

 

This is the reason why I chose NodeJS, ReactJS and Visual Studio Code. Using NodeJS and ReactJS, you will code in a single programming language for the server side and for the client side: JavaScript. The two frameworks have a large adoption in the developers community and you will be able to find a lot of documentation and tutorials on the web. You can also find a lot of answers to your questions using Stack Overflow. Visual Studio Code is a code editor which you can use for a large variety of languages. There are other editors available on the market from text editors to full blown Integrated Development Environments (IDE). The benefit of VSCode is that you can program in a large variety of languages and it has a lot of extensions that you can use to customize your experience but also to adapt to your development needs.

 

With that being said, I will summarize my answers to these three questions:

 

  • Which editor should I use to write my HTML/JavaScript code? Visual Studio Code to write your code.
  • How do I test my code? NodeJS to host the web pages on your development environment
  • Do I really need a web server? Yes, SAS content is accessible through HTTPS protocol and your browser will prevent access from non-secure web pages to SAS Viya.

 

The first step in the configuration will be to install the needed components.

 

You have to download the NodeJS and Visual Studio Code. Once downloaded, follow the instructions provided on the respective web sites to install them.

 

There is no need to configure NodeJS as it works out-of-the-box. You can nevertheless validate that NodeJS is properly installed by starting a terminal on the machine where it is installed and execute the following command to get the installed version (note that you may have a different result):

 

 

node --version

xab_1_Portal_validateNodeJS.png





Select any image to see a larger version.
Mobile users: To view the images, select the "Full" version at the bottom of the page.


Now that NodeJS is installed and working, you can create your React application by executing the following command:

npx create-react-app sasportal

xab_2_Portal_createReactApp.png

 

You have created your React application. It is now time to start it and validate that it works. To do that execute the following commands:

 

cd sasportal
npm start

 

The npm start command will start your application/server and open a browser window with the default application.

xab_3_Portal_startApp.png

 

You can stop the server for now by closing the Terminal or pressing ctrl+c keys.

 

You can now start VSCode and open the folder containing your application.

xab_4_Portal_openFolder.png

 

Within VSCode, navigate to the src folder and open App.js file. Around line 18, you should see the text Learn React. You can change the text to Learn SAS. When done save the file.

 

In the left panel, at the bottom you should see an NPM SCRIPTS accordion. Open it and click on the play icon next to the start command.

xab_5_Portal_startAppVSCode.png

 

It will start the server and open a browser where you should see the modification you did.

xab_6_Portal_learnSAS.png

 

There is one little change that you need to do to interact with SAS Viya. You need to run your server using HTTPS. Here are the steps to configure it:

 

  1. Open Package.json file
  2. Look for start command under scripts
  3. Change the command to enforce HTTPS as documented on the create-react-app documentation:
    • Windows:
      • CMD:
        set HTTPS=true&&react-scripts start
      • Powershell:
        ($env:HTTPS = "true") -and (react-scripts start)
    • Linux and MacOS:
      HTTPS=true react-scripts start
  4. Save the file.
  5. Stop the server by pressing the ctrl+c in the VSCode Terminal
  6. Start the server using the play icon as before.

 

A new browser window will open up but this time, the url will be https://localhost:3000.

 

You have now configured your machine for development and you have created a React application. If you need more information about using VSCode for JavaScript development, please refer to this page.

 

Configure your SAS Viya environment

 

To integrate SAS Visual Analytics content in the web application we are building to mimic theportal, SAS provides the SAS Visual Analytics SDK. The SDK eases the integration of the SAS Visual Analytics components: report, page or object. The SAS environment needs specific configurations to use the SAS VA SDK. The setup information is provided on the following page. It is important that your environment is properly configured. Here are the screenshots of the environment I'm using:

 

  • Enable Cross-Origin Resource Sharing

    xab_7_Portal_EVCors.png


  • Cross-Site Request Forgery

    xab_8_Portal_EVCsrf.png

  • Cross-Site Cookies

    xab_9_Portal_EVCookies.png

 

  • HTTPS: our development has already been configured to run on HTTPS.
  • Allow guest access: to access our portal page, the users will have to be authenticated. As a result, there is no need to configure Guest authentication. If you want to display content even if the users are not authenticated, you should configure guest access.

 

Please note that the above configuration is only valid for a development environment where developers are running their web server on localhost. You can configure NodeJS to run under the machine name but that implies you need to add the machines of all the developers in the list of allowedOrigins. If you are working on an environment where security is important, you should not use localhost.

 

If you need more information about the configuration of these parameters, please refer to the following article.

Adapt the React application

 

Now that the development environment and the SAS Viya environment are configured, it is time to replace the default page and include SAS Visual Analytics Content.

 

The first content we will add is "static" content that will display a Key Value object. We will insert the reference to an object that was extracted with the related data from a SAS Visual Analytics report page. This functionality to export report elements from SAS Visual Analytics for offline usage has been added to SAS Viya 2021.1.5. If you want more information about the functionality, please refer to this article.

 

To build the portal, I've downloaded some Covid-19 related data from European Centre for Disease Prevention and Control. Using these data, I could create a few reports in SAS Visual Analytics. If you want to follow along the steps, you don't need to use specific data or specific objects or report layout. Any object can be used though you should be aware of the data limits. The exported element can't bring all the CAS data offline. So, you should think about the usability and the amount of data that is required for your KPI. If the amount of data needed is too big to be made available offline, it is also possible to use the dynamic elements as we will see with the second object we will add to our application.

 

 

Export SAS Report Package

 

First step will be to export the SAS Report Package from SAS Visual Analytics.

 

  1. Open the report in SAS Visual Analytics.
  2. Click on the overflow menu and select Report Package under Export.

    xab_10_Portal_exportPackage.png

     

  3. Select the element you want to export.

    xab_11_Portal_exportPackageSelection.png

     

The Report Package will be generated and downloaded to the client machine.

 

Add report package content

  1. In VSCode, create a folder named reports under public folder.
  2. Under the reports folder, create a new folder with the name of the report. In my case: ICU Pressure
  3. Open the zip file and extract the content to the newly created folder.

 

Your folder content should look like this:

xab_12_Portal_reportPackageContent.png

 

Creating a folder that has the same name as the report is interesting when you need to automate the extraction process. As I mentioned, the exported package is a set of completely independent files and there is no link to the Visual Analytics report. As a result, the report package should be recreated as often as the data are refreshed. You can automate the export process using the sas-viya CLI and also automate the extraction to replace the content of report folder in the application.

 

Integrate SAS VA SDK package

 

Now that we have the report object and the data in the web application, it is time to integrate the KPI in the portal. In order to do this, the SAS VA SDK needs to be integrated in our application. We have two options:

 

  1. Use the SAS VA SDK package inside the application.
  2. Import it through the Content Delivery Network (CDN) where SAS hosts the SDK.

 

As we are using NodeJS, we will choose the first option and use the npm package. For more information about how to use the SAS VA SDK, please refer to the documentation or this article for an introduction or this one if you want to dive deeper.

 

  1. Stop the server, if not yet so already.
  2. In the Terminal, type the following command to install the package:
    npm install @sassoftware/va-report-components
  3. In VSCode, create a folder named assets under public folder.
  4. Inside the assets folder, create another folder named: va-sdk
  5. Execute the following command to copy the needed files in the public/assets/va-sdk folder.
    cp -r ./node_modules/@sassoftware/va-report-components ./public/assets/va-sdk
  6. When done, open the index.html file located directly under public folder.
  7. In the head  section of the file, add the following script tag:
    <script src="assets/va-sdk/dist/umd/va-report-components.js"></script>
     xab_13_Portal_addVAReportComponentsJS.png

     

  8. Save the index.html file.

Add the report element to the portal

It is now time to add the report object in the application.

 

  1. Open the App.js file located src folder.
  2. Remove the content of the file and replace it with the following code:
    xab_14_Portal_emptyAppJS.png
  3. Open the index.html file located under /public/reports/<name of your report>.
  4. Locate the sas-report-object tag and copy it.
    xab_15_Portal_copyObjectElement.png
  5. Paste the tag you copied into the App.js file in the return function.
    xab_16_Portal_pasteObjectElement.png
  6. Before we can use the object, we need to adapt the packageUri and make it point to the location of the report in my case: ./reports/ICUPressure
    xab_17_Portal_adaptElementURI-1024x222.png
  7. When done, save the App.js file and check the result in the browser.  
    xab_18_Portal_reportElementWrongLayout-300x157.png

Adapt the layout

 

The resulting page needs to be modified since we can see that the object is not completely displayed. It is time to adapt the layout of the application. You have multiple options to customize the application layout.

 

  • Update the CSS files and modify the style of the element.
  • Use Bootstrap or any other framework to adapt the look and feel using CSS only approach.
  • Use React based libraries like React Boostrap or Material UI.

 

Knowing that the objective is to build a portal with different components and that we are in the early stages of that process, it is important to make the right choice. Mine has been to use Material UI. This library is based on Material Design concepts and has a large library of components which makes it easy to use. React Bootstrap is also another great option but Material Design has my preference. It is up to you to choose the library you are the most comfortable with. If you need more information and examples about Material UI, please refer to the Getting Started.

 

Before you can use the Material UI components, you need to install the NPM packages.

 

  1. Stop the React application.
  2. Open a Terminal and navigate to the root folder of your application.
  3. Execute the following command as indicated on Material UI website:
    npm install @mui/material @emotion/react @emotion/styled @mui/icons-material
    
  4. After completion, open the index.html under public folder and add the link tags for the fonts and font icons as indicated in the documentation.
    xab_19_Portal_addMUILinks-1024x810.png
  5. Save the index.html file.
  6. Open the App.js file located under src folder.
  7. Add an import statement at the top of the file for App.css
  8. Edit the return statement like depicted below. Adding a Grid element should automatically add the related import statement. If this is not the case, add it manually at the top of the file.
    xab_20_Portal_addGrid-2-1024x624.png
  9. Save the App.js file.
  10. Open the App.css file and add the following instructions to it:
    xab_21_Portal_updateAppCSS-300x188.png
  11. Save the App.css file.
  12. Start the application, if not yet done.

 

The application looks like this. The object is displayed in the top right of the page as we defined using the Grid components.

 

xab_22_Portal_fullScreenOneObject-1024x578.png

 

Add another object

 

Now that the application contains "static" content, it might be a good idea to insert another KPI with dynamically loaded data. The biggest difference between the two types of objects is the need for a connection. For the "static" content object, it was possible to extract the object and the data. From that point, the content is static and will only be refreshed when the report object is extracted again and replaced in the web server. The dynamically loaded object requires a connection to the server. Without that connection, the object can't display data. The environment that I'm using for this article, doesn't have Guest access which means that the user will have to authenticate before he or she sees the data.

 

Let me guide you through the steps to add the dynamically loaded object. I will use another report that is based on Covid-19 number of cases and deaths. The steps to integrate that report object are:

 

  1. Open the report in SAS Visual Analytics.
  2. Click on the overflow menu of the object and select Copy link...
    xab_23_Portal_copyLink-1024x814.png
  3. In the Copy Link window, select the Interactive report and Embeddable web component. When done, click on Copy Link button.
    xab_24_Portal_copyLinkSelection.png

 

Now that you have copied the HTML tag, you can add a new Grid tag in the App.js file. Inside the Grid tag, paste the code you copied for the report object. The code should now look like this.

xab_25_Portal_addReportObjectLink-1-1024x758.png

 

If you compare the code from the exported report package and the generated link, you should notice a few differences. The sas-report-object contains the connection information to access the server (authenticationType and url). It also contains a reportUri instead of the packageUri. Technically, we have the same sas-report-object tag but different information are passed to it.

 

Please note also that minHeight for the cell has been set to 400px as the object requires a bit more space to display its content.

 

After saving the App.js, you can navigate to the portal page and you should get the following result.

xab_26_Portal_fullScreenNeedLogin-1024x578.png

 

As you can see, the second object prompts the user to Login. This is the expected behavior as the generated sas-report-object tag has an authenticationType set to credentials.

 

After clicking on the Login button, the user is prompted for authentication.

xab_27_Portal_authenticationPrompt-1024x876.png

 

After the authentication process, the user sees the following result.


xab_28_Portal_fullScreenTwoObject-1024x578.png

 

Conclusion

 

In this article, we've seen the different techniques to integrate SAS Visual Report Objects in a custom web application which is designed to server as a portal. You've seen how we can export SAS report packages to display static content and how to use the Copy Link functionality from a live report to generate the HTML tags that you can use in your application to display dynamic content.

 

The first part of the article was mainly about configuring your development environment to build a React application and integrate the SAS Visual Analytics SDK. By now, you should be able to create the basic structure of your application and to integrate KPIs from the SAS Visual Analytics. If you are coming from a SAS 9 world with the SAS Information Delivery Portal, these KPIs were generated using SAS BI Dashboard and then inserted using a portlet. Using the SAS Visual Analytics SDK, we are able to provide the same kind of content using HTML tags instead of a portlet.

 

Stay tuned for the other articles in the series. The code at the end of this blog is available here.

 

Find more articles from SAS Global Enablement and Learning here.

Version history
Last update:
‎09-30-2022 03:33 AM
Updated by:
Contributors

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Free course: Data Literacy Essentials

Data Literacy is for all, even absolute beginners. Jump on board with this free e-learning  and boost your career prospects.

Get Started

Article Tags