fix idnentation in node.js
This commit is contained in:
parent
438e220db0
commit
8d0880346e
46
node.js
46
node.js
@ -1,32 +1,32 @@
|
||||
class Node extends HTMLElement {
|
||||
constructor () { // <link rel="stylesheet" href="style.css" type="text/css">
|
||||
super();
|
||||
let shadowRoot = this.attachShadow({mode: "open"});
|
||||
constructor () { // <link rel="stylesheet" href="style.css" type="text/css">
|
||||
super();
|
||||
let shadowRoot = this.attachShadow({mode: "open"});
|
||||
|
||||
let nodeArticle = document.createElement("article");
|
||||
shadowRoot.append(nodeArticle);
|
||||
let nodeArticle = document.createElement("article");
|
||||
shadowRoot.append(nodeArticle);
|
||||
|
||||
let styleLink = document.createElement("link");
|
||||
styleLink.rel = "stylesheet";
|
||||
styleLink.href = "style.css";
|
||||
styleLink.type = "text/css";
|
||||
shadowRoot.append(styleLink);
|
||||
|
||||
this.shadowElement = shadowRoot;
|
||||
}
|
||||
let styleLink = document.createElement("link");
|
||||
styleLink.rel = "stylesheet";
|
||||
styleLink.href = "style.css";
|
||||
styleLink.type = "text/css";
|
||||
shadowRoot.append(styleLink);
|
||||
|
||||
set data (data) {
|
||||
let articleElement = this.shadowElement.querySelector("article");
|
||||
this.shadowElement = shadowRoot;
|
||||
}
|
||||
|
||||
let nodeName = document.createElement("h2");
|
||||
nodeName.innerText = data.node;
|
||||
articleElement.append(nodeName);
|
||||
set data (data) {
|
||||
let articleElement = this.shadowElement.querySelector("article");
|
||||
|
||||
let onlineLabel = document.createElement("h3");
|
||||
onlineLabel.innerText = data.status;
|
||||
onlineLabel.style.color = data.status === "online" ? "#00ff00" : "#ff0000";
|
||||
articleElement.append(onlineLabel);
|
||||
}
|
||||
let nodeName = document.createElement("h2");
|
||||
nodeName.innerText = data.node;
|
||||
articleElement.append(nodeName);
|
||||
|
||||
let onlineLabel = document.createElement("h3");
|
||||
onlineLabel.innerText = data.status;
|
||||
onlineLabel.style.color = data.status === "online" ? "#00ff00" : "#ff0000";
|
||||
articleElement.append(onlineLabel);
|
||||
}
|
||||
}
|
||||
|
||||
customElements.define("node-card", Node);
|
Loading…
Reference in New Issue
Block a user