forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-tabs.js
More file actions
135 lines (93 loc) · 3.94 KB
/
Copy pathtest-tabs.js
File metadata and controls
135 lines (93 loc) · 3.94 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
document.addEventListener('DOMContentLoaded', function() {
//////////////////////////////////////////////
var UI = require('mashlib')
var kb = UI.store;
var fetcher = UI.store.fetcher;
var ns = UI.ns;
var dom = document;
var ICAL = $rdf.Namespace('http://www.w3.org/2002/12/cal/ical#');
var SCHED = $rdf.Namespace('http://www.w3.org/ns/pim/schedule#');
var DC = $rdf.Namespace('http://purl.org/dc/elements/1.1/');
var uri = window.location.href;
var base = window.document.title = uri.slice(0, uri.lastIndexOf('/')+1);
var testDocURI = base + 'test.ttl'; // imaginary doc - just use its URL
var testDoc = $rdf.sym(testDocURI);
var subject_uri = testDocURI + '#event1';
var me_uri = testDocURI + '#a0';
var me = kb.sym(me_uri);
// var forms_uri = window.document.title = base+ 'forms.ttl';
var subject = kb.sym(subject_uri);
var div = dom.getElementById('UITestArea');
var showResults = function() {
var prologue = dom.getElementById('Prologue').textContent;
var tests = dom.getElementById('TestData').children;
var inputText = function(tr) {
return tr.children[0].children[0].textContent;
}
var testClass = function(tr) {
return tr.children[0].getAttribute('class')
}
var output = function(tr) {
return tr.children[1];
}
var t = 0;
try {
$rdf.parse(prologue + inputText(tests[t]), kb, testDocURI, 'text/turtle') // str, kb, base, contentType
} catch(e){
output(tests[t]).textContent = e
}
var options = { dom: dom };
var target;
var createFreshWidget = function() {
target = kb.the(undefined, UI.ns.rdf('type'), UI.ns.ui('Tabs'))
options.predicate = kb.the(target, UI.ns.ui('predicate'))
options.subject = kb.the(target, UI.ns.ui('subject'))
options.ordered = kb.the(target, UI.ns.ui('ordered')).value === '1' ? true : false
options.orientation = kb.the(target, UI.ns.ui('orientation')).value
var tabs = div.appendChild(UI.tabs.tabWidget(options));
return tabs;
};
// @@ Give other combos too-- see schedule ontology
var dataPointForNT = [];
var doc = testDoc;
var tabContentCache = []
options.showMain = function(container, subject){
container.innerHTML = ''
if (tabContentCache[subject.uri]){
container.appendChild(tabContentCache[subject.uri])
console.log(' used cached copy for ' + subject.uri)
return
}
var iframe = container.appendChild(dom.createElement('iframe'))
iframe.setAttribute('src', subject.uri)
iframe.setAttribute('style', 'border: 1em solid pink; margin: 2em; padding: 2em; padding-color: green;')
tabContentCache[subject.uri] = iframe
}
var tabs = div.appendChild(createFreshWidget());
var agenda = [];
var nextTest = function nextTest() {
// First take a copy of the DOM the klast test produced
output(tests[t]).appendChild(tabs.cloneNode(true));
t += 1;
var test = tests[t];
if (!test) return;
var tClass =
kb.removeMany(undefined, undefined, undefined, testDoc); // Flush out previous test data
try {
$rdf.parse(prologue + inputText(tests[t]), kb, testDocURI, 'text/turtle') ;
} catch(e){
output(test).textContent = e
}
if (testClass(test) === 'restart'){
div.removeChild(tabs)
tabs = div.appendChild(createFreshWidget())
} else {
tabs.refresh();
}
setTimeout(nextTest, 2000);
};
agenda.push(nextTest);
setTimeout(function(){ agenda.shift()()}, 2000);
}; // showResults
showResults();
});