blob: 853d07e3bbfd9c78eaed71ad09bf55d20633391b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Virtual Collection demo</title>
<meta charset="utf-8" />
<script src="../src/vc.js"></script>
<link href="../../css/vc.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<div id="vc"></div>
<script>
var json = {
"@type":"korap:docGroup",
"operation":"operation:or",
"operands":[
{
"@type":"korap:docGroup",
"operation":"operation:and",
"operands":[
{
"@type":"korap:doc",
"key":"Titel",
"value":"Baum",
"match":"match:eq"
},
{
"@type":"korap:doc",
"key":"Veröffentlichungsort",
"value":"hihi",
"match":"match:eq"
},
{
"@type":"korap:docGroup",
"operation":"operation:or",
"operands":[
{
"@type":"korap:doc",
"key":"Titel",
"value":"Baum",
"match":"match:eq"
},
{
"@type":"korap:doc",
"key":"Veröffentlichungsort",
"value":"hihi",
"match":"match:eq"
}
]
}
]
},
{
"@type":"korap:doc",
"key":"Untertitel",
"value":"huhu",
"match":"match:eq"
}
]
};
var vc = KorAP.VirtualCollection.render(json);
document.getElementById('vc').appendChild(vc.element());
function showJSON() {
document.getElementById("json").innerHTML = JSON.stringify(vc.root().toJson());
};
</script>
<p><a onclick="showJSON()" style="cursor:pointer">show JSON!</a></p>
<div id="json" style="background-color:white; color: black; padding: 1em; font-family: mono;"></div>
</body>
</html>