Application Development Process

After installing the necessary dependencies, navigate to your project directory and begin the React application development process. You can use a code editor like Visual Studio Code (VS Code) for writing and managing code.

The development process also includes the following steps:

📘

Note:

All Vulcan components are based on Ant Design. Refer to the Ant Design component library when developing react components using the Vulcan component library.

Generating a React Container

This process sets up a container with proper Redux-Saga-Intl connectivity, allowing you to develop and add UI elements easily. This eliminates the need to refer to or copy other boilerplate components.

To generate a react component, follow these steps:

  1. Navigate to your project directory and open a terminal interface.
  2. Run the following command:
    npm run generate
    
  3. Choose the generator type from the options.

📘

Note:

The types of generators available are:

GeneratorDescriptionExample
OrganismsLarger UI components composed of smaller components.A header with a search bar and navigation links
PagesContainers that include various elements and other components to form a complete page.A dashboard page containing charts, tables, and other widgets.
TemplatesPredefined layouts or structures with placeholders for content.An analytics dashboard template with sections for graphs, user metrics, and recent activities.
  1. Provide a name for the container.
  2. Follow the setup procedure to complete the generation process.

State Transitions with React Router

Page containers created while generating a react container have a history property that uses React Router to do state transitions.

Sample:
history.push('/state/route');

📘

Note:

Only use the part of the path that defines the state. For example, just /contact, and not the full URL like https://example.com/contact.

Refer to routes.js for the state route paths.

Setting Up Internationalization During Development

The setup and files required for internationalization are created while generating a React container. To manually set up internationalization in the development process, follow these steps:

  1. Import injectIntl from the react-intl package using the following:
    import { injectIntl } from 'react-intl';

📘

Note:

The injectIntl package will be imported if you have already set up a React container.

  1. Use injectIntl to wrap the component while exporting it, using the following:
    (withRouter(injectIntl(clearDataOnUnmount(Listing))));

📘

Note:

Wrapping the injectIntl component will enable intl in the props section.

  1. Create the messages.js file in your project folder for defining the messages.

Sample:

import { defineMessages } from 'react-intl';  
export const scope = 'vulcanWebapp.components.pages.Listing';  
export default defineMessages({  
       searchPlaceholder: {  
         id: `${scope}.searchPlaceholder`,  
         defaultMessage: 'Enter appname to search...',  
        },  
     });

📘

Note:

Once the messages.js file has been created, you can use these in your component by using:

<p>{formatMessage(messages.searchPlaceholder)}</p>

📘

Note:

The messages.js file will be created if you have already set up a React container.

  1. Extract formatMessage using the following lines:
const { intl } = props;  
const { formatMessage } = intl;
  1. From the intl props use the formatMessage method that includes the ID and default message of the object.

For example:

{formatMessage(messages.vulcanApplications)}
  1. Once the development process is completed, run the following command:
npm run extract-int

📘

Note:

This will scan all the files named messages.js and extract all strings, pasting them in the en.json file.

Sample:

{  
	'vulcanWebapp.components.pages.Listing.searchPlaceholder': 'Enter appname to search.'  
}

Importing to Locize

Once you have generated the language .json file, you will need to import it to Locize.

Refer to the Locize documentation to import the file into your project.

Pushing Data to Google Tag Manager

To facilitate FullStory integration, you can push data to Google Tag Manager (GTM).

  • During the project setup, specify the Google Analytics (GA) and GTM tracking IDs when prompted by the CLI tool. This will configure the tracking IDs in the code.
  • Use the pushDataToGTM utility or window.dataLayer.push (Ex. Cap.js) to push events with data to GTM.

Starting and Building your Application

Once you have built the application you can test your application on localhost and build the application to be hosted on Vulcan.

To start or build the application, follow these steps:

  1. Navigate to your project directory and open a terminal interface.
  2. Run the following command to start the application on localhost:
npm run start 
  1. Run the following command to build the application for deployment and hosting:
npm run build

📘

Note:

Ensure the Vulcan app is created on the Vulcan UI platform first. The app ID is needed to validate:

  • Authentication (vulcan_endpoint)
  • Translation messages (if enabled during setup) (vulcan_endpoint)
  • Intouch API calls (vulcan_endpoint)
  • XAJA API calls (vulcan_endpoint)
  • API extension calls (vulcan_endpoint)
  • CRM node API calls (arya_endpoint)

📘

Note:

The endpoints.js file is used to manage all API calls from the UI. Configure the local UI to point to any production environment for local testing (absoluteURLs).

Third-party APIs can be called by defining them as endpoints. These need to be defined as full URLs in absoulteURLs and partialURLs. All endpoints are referenced in the api.js file, where functions are defined to handle API calls for sagas.

Export components via the mfe-exposed-components.js file for embedding in other UIs, such as Member Care.

Hosting a Vulcan App

After completing application development and the build, the next steps involve uploading the build file to the Vulcan UI.

To upload and host your app, follow these steps:

  1. Access the Vulcan UI.
  2. Click the application to open the page.
  3. Click Deployments and then Upload Build.
  4. Enter the build description for your application.
  5. Click Select zip and choose the build.zip file from your device.

📘

Note:

The maximum supported size is 50 MB.

  1. Click Confirm upload to upload the build and save changes.
  2. After the upload is complete, enable UAT by clicking on the three dots under the Actions tab.
  3. Identify the UAT URL generated and displayed in the Application Details section. This URL can be used for testing.

📘

Note:

Refer to the tutorial video for more information.

  1. After testing the application, enable Prod by clicking on the three dots under the Actions tab.
  2. Identify the Prod URL generated and displayed in the Application Details section. This URL can be used to access your application after testing.

Embedding Vulcan Application to Member Care UI

Embedding a Vulcan application into the native Member Care UI is currently unsupported and requires assistance from the Capillary UI team.

Developers can integrate Vulcan applications on the new Member Care, built on the Vulcan Framework, and embed the Vulcan Application within it.

Refer to the documentation on Customizing the Member Care UI.

📘

Note:

For reference on embedding the application into Member Care, watch the demo video.

To embed a Vulcan app natively on Member Care, raise a JIRA request to the Capillary UI team.