aboutsummaryrefslogtreecommitdiff
path: root/src/js/arching-kaos-modules-files.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/arching-kaos-modules-files.js')
-rw-r--r--src/js/arching-kaos-modules-files.js31
1 files changed, 31 insertions, 0 deletions
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"));
+ }
+}