aboutsummaryrefslogtreecommitdiff
path: root/src/js/arching-kaos-modules-references.js
blob: f609d3a87667d99ac20919f0169c4654ced1af92 (plain)
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
/* Arching Kaos Module References
 *
 * Kaotisk Hund - 2024
 *
 * @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
 *
 */
function resolveReferences(references){
    for( entry in references ){
        var comment = document.querySelector('#comment-'+references[entry].dataExpansion.reference);
        var article = document.querySelector('#news-'+references[entry].dataExpansion.refer_to);
        article.appendChild(comment);
    }
}

function storeReference(zblockIPFSHash, zblockObject, blockObject, json, references){
    if ( references[zblockIPFSHash] === undefined ){
        references[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
        };
    }
}
// @license-end