Skip to content

Instantly share code, notes, and snippets.

View megasmack's full-sized avatar

Steve Schrab megasmack

View GitHub Profile
@megasmack
megasmack / README.md
Last active May 11, 2022 16:16
LWC Dependent Pick List Example

LWC Dependent Pick List Example

An example of working with Salesforce Dependant Picklists in LWC using the uiObjectInfoApi. The juicy bit is in the method setDependentPicklist on line 61 of countrySateSelector.js.

@megasmack
megasmack / README.md
Created May 11, 2022 18:32
Remove orphans from text string

Remove orphans from text string

Take the last word of text string and replace the space before it with a non-breaking space.

@megasmack
megasmack / README.md
Last active May 24, 2022 18:56
LWC Focus-Trapping Modal

LWC Focus-Trapping Modal

Using SLDS classes, build a modal Lightning Web Component that has focus-trapping for accessiblity.

Notes: The shadowdom presents some challenges with creating focus-trapping within modals. Making creating a reusable component tricky. So instead we can create a modal utility file with all our methods to keep things as DRY as possible.

@megasmack
megasmack / daylightsavings.js
Created March 27, 2023 20:39
Daylight Savings JavaScript Test
const stdTimezoneOffset = (date) => {
const jan = new Date(date.getFullYear(), 0, 1);
const jul = new Date(date.getFullYear(), 6, 1);
return Math.max(jan.getTimezoneOffset(), jul.getTimezoneOffset());
};
const isDstObserved = (date) => date.getTimezoneOffset() < stdTimezoneOffset(date);
const offset = start.getTimezoneOffset();
const start = new Date(start.getTime() - (offset*60*1000));
@megasmack
megasmack / browserNotificationsExample.js
Created April 26, 2023 18:57
LWC Browser Notifications
import { LightningElement } from 'lwc';
export default class BrowserNotificationsExample extends LightningElement {
connectedCallback() {
this.initPushNotifications();
}
// Modified from: https://levelup.gitconnected.com/creating-browser-notification-in-javascript-79e91bfb76c8
initPushNotifications() {
@megasmack
megasmack / README.md
Last active June 2, 2023 19:01
Salesforce VSCode LWC Snippets

Salesforce VSCode LWC Snippets

Some handy VSCode snippets I've found helpful for LWC development in Salesforce.

@megasmack
megasmack / README.md
Last active June 9, 2023 16:18
LWC/Apex Retrieve User Debug Mode Console Logs

LWC/Apex User Debug Mode Console Logs

Using the Debug Mode setting in the running User to send debug console logs to the Inspector for Lightning Web Components.

If you need to override the debug behavior, you can change the userDebugMode sessionStorage property to 'true'. You might need to do this to get logs for Guest users that do not have a Debug Mode.

@megasmack
megasmack / SEO-Social-Media-Experience-Cloud.md
Last active January 22, 2024 14:27
SEO and Social Media Meta Tag Setup for Experience Cloud Sites

SEO and Social Media Meta Tag Setup for Experience Cloud Sites

About Meta Tags

Meta Tags are HTML tags hidden within the header of a web page. These tags contain information about your page. For example: a title, a brief description, and images.

When a social media channel receives a URL, behind the scenes it goes to this URL to try and gather information about this page. While most channels do their best to figure out what title or image to display from the page itself, we can be more explicit by setting up meta tags. If these meta tags are present, the channel will use them first.

Setting up Meta Tags in Salesforce Communities