fix search regexp escape,
wrap chartjs with custom element
This commit is contained in:
parent
9d832fea69
commit
fb84ca5616
@ -9,6 +9,7 @@
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/nav.css">
|
||||
<script src="scripts/account.js" type="module"></script>
|
||||
<script src="scripts/chart.js" type="module"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||
<style>
|
||||
@media screen and (width >= 1264px){
|
||||
@ -18,12 +19,6 @@
|
||||
grid-gap: 0px;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#resource-container > * {
|
||||
position: relative;
|
||||
min-width: 200px;
|
||||
max-width: 400px;
|
||||
aspect-ratio: 1 / 1;
|
||||
}
|
||||
}
|
||||
@media screen and (width <= 1264px) and (width >= 480px) {
|
||||
#resource-container {
|
||||
|
@ -43,30 +43,28 @@ function populateResources (containerID, meta, resources) {
|
||||
if (meta[resourceType].display) {
|
||||
if (meta[resourceType].type === "list") {
|
||||
resources[resourceType].forEach((listResource) => {
|
||||
const chart = createResourceUsageChart(listResource.name, listResource.avail, listResource.used, listResource.max, null);
|
||||
container.append(chart);
|
||||
createResourceUsageChart(container, listResource.name, listResource.avail, listResource.used, listResource.max, null);
|
||||
});
|
||||
}
|
||||
else {
|
||||
const chart = createResourceUsageChart(meta[resourceType].name, resources[resourceType].avail, resources[resourceType].used, resources[resourceType].max, meta[resourceType]);
|
||||
container.append(chart);
|
||||
createResourceUsageChart(container, meta[resourceType].name, resources[resourceType].avail, resources[resourceType].used, resources[resourceType].max, meta[resourceType]);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function createResourceUsageChart (resourceName, resourceAvail, resourceUsed, resourceMax, resourceUnitData) {
|
||||
const container = document.createElement("div");
|
||||
const canvas = document.createElement("canvas");
|
||||
container.append(canvas);
|
||||
function createResourceUsageChart (container, resourceName, resourceAvail, resourceUsed, resourceMax, resourceUnitData) {
|
||||
const chart = document.createElement("custom-chart");
|
||||
container.append(chart);
|
||||
const maxStr = parseNumber(resourceMax, resourceUnitData);
|
||||
const usedStr = parseNumber(resourceUsed, resourceUnitData);
|
||||
const usedRatio = resourceUsed / resourceMax;
|
||||
const R = Math.min(usedRatio * 510, 255);
|
||||
const G = Math.min((1 - usedRatio) * 510, 255);
|
||||
const usedColor = `rgb(${R}, ${G}, 0)`;
|
||||
createChart(canvas, {
|
||||
chart.data = {
|
||||
chart: {
|
||||
type: "pie",
|
||||
data: {
|
||||
labels: [
|
||||
@ -97,14 +95,9 @@ function createResourceUsageChart (resourceName, resourceAvail, resourceUsed, re
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
canvas.role = "img";
|
||||
canvas.ariaLabel = `${resourceName} used ${usedStr} of ${maxStr}`;
|
||||
return container;
|
||||
}
|
||||
|
||||
function createChart (ctx, data) {
|
||||
return new window.Chart(ctx, data);
|
||||
},
|
||||
ariaLabel: `${resourceName} used ${usedStr} of ${maxStr}`
|
||||
};
|
||||
}
|
||||
|
||||
function parseNumber (value, unitData) {
|
||||
|
35
scripts/chart.js
Normal file
35
scripts/chart.js
Normal file
@ -0,0 +1,35 @@
|
||||
class CustomChart extends HTMLElement {
|
||||
constructor (data) {
|
||||
super();
|
||||
this.attachShadow({ mode: "open" });
|
||||
this.shadowRoot.innerHTML = `
|
||||
<style>
|
||||
div {
|
||||
min-width: 200px;
|
||||
max-width: 400px;
|
||||
aspect-ratio: 1 / 1;
|
||||
}
|
||||
</style>
|
||||
<div>
|
||||
<canvas>
|
||||
</div>
|
||||
`;
|
||||
this.canvas = this.shadowRoot.querySelector("canvas");
|
||||
}
|
||||
|
||||
set data (data) {
|
||||
this.canvas.role = "img";
|
||||
this.canvas.ariaLabel = data.ariaLabel;
|
||||
createChart(this.canvas, data.chart);
|
||||
}
|
||||
|
||||
get data () {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
function createChart (ctx, data) {
|
||||
return new Chart(ctx, data);
|
||||
}
|
||||
|
||||
customElements.define("custom-chart", CustomChart);
|
@ -77,8 +77,10 @@ class InstanceCard extends HTMLElement {
|
||||
|
||||
const nameParagraph = this.shadowRoot.querySelector("#instance-name");
|
||||
if (this.searchQuery) {
|
||||
const regEscape = v => v.replace("[-[\]{}()*+?.,\\^$|#\s]", "\\$&");
|
||||
const nameParts = this.name.split(new RegExp(regEscape(`(${this.searchQuery})`), "ig"));
|
||||
const regExpEscape = v => v.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||
const escapedQuery = regExpEscape(this.searchQuery);
|
||||
const searchRegExp = new RegExp(`(${escapedQuery})`, "gi");
|
||||
const nameParts = this.name.split(searchRegExp);
|
||||
for (let i = 0; i < nameParts.length; i++) {
|
||||
const part = document.createElement("span");
|
||||
part.innerText = nameParts[i];
|
||||
|
Loading…
Reference in New Issue
Block a user