mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
7976675132
Also left some comments about where to put the leftover functions once we have a more detailed structure.
72 lines
2.5 KiB
JavaScript
72 lines
2.5 KiB
JavaScript
// Acts as a public static class
|
|
class Util {
|
|
|
|
/** Tells if element is a child of an element with class className
|
|
*
|
|
* @param {*} element
|
|
* @param {*} className
|
|
*/
|
|
static isChildOfByClass(element, className) {
|
|
// Getting the element with class className
|
|
while (element != null && element.classList != null && !element.classList.contains(className)) {
|
|
element = element.parentElement;
|
|
}
|
|
|
|
// If that element exists and its class is the correct one
|
|
if (element != null && element.classList != null && element.classList.contains(className)) {
|
|
// Then element is a chld of an element with class className
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/** Returns elementOrElementId if the argument is already an element, otherwise it finds
|
|
* the element by its ID (given by the argument) and returns it
|
|
*
|
|
* @param {*} elementOrElementId The element to return, or the ID of the element to return
|
|
* @returns The desired element
|
|
*/
|
|
static getElement(elementOrElementId) {
|
|
if (typeof(elementOrElementId) == "object") {
|
|
return elementOrElementId;
|
|
}
|
|
else if (typeof(elementOrElementId) == "string") {
|
|
return document.getElementById(elementOrElementId);
|
|
}
|
|
else {
|
|
console.log("Type not supported: " + typeof(elementOrElementId));
|
|
}
|
|
}
|
|
|
|
// Returns the text content of the element with ID elementId
|
|
static getText(elementId) {
|
|
return Util.getElement(elementId).textContent;
|
|
}
|
|
// Sets the text content of the element with ID elementId
|
|
static setText(elementId, text) {
|
|
Util.getElement(elementId).textContent = text;
|
|
}
|
|
|
|
// Gets the value of the element with ID elementId
|
|
static getValue(elementId) {
|
|
return Util.getElement(elementId).value;
|
|
}
|
|
// Sets the value of the element with ID elementId
|
|
static setValue(elementId, value) {
|
|
Util.getElement(elementId).value = value;
|
|
}
|
|
|
|
//add class .selected to specified element
|
|
static select(elementId) {
|
|
Util.getElement(elementId).classList.add('selected');
|
|
}
|
|
//remove .selected class from specified element
|
|
static deselect(elementId) {
|
|
Util.getElement(elementId).classList.remove('selected');
|
|
}
|
|
//toggle the status of the .selected class on the specified element
|
|
static toggle(elementId) {
|
|
Util.getElement(elementId).classList.toggle('selected');
|
|
}
|
|
} |