mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-27 08:52:10 +00:00
18 lines
819 B
JavaScript
18 lines
819 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'" loading="lazy"></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;
|
|
}
|