mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-15 04:15:18 +08:00
36 lines
744 B
JavaScript
36 lines
744 B
JavaScript
|
export function getAttributeOrThrow(element, attr, transform = null) {
|
||
|
if (!element.hasAttribute(attr)) {
|
||
|
throw new Error(
|
||
|
`Missing attribute '${attr}' on element <${element.tagName}:${element.id}>`
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const value = element.getAttribute(attr);
|
||
|
|
||
|
return transform ? transform(value) : value;
|
||
|
}
|
||
|
|
||
|
export function parseBoolean(value) {
|
||
|
if (value === "true") {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
if (value === "false") {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
throw new Error(
|
||
|
`Invalid boolean attribute ${value}, should be either "true" or "false"`
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export function parseInteger(value) {
|
||
|
const number = parseInt(value, 10);
|
||
|
|
||
|
if (Number.isNaN(number)) {
|
||
|
throw new Error(`Invalid integer value ${value}`);
|
||
|
}
|
||
|
|
||
|
return number;
|
||
|
}
|