From 15fc5bf25975004fa461a8d8fdf1ffc5abf020c6 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 27 Dec 2023 16:41:24 +0200 Subject: Extracted module renderer to file and function --- src/js/arching-kaos-modules-files.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/js/arching-kaos-modules-files.js (limited to 'src/js/arching-kaos-modules-files.js') diff --git a/src/js/arching-kaos-modules-files.js b/src/js/arching-kaos-modules-files.js new file mode 100644 index 0000000..c85a6aa --- /dev/null +++ b/src/js/arching-kaos-modules-files.js @@ -0,0 +1,31 @@ +function akModuleFiles(zblockIPFSHash, blockObject, json){ + if (!document.querySelector('#file-'+zblockIPFSHash)){ + var divs = document.querySelector('#files-section'); + var art = document.createElement("article"); + art.id = 'file-'+zblockIPFSHash; + if(json.title){ + var h3 = document.createElement("h3"); + h3.innerText = json.filename; + art.appendChild(h3); + } + if(json.datetime){ + var small = document.createElement("p"); + small.innerText="Published: " +json.datetime; + art.appendChild(small); + } + getNicknameAssossiatedWithGPG(blockObject.gpg); + var small = document.createElement("p"); + small.innerText="Contributor: " + getNicknameAssossiatedWithGPG(blockObject.gpg); + art.appendChild(small); + if(json.ipfs){ + // getipfstext(json.ipfs,art.id); + var small = document.createElement("a"); + small.innerText=json.filename; + small.href="https://ipfs.arching-kaos.com/ipfs/"+json.ipfs+"?filename="+json.filename; + art.appendChild(small); + } + divs.appendChild(art); + if(document.querySelector("#files-sec-not-found")) document.querySelector("#files-sec-not-found").hidden = true; + divs.appendChild(document.createElement("hr")); + } +} -- cgit v1.2.3