Building Interactive UIs with Lightning Web Components and Apex Controllers — Apex Part 13

Mohammad Usman
5 min readMar 17, 2024

--

In the world of Salesforce development, creating dynamic and interactive user interfaces (UIs) is crucial for delivering seamless experiences to users. Salesforce Lightning Web Components (LWC) and Apex are powerful tools that developers can leverage to achieve this goal. In this comprehensive guide, we’ll delve into the depths of Lightning Web Components, explore how to integrate them with Apex, and demonstrate how to build interactive UIs with Apex controllers.

Understanding Lightning Web Components (LWC)

Lightning Web Components (LWC) represent a modern approach to building web applications on the Salesforce platform. They are a UI framework for building dynamic web applications using HTML, CSS, and JavaScript. LWC follows the web standards and best practices, making it easy for developers to create reusable components with a clear separation of concerns.

Key Features of Lightning Web Components:

1. Lightweight and Fast: LWC delivers high performance by leveraging modern web standards and optimizing DOM manipulation.

2. Reusability: Components built with LWC are reusable, allowing developers to encapsulate logic and UI elements for easy reuse across different parts of an application.

3. Event-Driven Architecture: LWC supports event-driven architecture, enabling seamless communication between components.

4. Enhanced Security: LWC provides built-in security features to protect against common web vulnerabilities.

5. Integration with Salesforce Ecosystem: LWC seamlessly integrates with other Salesforce technologies, such as Apex, Lightning Data Service, and Salesforce APIs.

Now that we have a basic understanding of Lightning Web Components, let’s explore how to integrate them with Apex.

Integrating Apex with Lightning Web Components

Apex is the programming language used in Salesforce for building backend logic. It allows developers to manipulate data, perform business logic, and interact with Salesforce database objects. Integrating Apex with Lightning Web Components enables developers to leverage the power of server-side processing while building interactive UIs.

Invoking Apex Methods from Lightning Web Components

To integrate Apex with Lightning Web Components, developers can use the `@wire` decorator or imperative Apex calls.

Using @wire Decorator:

The `@wire` decorator enables declarative data fetching from Apex methods. It establishes a reactive data flow between the client-side component and the server-side Apex controller.


import { LightningElement, wire } from ‘lwc’;
import getContacts from ‘@salesforce/apex/ContactController.getContacts’;

export default class ContactList extends LightningElement {
@wire(getContacts)
contacts;
}

In this example, the `getContacts` method from the `ContactController` Apex class is invoked using the `@wire` decorator, and the result is assigned to the `contacts` property.

Using Imperative Apex Calls

Imperative Apex calls provide more control over the invocation of Apex methods and handling of responses. Developers can use imperative Apex calls when they need to pass parameters dynamically or handle errors explicitly.

import { LightningElement } from ‘lwc’;
import getContacts from ‘@salesforce/apex/ContactController.getContacts’;

export default class ContactList extends LightningElement {
contacts;
connectedCallback() {
getContacts()
.then(result => {
this.contacts = result;
})
.catch(error => {
// Handle error
});
}
}

In this example, the `getContacts` method is invoked imperatively in the `connectedCallback` lifecycle hook, and the result is assigned to the `contacts` property.

Passing Parameters to Apex Methods:

Sometimes, developers need to pass parameters to Apex methods based on user input or component state. Lightning Web Components provide a convenient way to pass parameters to Apex methods using the `@wire` decorator or imperative calls.

Using @wire Decorator with Parameters

import { LightningElement, wire } from ‘lwc’;
import getContactsByAccountId from ‘@salesforce/apex/ContactController.getContactsByAccountId’;

export default class ContactList extends LightningElement {
accountId = '001XXXXXXXXXXXXXXX'; // Default Account Id
@wire(getContactsByAccountId, { accountId: '$accountId' })
contacts;
}

In this example, the `getContactsByAccountId` method accepts an `accountId` parameter, which is dynamically bound to the `accountId` property of the component.

Using Imperative Apex Calls with Parameters

import { LightningElement } from ‘lwc’;
import getContactsByAccountId from ‘@salesforce/apex/ContactController.getContactsByAccountId’;

export default class ContactList extends LightningElement {
accountId = '001XXXXXXXXXXXXXXX'; // Default Account Id
contacts;
connectedCallback() {
getContactsByAccountId({ accountId: this.accountId })
.then(result => {
this.contacts = result;
})
.catch(error => {
// Handle error
});
}
}

In this example, the `accountId` parameter is passed to the `getContactsByAccountId` method as part of the imperative call.

Building Interactive UIs with Apex Controllers

Now that we’ve covered the basics of integrating Apex with Lightning Web Components, let’s explore how to build interactive UIs by leveraging Apex controllers.

Example: Contact List Component with Pagination

In this example, we’ll create a Contact List component that retrieves a list of contacts from Salesforce and displays them with pagination support.

Apex Controller (ContactController.cls)

public with sharing class ContactController {
@AuraEnabled(cacheable=true)
public static List<Contact> getContacts(Integer pageNumber, Integer pageSize) {
Integer offset = (pageNumber — 1) * pageSize;
return [SELECT Id, Name, Email FROM Contact ORDER BY Name LIMIT :pageSize OFFSET :offset];
}
}

Lightning Web Component (contactList.html)

<template>
<lightning-card title=”Contact List”>
<ul>
<template for:each={contacts.data} for:item=”contact”>
<li key={contact.Id}>{contact.Name} — {contact.Email}</li>
</template>
</ul>
<div class=”pagination”>
<lightning-button label=”Previous” onclick={previousPage} disabled={pageNumber === 1}></lightning-button>
<lightning-button label=”Next” onclick={nextPage} disabled={pageNumber === totalPages}></lightning-button>
</div>
</lightning-card>
</template>

Lightning Web Component (contactList.js)

import { LightningElement, wire, track } from ‘lwc’;
import getContacts from ‘@salesforce/apex/ContactController.getContacts’;

const PAGE_SIZE = 10;
export default class ContactList extends LightningElement {
@track contacts;
@track pageNumber = 1;
@track totalPages = 0;
@wire(getContacts, { pageNumber: '$pageNumber', pageSize: PAGE_SIZE })
wiredContacts({ data, error }) {
if (data) {
this.contacts = data;
} else if (error) {
// Handle error
}
}
previousPage() {
if (this.pageNumber > 1) {
this.pageNumber - ;
}
}
nextPage() {
if (this.pageNumber < this.totalPages) {
this.pageNumber++;
}
}
}

In this example, the Contact List component retrieves contacts from Salesforce using the `getContacts` Apex method with pagination support. Users can navigate through the pages using the Previous and Next buttons.

Resources for Further Learning

To further enhance your understanding of advanced Apex features and Salesforce development in general, here are some recommended resources:

- Salesforce Apex Developer Guide: The official Apex developer guide provides comprehensive documentation and examples for mastering Apex programming.
- Trailhead: Salesforce’s interactive learning platform offers a wide range of modules and trails on Apex development, asynchronous processing, integrations, and more.
- Salesforce Developer Blog: Stay updated with the latest news, tips, and best practices from Salesforce developers and experts through the official developer blog.
- Stack Exchange — Salesforce: Engage with the Salesforce community, ask questions, and share knowledge on Stack Exchange’s dedicated Salesforce platform.

Conclusion

Lightning Web Components and Apex provide a powerful combination for building interactive UIs on the Salesforce platform. By integrating Apex with Lightning Web Components, developers can leverage server-side processing while creating dynamic and responsive user interfaces. With the knowledge gained from this guide, developers can confidently build sophisticated applications that meet the needs of their users. Happy coding!

--

--

Mohammad Usman

Trailblazer | Transforming Businesses through Salesforce Expertise | Salesforce Technical Architect, Consultant & Developer | Technical Lead