blob: b1bf8430b2b855d65019294b40bf362bfd993901 [file] [log] [blame]
Nils Diewald0e6992a2015-04-14 20:13:52 +00001requirejs.config({
2 baseUrl: '../js/src',
3 paths : {
4 'lib': '../lib'
5 }
6});
7
8var json = {
9 "@type":"koral:docGroup",
10 "operation":"operation:or",
11 "operands":[
12 {
13 "@type":"koral:docGroup",
14 "operation":"operation:and",
15 "operands":[
16 {
17 "@type":"koral:doc",
Nils Diewald4c221252015-04-21 20:19:25 +000018 "key":"title",
Nils Diewald0e6992a2015-04-14 20:13:52 +000019 "value":"Der Birnbaum",
20 "match":"match:eq"
21 },
22 {
23 "@type":"koral:doc",
Nils Diewald4c221252015-04-21 20:19:25 +000024 "key":"pubPlace",
Nils Diewald0e6992a2015-04-14 20:13:52 +000025 "value":"Mannheim",
Akronea4e9052017-07-06 16:12:05 +020026 "type" : "type:regex",
27 "match":"match:contains"
Nils Diewald0e6992a2015-04-14 20:13:52 +000028 },
29 {
30 "@type":"koral:docGroup",
31 "operation":"operation:or",
32 "operands":[
33 {
34 "@type":"koral:doc",
Nils Diewald4c221252015-04-21 20:19:25 +000035 "key":"subTitle",
Nils Diewald0e6992a2015-04-14 20:13:52 +000036 "value":"Aufzucht und Pflege",
37 "match":"match:eq"
38 },
39 {
40 "@type":"koral:doc",
Nils Diewald4c221252015-04-21 20:19:25 +000041 "key":"subTitle",
Nils Diewald0e6992a2015-04-14 20:13:52 +000042 "value":"Gedichte",
43 "match":"match:eq",
44 "rewrites" : [
45 {
46 "@type": "koral:rewrite",
47 "src" : "policy",
48 "operation" : "operation:injection",
49 }
50 ]
51 }
52 ]
53 }
54 ]
55 },
56 {
57 "@type":"koral:doc",
Nils Diewald4c221252015-04-21 20:19:25 +000058 "key":"pubDate",
Nils Diewald0e6992a2015-04-14 20:13:52 +000059 "type":"type:date",
60 "value":"2015-03-05",
61 "match":"match:geq"
62 }
63 ]
64};
65
Akron48b1e4d2015-06-17 18:47:01 +020066var collections = [
67 {
68 "statistics":{
69 "paragraphs":2034752,
70 "documents":196510,
71 "tokens":51545081,
72 "sentences":4116282
73 },
74 "query":[
75 {
76 "@value":{
77 "@field":"korap:field#corpusID",
78 "@value":"WPD",
79 "@type":"korap:term"
80 },
81 "@type":"korap:meta-filter"
82 }
83 ],
84 "name":"Wikipedia",
85 "path":"Wikipedia",
86 "description":"Die freie Enzyklopädie",
87 "shared":false,
88 "managed":true,
89 "created":"2015-04-01T23:04:32.000+02:00",
90 "foundries":"",
91 "id":"ZGU0ZTllNTFkYzc3M2VhZmViYzdkYWE2ODI5NDc3NTk4NGQ1YThhOTMwOTNhOWYxNWMwN2M3Y2YyZmE3N2RlNQ=="
92 }
93];
94
hebasta3537f472018-06-05 15:05:15 +020095
Nils Diewald652e5f42015-05-10 18:11:45 +000096require(['vc','lib/domReady', 'lib/highlight/highlight.pack'], function (vcClass, domReady) {
Nils Diewald4c221252015-04-21 20:19:25 +000097
98 var loc = KorAP.Locale;
hebasta3537f472018-06-05 15:05:15 +020099
100 //corpus statistic
101 var statistic = {
102 "documents":1,
103 "tokens":222222,
104 "sentences":33333,
105 "paragraphs":444
106 };
Nils Diewald4c221252015-04-21 20:19:25 +0000107
Nils Diewald652e5f42015-05-10 18:11:45 +0000108/*
Nils Diewald4c221252015-04-21 20:19:25 +0000109 loc.AND = 'und';
110 loc.OR = 'oder';
111 loc.VC_subTitle = 'Untertitel';
112 loc.VC_title = 'Titel';
113 loc.VC_pubDate = 'Veröffentlichungsdatum';
114 loc.VC_pubPlace = 'Veröffentlichungsort';
Nils Diewald652e5f42015-05-10 18:11:45 +0000115*/
Nils Diewald0e6992a2015-04-14 20:13:52 +0000116
117 domReady(function() {
Nils Diewald4c221252015-04-21 20:19:25 +0000118
119 // Create a new virtual collection by passing a based json object and
120 // field menu information
Nils Diewald6283d692015-04-23 20:32:53 +0000121 var vc = vcClass.create([
Nils Diewald4c221252015-04-21 20:19:25 +0000122 ['title', 'string'],
123 ['subTitle', 'string'],
124 ['pubDate', 'date'],
Akron31d89942018-04-06 16:44:51 +0200125 ['author', 'text']
Nils Diewald6283d692015-04-23 20:32:53 +0000126 ]).fromJson(json);
Nils Diewald87507832015-05-01 23:36:41 +0000127
Nils Diewald0e6992a2015-04-14 20:13:52 +0000128 document.getElementById('vc').appendChild(vc.element());
Nils Diewald1fcb2ad2015-04-20 19:19:18 +0000129
Nils Diewald4c221252015-04-21 20:19:25 +0000130 // show the current JSON serialization
Nils Diewald1fcb2ad2015-04-20 19:19:18 +0000131 KorAP.showJSON = function () {
Nils Diewald652e5f42015-05-10 18:11:45 +0000132 var json = document.getElementById("json");
133 json.innerHTML = JSON.stringify(vc.root().toJson(), null, ' ');
134 hljs.highlightBlock(json);
Nils Diewald1fcb2ad2015-04-20 19:19:18 +0000135 };
136
Nils Diewald4c221252015-04-21 20:19:25 +0000137 // show the current query serialization
Nils Diewald1fcb2ad2015-04-20 19:19:18 +0000138 KorAP.showQuery = function () {
139 document.getElementById("query").innerHTML = vc.root().toQuery();
140 };
Nils Diewald845282c2015-05-14 07:53:03 +0000141
142 // make the current vc persistant
143 KorAP.makeVCPersistant = function () {
144 vc.makePersistant();
145 };
hebasta3537f472018-06-05 15:05:15 +0200146
147 //get the corpus statistic (demo function)
148 KorAP.API.getCorpStat = function(collQu, cb){
149 return cb(statistic);
150 };
Nils Diewald0e6992a2015-04-14 20:13:52 +0000151});
hebasta3537f472018-06-05 15:05:15 +0200152});
153