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
|
/* Arching Kaos Model Mixtapes
*
* Kaotisk Hund - 2024
*
* @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
*
*/
function akModuleMixtapes(zblockIPFSHash, zblockObject, blockObject, json){
if(!document.querySelector('#mixtape-'+zblockIPFSHash)){
var divs = document.querySelector('#mixtapes-section');
var art = {
element:"article",
id:'mixtape-'+zblockIPFSHash,
innerHTML:[
{
element:"h3",
innerText:(json.title)?json.title:''
},
{
element:"h4",
innerText:(json.artist)?json.artist:''
},
{
element:"h5",
innerText:"Published: " + (json.timestamp)?new Date(json.timestamp*1000):''
},
{
element:"audio",
id:'mixtape-player-'+zblockIPFSHash,
innerHTML:[
{ element:"source", src: getIPFSURL(json.ipfs)}
]
}
]
};
makeElement(art, divs);
var audio = document.querySelector('#mixtape-player-'+zblockIPFSHash);
audio.setAttribute('controls','');
mixtapeIds.push('mixtape-player-'+zblockIPFSHash);
audio.addEventListener( "loadedmetadata", ()=>{
if ( mixtapes[zblockIPFSHash] === undefined ){
mixtapes[zblockIPFSHash]={
zblock:zblockIPFSHash,
block:zblockObject.block,
block_signature:zblockObject.block_signature,
action:blockObject.action,
previous:blockObject.previous,
data:blockObject.data,
dataExpansion:json,
detach:blockObject.detach,
gpg:blockObject.gpg,
timestamp:blockObject.timestamp,
audioDuration:audio.duration
};
}
/* console.log(
zblockIPFSHash+"'s duration is: "+
audio.duration +
" Ceiled: " + Math.ceil(audio.duration) +
" added on " + blockObject.timestamp + " or "
+ json.timestamp +
" DIFF: " + (blockObject.timestamp - json.timestamp)
); */
}, false );
if (document.querySelector("#mixtapes-sec-not-found")) document.querySelector("#mixtapes-sec-not-found").hidden=true;
}
}
// @license-end
|