mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-16 21:29:58 +00:00
18 lines
804 B
JavaScript
18 lines
804 B
JavaScript
import changelogManager from "../changelog/changelogManager.js"
|
|
|
|
let cache = {}
|
|
|
|
export function changelogHistory() { // blockId 0
|
|
if (cache['0']) return cache['0'];
|
|
let history = changelogManager("history");
|
|
let render = ``;
|
|
|
|
let historyLen = history.length;
|
|
for (let i in history) {
|
|
let separator = (i !== 0 && i !== historyLen) ? '<div class="separator"></div>' : '';
|
|
render += `${separator}${history[i]["banner"] ? `<div class="changelog-banner"><img class="changelog-img" src="${history[i]["banner"]}" onerror="this.style.display='none'"></img></div>` : ''}<div id="popup-desc" class="changelog-subtitle">${history[i]["title"]}</div><div id="popup-desc" class="desc-padding">${history[i]["content"]}</div>`
|
|
}
|
|
cache['0'] = render;
|
|
return render;
|
|
}
|