@prairielearn/browser-utils
v2.2.2
Published
Helpful utilities for writing client-side vanilla JavaScript.
Downloads
146
Readme
@prairielearn/browser-utils
Helpful utilities for writing client-side vanilla JavaScript.
Usage
onDocumentReady
Runs the provided function once the document is ready.
import { onDocumentReady } from '@prairielearn/browser-utils';
onDocumentReady(() => {
console.log('Document is ready!');
});
To be precise, if document.readyState
is interactive
or complete
, the function is run immediately. Otherwise, it will be run once the DOMContentLoaded
event is fired.
parseHTML
and parseHTMLElement
These functions return a DocumentFragment
and Element
from the provided HTML, respectively. The HTML can be an HtmlSafeString
from @prairielearn/html
or a plain string.
import { parseHTML, parseHTMLElement } from '@prairielearn/browser-utils';
const elements = parseHTML(
document,
html`
<div>Hello, world</div>
<div>Goodbye, world</div>
`,
);
const div = parseHTMLElement<HTMLDivElement>(document, html`<div>Hello, world</div>`);
EncodedData
and decodeData
These functions can be used to encode some state on the server and retrieve it on the client. For example, one could encode a list of courses on the server:
import { EncodedData } from '@prairielearn/browser-utils';
app.get('/', (req, res) => {
const courses = ['CS 101', 'PHYS 512'];
res.send(`<html><body>${EncodedData(courses, 'courses-data')}</body></html>`);
});
On the client, they can be retrieved with decodeData
:
import { onDocumentReady, decodeData } from '@prairielearn/browser-utils';
onDocumentReady(() => {
const data = decodeData<string[]>('courses-data');
console.log(data);
});
templateFromAttributes
This function simplifies the common pattern of taking attributes from one HTML element and using them as the content of other HTML elements. This is often done with modals that need to display information about a specific entity.
Consider the following simplified markup:
<button class="js-delete-course" data-course-name="CS 123">Delete course</button>
<div class="modal" id="deleteCourseModal">
<p>Are you sure you want to delete course <strong class="js-course-name"></strong>?</p>
<button type="button">Cancel</button>
<button type="button">Delete <span class="js-course-name"></span></button>
</div>
The following JavaScript will "template" the value from data-course-name
on the button into the elements with the .js-course-name
in the modal.
import { templateFromAttributes } from '@prairielearn/browser-utils';
const modal = document.querySelector('#deleteCourseModal');
document.querySelectorAll('.js-delete-course').forEach((el) => {
el.addEventListener('click', (e) => {
const button = e.target;
templateFromAttributes(e.currentTarget, modal, {
'data-course-name': '.js-course-name',
});
});
});
trapFocus
This function can be used to trap focus within an element, such as a popover or modal. It will ensure that the user cannot tab out of the element.
import { trapFocus } from '@prairielearn/browser-utils';
const popover = document.querySelector('.popover');
const trap = trapFocus(popover);
// When the container is being closed or removed, deactivate the trap.
trap.deactivate();
focusFirstFocusableChild
This function will focus the first focusable child of an element. This is useful when opening a modal or popover.
import { focusFirstFocusableChild } from '@prairielearn/browser-utils';
const modal = document.querySelector('.modal');
focusFirstFocusableChild(modal);