Spaces:
Runtime error
Runtime error
File size: 5,760 Bytes
38e70c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
if (document.location.search.includes('dark-theme=true')) {
document.body.classList.add('dark-theme');
}
const load = () => {
const l0 = document.createElement('div')
const l1 = document.createElement('div')
const l2 = document.createElement('div')
l0.classList.add('lds-ripple')
l0.appendChild(l1)
l0.appendChild(l2)
return l0
}
let charts = [];
const createButton = (title, libraries, methods) => {
const button = document.createElement('button')
button.textContent = title;
button.onclick = async () => {
document.getElementById('pip-graph').innerHTML = ''
document.getElementById('star-graph').innerHTML = ''
const e = load()
document.body.appendChild(e)
const selectedLibraries = libraries.filter(e => document.querySelector(`#${e}Checkbox`).checked);
if (charts.length !== 0) {
for (const chart of charts) {
chart.destroy()
}
}
for (const method of methods()) {
charts.push(await method(selectedLibraries))
}
document.body.removeChild(e)
};
return button;
}
const initialize = async () => {
const inferResponse = await fetch(`initialize`);
const inferJson = await inferResponse.json();
const graphsDiv = document.getElementsByClassName('graphs')[0];
const librarySelector = document.getElementById('library-selector');
const graphSelector = document.getElementById('graph-selector');
const introSpan = document.createElement("h3")
introSpan.textContent = "Select libraries to display"
librarySelector.appendChild(introSpan);
const graphSpan = document.createElement("h3")
graphSpan.textContent = "Select graphs to display"
graphSelector.appendChild(graphSpan);
for (const element of inferJson) {
const div = document.createElement('div');
const checkBox = document.createElement('input');
checkBox.type = 'checkbox'
checkBox.id = `${element}Checkbox`;
const checkBoxLabel = document.createElement('label');
checkBoxLabel.textContent = element.charAt(0).toUpperCase() + element.slice(1)
checkBoxLabel.appendChild(checkBox)
div.appendChild(checkBoxLabel)
librarySelector.appendChild(div)
}
for (const element of ['pip', 'stars']) {
const div = document.createElement('div');
const checkBox = document.createElement('input');
checkBox.type = 'checkbox'
checkBox.id = `${element}CheckboxGraph`;
const checkBoxLabel = document.createElement('label');
checkBoxLabel.textContent = element.charAt(0).toUpperCase() + element.slice(1)
checkBoxLabel.appendChild(checkBox)
div.appendChild(checkBoxLabel)
graphSelector.appendChild(div)
}
const fetchButton = createButton('Fetch', inferJson, () => {
const graphNames = ['pip', 'stars'].filter(e => document.querySelector(`#${e}CheckboxGraph`).checked);
const graphs = []
if (graphNames.includes('pip'))
graphs.push(retrievePipInstalls)
if (graphNames.includes('stars'))
graphs.push(retrieveStars)
return graphs
})
graphsDiv.appendChild(fetchButton);
};
const retrievePipInstalls = async (libraryNames) => {
const inferResponse = await fetch(`retrievePipInstalls?input=${libraryNames}`);
const inferJson = await inferResponse.json();
const colors = ['Lilac', 'Red', 'Blue', 'Orange', 'Green']
console.log(inferJson)
const labels = Array.from(inferJson['day']).map(e => new Date(e))
const datasets = [];
for (const element in inferJson) {
if (element === 'day')
continue
const color = colors.pop()
datasets.push({
label: element,
data: inferJson[element],
backgroundColor: color,
borderColor: color,
tension: 0.01,
pointRadius: 1,
borderWidth: 2,
fill: false
})
}
const ctx = document.getElementById('pip-graph');
const myChart = new Chart(ctx, {
type: 'line',
data: {labels, datasets},
options: {
scales: {
y: {
beginAtZero: true
},
x: {
type: 'time',
}
},
}
});
return myChart;
};
const retrieveStars = async (libraryNames) => {
const inferResponse = await fetch(`retrieveStars?input=${libraryNames}`);
const inferJson = await inferResponse.json();
const colors = ['Lilac', 'Red', 'Blue', 'Orange', 'Green']
const labels = Array.from(inferJson['day']).map(e => new Date(e))
const datasets = [];
for (const element in inferJson) {
if (element === 'day')
continue
const color = colors.pop()
datasets.push({
label: element,
data: inferJson[element],
backgroundColor: color,
borderColor: color,
tension: 0.01,
pointRadius: 1,
borderWidth: 2,
fill: false
})
}
const ctx = document.getElementById('star-graph');
const myChart = new Chart(ctx, {
type: 'line',
data: {labels, datasets},
options: {
scales: {
y: {
beginAtZero: true
},
x: {
type: 'time',
}
},
}
});
return myChart;
};
(
async () => {
const e = load()
document.body.appendChild(e)
await initialize()
document.body.removeChild(e)
}
)(); |