Salesforce Component Quality Standards
Apply these checks to every LWC, Aura component, and Visualforce page you write or review.
Section 1 — LWC Quality Standards
1.1 Data Access Pattern Selection
Choose the right data access pattern before writing JavaScript controller code:
| Use case |
Pattern |
Why |
| Read a single record reactively (follows navigation) |
@wire(getRecord, { recordId, fields }) |
Lightning Data Service — cached, reactive |
| Standard CRUD form for a single object |
<lightning-record-form> or <lightning-record-edit-form> |
Built-in FLS, CRUD, and accessibility |
| Complex server query or filtered list |
@wire(apexMethodName, { param }) on a cacheable=true method |
Allows caching; wire re-fires on param change |
| User-triggered action, DML, or non-cacheable server call |
Imperative apexMethodName(params).then(...).catch(...) |
Required for DML — wired methods cannot be @AuraEnabled without cacheable=true |
| Cross-component communication (no shared parent) |
Lightning Message Service (LMS) |
Decoupled, works across DOM boundaries |
| Multi-object graph relationships |
GraphQL @wire(gql, { query, variables }) |
Single round-trip for complex related data |
1.2 Security Rules
| Rule |
Enforcement |
No raw user data in innerHTML |
Use {expression} binding in the template — the framework auto-escapes. Never use this.template.querySelector('.el').innerHTML = userValue |
Apex @AuraEnabled methods enforce CRUD/FLS |
Use WITH USER_MODE in SOQL or explicit Schema.sObjectType checks |
| No hardcoded org-specific IDs in component JavaScript |
Query or pass as a prop — never embed record IDs in source |
@api properties from parent: validate before use |
A parent can pass anything — validate type and range before using as a query parameter |
1.3 SLDS 2 and Styling Standards
- Never hardcode colours:
color: #FF3366 → use color: var(--slds-c-button-brand-color-background) or a semantic SLDS token.
- Never override SLDS classes with
!important — compose with custom CSS properties.
- Use
<lightning-*> base components wherever they exist: lightning-button, lightning-input, lightning-datatable, lightning-card, etc.
- Base components include built-in SLDS 2, dark mode, and accessibility — avoid reimplementing their behaviour.
- If using custom CSS, test in both light mode and dark mode before declaring done.
1.4 Accessibility Requirements (WCAG 2.1 AA)
Every LWC component must pass all of these before it is considered done:
1.5 Component Communication Rules
| Direction |
Mechanism |
| Parent → Child |
@api property or calling a @api method |
| Child → Parent |
CustomEvent — this.dispatchEvent(new CustomEvent('eventname', { detail: data })) |
| Sibling / unrelated components |
Lightning Message Service (LMS) |
| Never use |
document.querySelector, window.*, or Pub/Sub libraries |
For Flow screen components:
- Events that need to reach the Flow runtime must set
bubbles: true and composed: true.
- Expose
@api value for two-way binding with the Flow variable.
1.6 JavaScript Performance Rules
- No side effects in
connectedCallback: it runs on every DOM attach — avoid DML, heavy computation, or rendering state mutations here.
- Guard
renderedCallback: always use a boolean guard to prevent infinite render loops.
- Avoid reactive property traps: setting a reactive property inside
renderedCallback causes a re-render — use it only when necessary and guarded.
- Do not store large datasets in component state — paginate or stream large results instead.
1.7 Jest Test Requirements
Every component that handles user interaction or retrieves Apex data must have a Jest test:
// Minimum test coverage expectations
it('renders the component with correct title', async () => { ... });
it('calls apex method and displays results', async () => { ... }); // Wire mock
it('dispatches event when button is clicked', async () => { ... });
it('shows error state when apex call fails', async () => { ... }); // Error path
Use @salesforce/sfdx-lwc-jest mocking utilities:
wire adapter mocking: setImmediate + emit({ data, error })
- Apex method mocking:
jest.mock('@salesforce/apex/MyClass.myMethod', ...)
Section 2 — Aura Component Standards
2.1 When to Use Aura vs LWC
- New components: always LWC unless the target context is Aura-only (e.g. extending
force:appPage, using Aura-specific events in a legacy managed package).
- Migrating Aura to LWC: prefer LWC, migrate component-by-component; LWC can be embedded inside Aura components.
2.2 Aura Security Rules
@AuraEnabled controller methods must declare with sharing and enforce CRUD/FLS — Aura does not enforce them automatically.
- Never use
{!v.something} with unescaped user data in <div> unbound helpers — use <ui:outputText value="{!v.text}" /> or <c:something> to escape.
- Validate all inputs from component attributes before using them in SOQL / Apex logic.
2.3 Aura Event Design
- Component events for parent-child communication — lowest scope.
- Application events only when component events cannot reach the target — they broadcast to the entire app and can be a performance and maintenance problem.
- For hybrid LWC + Aura stacks: use Lightning Message Service to decouple communication — do not rely on Aura application events reaching LWC components.
Section 3 — Visualforce Security Standards
3.1 XSS Prevention
<!-- ❌ NEVER — renders raw user input as HTML -->
<apex:outputText value="{!userInput}" escape="false" />
<!-- ✅ ALWAYS — auto-escaping on -->
<apex:outputText value="{!userInput}" />
<!-- Default escape="true" — platform HTML-encodes the output -->
Rule: escape="false" is never acceptable for user-controlled data. If rich text must be rendered, sanitise server-side with a whitelist before output.
3.2 CSRF Protection
Use <apex:form> for all postback actions — the platform injects a CSRF token automatically into the form. Do not use raw <form method="POST"> HTML elements, which bypass CSRF protection.
3.3 SOQL Injection Prevention in Controllers
// ❌ NEVER
String soql = 'SELECT Id FROM Account WHERE Name = '' + ApexPages.currentPage().getParameters().get('name') + ''';
List<Account> results = Database.query(soql);
// ✅ ALWAYS — bind variable
String nameParam = ApexPages.currentPage().getParameters().get('name');
List<Account> results = [SELECT Id FROM Account WHERE Name = :nameParam];
3.4 View State Management Checklist
3.5 FLS / CRUD in Visualforce Controllers
// Before reading a field
if (!Schema.sObjectType.Account.fields.Revenue__c.isAccessible()) {
ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR, 'You do not have access to this field.'));
return null;
}
// Before performing DML
if (!Schema.sObjectType.Account.isDeletable()) {
throw new System.NoAccessException();
}
Standard controllers enforce FLS for bound fields automatically. Custom controllers do not — FLS must be enforced manually.
Quick Reference — Component Anti-Patterns Summary
| Anti-pattern |
Technology |
Risk |
Fix |
innerHTML with user data |
LWC |
XSS |
Use template bindings {expression} |
| Hardcoded hex colours |
LWC/Aura |
Dark-mode / SLDS 2 break |
Use SLDS CSS custom properties |
Missing aria-label on icon buttons |
LWC/Aura/VF |
Accessibility failure |
Add alternative-text or aria-label |
No guard in renderedCallback |
LWC |
Infinite rerender loop |
Add hasRendered boolean guard |
| Application event for parent-child |
Aura |
Unnecessary broadcast scope |
Use component event instead |
escape="false" on user data |
Visualforce |
XSS |
Remove — use default escaping |
Raw <form> postback |
Visualforce |
CSRF vulnerability |
Use <apex:form> |
No with sharing on custom controller |
VF / Apex |
Data exposure |
Add with sharing declaration |
| FLS not checked in custom controller |
VF / Apex |
Privilege escalation |
Add Schema.sObjectType checks |
| SOQL concatenated with URL param |
VF / Apex |
SOQL injection |
Use bind variables |
1---2name: githubcopilot-salesforce-component-standards3description: Quality standards for Salesforce Lightning Web Components (LWC), Aura components, and Visualforce pages. Covers SLDS 2 compliance, accessibility (WCAG 2.1 AA), data access pattern selection, component communication rules, XSS prevention, CSRF enforcement, FLS/CRUD in AuraEnabled methods, view state management, and Jest test requirements. Use this skill when building or reviewing any Salesforce UI component to enforce platform-specific security and quality standards.4---56# Salesforce Component Quality Standards78Apply these checks to every LWC, Aura component, and Visualforce page you write or review.910## Section 1 — LWC Quality Standards1112### 1.1 Data Access Pattern Selection1314Choose the right data access pattern before writing JavaScript controller code:1516| Use case | Pattern | Why |17|---|---|---|18| Read a single record reactively (follows navigation) | `@wire(getRecord, { recordId, fields })` | Lightning Data Service — cached, reactive |19| Standard CRUD form for a single object | `<lightning-record-form>` or `<lightning-record-edit-form>` | Built-in FLS, CRUD, and accessibility |20| Complex server query or filtered list | `@wire(apexMethodName, { param })` on a `cacheable=true` method | Allows caching; wire re-fires on param change |21| User-triggered action, DML, or non-cacheable server call | Imperative `apexMethodName(params).then(...).catch(...)` | Required for DML — wired methods cannot be `@AuraEnabled` without `cacheable=true` |22| Cross-component communication (no shared parent) | Lightning Message Service (LMS) | Decoupled, works across DOM boundaries |23| Multi-object graph relationships | GraphQL `@wire(gql, { query, variables })` | Single round-trip for complex related data |2425### 1.2 Security Rules2627| Rule | Enforcement |28|---|---|29| No raw user data in `innerHTML` | Use `{expression}` binding in the template — the framework auto-escapes. Never use `this.template.querySelector('.el').innerHTML = userValue` |30| Apex `@AuraEnabled` methods enforce CRUD/FLS | Use `WITH USER_MODE` in SOQL or explicit `Schema.sObjectType` checks |31| No hardcoded org-specific IDs in component JavaScript | Query or pass as a prop — never embed record IDs in source |32| `@api` properties from parent: validate before use | A parent can pass anything — validate type and range before using as a query parameter |3334### 1.3 SLDS 2 and Styling Standards3536- **Never** hardcode colours: `color: #FF3366` → use `color: var(--slds-c-button-brand-color-background)` or a semantic SLDS token.37- **Never** override SLDS classes with `!important` — compose with custom CSS properties.38- Use `<lightning-*>` base components wherever they exist: `lightning-button`, `lightning-input`, `lightning-datatable`, `lightning-card`, etc.39- Base components include built-in SLDS 2, dark mode, and accessibility — avoid reimplementing their behaviour.40- If using custom CSS, test in both **light mode** and **dark mode** before declaring done.4142### 1.4 Accessibility Requirements (WCAG 2.1 AA)4344Every LWC component must pass all of these before it is considered done:4546- [ ] All form inputs have `<label>` or `aria-label` — never use placeholder as the only label47- [ ] All icon-only buttons have `alternative-text` or `aria-label` describing the action48- [ ] All interactive elements are reachable and operable by keyboard (Tab, Enter, Space, Escape)49- [ ] Colour is not the only means of conveying status — pair with text, icon, or `aria-*` attributes50- [ ] Error messages are associated with their input via `aria-describedby`51- [ ] Focus management is correct in modals — focus moves into the modal on open and back on close5253### 1.5 Component Communication Rules5455| Direction | Mechanism |56|---|---|57| Parent → Child | `@api` property or calling a `@api` method |58| Child → Parent | `CustomEvent` — `this.dispatchEvent(new CustomEvent('eventname', { detail: data }))` |59| Sibling / unrelated components | Lightning Message Service (LMS) |60| Never use | `document.querySelector`, `window.*`, or Pub/Sub libraries |6162For Flow screen components:63- Events that need to reach the Flow runtime must set `bubbles: true` and `composed: true`.64- Expose `@api value` for two-way binding with the Flow variable.6566### 1.6 JavaScript Performance Rules6768- **No side effects in `connectedCallback`**: it runs on every DOM attach — avoid DML, heavy computation, or rendering state mutations here.69- **Guard `renderedCallback`**: always use a boolean guard to prevent infinite render loops.70- **Avoid reactive property traps**: setting a reactive property inside `renderedCallback` causes a re-render — use it only when necessary and guarded.71- **Do not store large datasets in component state** — paginate or stream large results instead.7273### 1.7 Jest Test Requirements7475Every component that handles user interaction or retrieves Apex data must have a Jest test:7677```javascript78// Minimum test coverage expectations79it('renders the component with correct title', async () => { ... });80it('calls apex method and displays results', async () => { ... }); // Wire mock81it('dispatches event when button is clicked', async () => { ... });82it('shows error state when apex call fails', async () => { ... }); // Error path83```8485Use `@salesforce/sfdx-lwc-jest` mocking utilities:86- `wire` adapter mocking: `setImmediate` + `emit({ data, error })`87- Apex method mocking: `jest.mock('@salesforce/apex/MyClass.myMethod', ...)`8889---9091## Section 2 — Aura Component Standards9293### 2.1 When to Use Aura vs LWC9495- **New components: always LWC** unless the target context is Aura-only (e.g. extending `force:appPage`, using Aura-specific events in a legacy managed package).96- **Migrating Aura to LWC**: prefer LWC, migrate component-by-component; LWC can be embedded inside Aura components.9798### 2.2 Aura Security Rules99100- `@AuraEnabled` controller methods must declare `with sharing` and enforce CRUD/FLS — Aura does **not** enforce them automatically.101- Never use `{!v.something}` with unescaped user data in `<div>` unbound helpers — use `<ui:outputText value="{!v.text}" />` or `<c:something>` to escape.102- Validate all inputs from component attributes before using them in SOQL / Apex logic.103104### 2.3 Aura Event Design105106- **Component events** for parent-child communication — lowest scope.107- **Application events** only when component events cannot reach the target — they broadcast to the entire app and can be a performance and maintenance problem.108- For hybrid LWC + Aura stacks: use Lightning Message Service to decouple communication — do not rely on Aura application events reaching LWC components.109110---111112## Section 3 — Visualforce Security Standards113114### 3.1 XSS Prevention115116```xml117<!-- ❌ NEVER — renders raw user input as HTML -->118<apex:outputText value="{!userInput}" escape="false" />119120<!-- ✅ ALWAYS — auto-escaping on -->121<apex:outputText value="{!userInput}" />122<!-- Default escape="true" — platform HTML-encodes the output -->123```124125Rule: `escape="false"` is never acceptable for user-controlled data. If rich text must be rendered, sanitise server-side with a whitelist before output.126127### 3.2 CSRF Protection128129Use `<apex:form>` for all postback actions — the platform injects a CSRF token automatically into the form. Do **not** use raw `<form method="POST">` HTML elements, which bypass CSRF protection.130131### 3.3 SOQL Injection Prevention in Controllers132133```apex134// ❌ NEVER135String soql = 'SELECT Id FROM Account WHERE Name = '' + ApexPages.currentPage().getParameters().get('name') + ''';136List<Account> results = Database.query(soql);137138// ✅ ALWAYS — bind variable139String nameParam = ApexPages.currentPage().getParameters().get('name');140List<Account> results = [SELECT Id FROM Account WHERE Name = :nameParam];141```142143### 3.4 View State Management Checklist144145- [ ] View state is under 135 KB (check in browser developer tools or the Salesforce View State tab)146- [ ] Fields used only for server-side calculations are declared `transient`147- [ ] Large collections are not persisted across postbacks unnecessarily148- [ ] `readonly="true"` is set on `<apex:page>` for read-only pages to skip view-state serialisation149150### 3.5 FLS / CRUD in Visualforce Controllers151152```apex153// Before reading a field154if (!Schema.sObjectType.Account.fields.Revenue__c.isAccessible()) {155 ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR, 'You do not have access to this field.'));156 return null;157}158159// Before performing DML160if (!Schema.sObjectType.Account.isDeletable()) {161 throw new System.NoAccessException();162}163```164165Standard controllers enforce FLS for bound fields automatically. **Custom controllers do not** — FLS must be enforced manually.166167---168169## Quick Reference — Component Anti-Patterns Summary170171| Anti-pattern | Technology | Risk | Fix |172|---|---|---|---|173| `innerHTML` with user data | LWC | XSS | Use template bindings `{expression}` |174| Hardcoded hex colours | LWC/Aura | Dark-mode / SLDS 2 break | Use SLDS CSS custom properties |175| Missing `aria-label` on icon buttons | LWC/Aura/VF | Accessibility failure | Add `alternative-text` or `aria-label` |176| No guard in `renderedCallback` | LWC | Infinite rerender loop | Add `hasRendered` boolean guard |177| Application event for parent-child | Aura | Unnecessary broadcast scope | Use component event instead |178| `escape="false"` on user data | Visualforce | XSS | Remove — use default escaping |179| Raw `<form>` postback | Visualforce | CSRF vulnerability | Use `<apex:form>` |180| No `with sharing` on custom controller | VF / Apex | Data exposure | Add `with sharing` declaration |181| FLS not checked in custom controller | VF / Apex | Privilege escalation | Add `Schema.sObjectType` checks |182| SOQL concatenated with URL param | VF / Apex | SOQL injection | Use bind variables |