Skip to content

Instantly share code, notes, and snippets.

View megasmack's full-sized avatar
☁️

Steve Schrab megasmack

☁️
View GitHub Profile
@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 / README.md
Last active August 25, 2025 14:13
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 / README.md
Last active November 3, 2025 17:15
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.
  • This was created before the Lightning Modal component was created. The "out of the box" Lightning Modal contains focus trapping, so I'd recommend using that over this implmentation. However, you can still use code for "modal-like" custom elements that may require focus trapping. For example, a slide out navigation that covers the page content could be considered a modal and should therefore have focus-trapping when open.
@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 October 17, 2024 12:39
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.