forked from liriliri/chii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.js
182 lines (146 loc) · 5.16 KB
/
demo.js
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// "use liberal"
//------------------------------------------------------------------------------
var started = false;
var buttonStartStuff;
var buttonClearOutput;
var outputElement;
var storageIndex = 0;
var db;
var otherDB;
//------------------------------------------------------------------------------
function onLoad() {
if (!buttonStartStuff) buttonStartStuff = document.getElementById('start-btn');
if (!buttonClearOutput) buttonClearOutput = document.getElementById('clear-btn');
if (!outputElement) outputElement = document.getElementById('output');
buttonStartStuff.addEventListener('click', function () {
lastClickTime = new Date().toString();
if (db) db.transaction(addClick);
openTheOtherDatabase();
if (!started) {
buttonStartStuff.innerHTML = 'Stop Stuff';
startStuff();
} else {
buttonStartStuff.innerHTML = 'Start Stuff';
stopStuff();
}
started = !started;
});
buttonClearOutput.addEventListener('click', function () {
outputElement.innerHTML = '';
});
openTheDatabase();
}
//------------------------------------------------------------------------------
var interval;
function startStuff() {
if (window.localStorage) window.localStorage.clear();
storageIndex = 0;
interval = setInterval(intervalStuff, 1000);
}
function stopStuff() {
clearInterval(interval);
}
//------------------------------------------------------------------------------
function intervalStuff() {
var message = 'Doing interval stuff at ' + new Date();
// add a timeout
setTimeout(function () {
console.log(message);
}, 333);
// write to local- and sessionStorage
if (window.localStorage) {
var smessage = message + ' (local)';
window.localStorage.setItem('item-' + storageIndex, smessage);
}
if (window.sessionStorage) {
var smessage = message + ' (session)';
window.sessionStorage.setItem('item-' + storageIndex, smessage);
}
storageIndex++;
// write the message to the page
output(message);
// do an XHR
var xhr = new XMLHttpRequest();
// xhr.addEventListener("readystatechange", function() {logXhr(this)})
xhr.open('GET', '../test/demo.json', true);
xhr.send();
// do an FETCH
if (typeof fetch === 'function') {
fetch('../test/demo.json');
}
}
//------------------------------------------------------------------------------
function sqlSuccess(tx, resultSet) {
console.log('SQL Success!');
}
//------------------------------------------------------------------------------
function sqlError(tx, error) {
console.log('SQL Error ' + error.code + ': ' + error.message);
}
//------------------------------------------------------------------------------
var lastClickTime;
function addClick(tx) {
var sql = 'insert into clicks (date) values (?)';
tx.executeSql(sql, [lastClickTime], null, sqlError);
}
//------------------------------------------------------------------------------
function clearDatabase(tx, resultSet) {
var sql = 'delete from clicks';
tx.executeSql(sql, null, null, sqlError);
}
//------------------------------------------------------------------------------
function createDatabase(tx) {
var schema = 'clicks (id integer primary key, date text)';
var sql = 'create table if not exists ' + schema;
tx.executeSql(sql, null, clearDatabase, sqlError);
}
//------------------------------------------------------------------------------
function createDatabase_other(tx) {
var schema = 'clicks_other (id integer primary key, other text)';
var sql = 'create table if not exists ' + schema;
tx.executeSql(sql, null, null, sqlError);
}
//------------------------------------------------------------------------------
function openTheDatabase() {
if (window.openDatabase) {
db = window.openDatabase('clicks_db', '1.0', 'clicks_db', 8192);
db.transaction(createDatabase);
}
}
//------------------------------------------------------------------------------
function openTheOtherDatabase() {
if (otherDB) return;
if (window.openDatabase) {
otherDB = window.openDatabase('clicks_other_db', '1.0', 'clicks_other_db', 8192);
otherDB.transaction(createDatabase_other);
}
}
//------------------------------------------------------------------------------
function output(string) {
var element = document.createElement('div');
element.innerHTML = string;
outputElement.appendChild(element);
}
//------------------------------------------------------------------------------
function logXhr(xhr) {
console.log('xhr: readyState: ' + xhr.readyState);
}
function injectTarget() {
var script = document.createElement('script');
script.src = '//' + location.host + location.pathname.replace('test/demo.html', '') + 'target.js';
script.onload = function () {
console.log('console right after target injected');
throw Error('exception right after target injected');
};
if (location.href.indexOf('embedded=true') > -1) {
script.setAttribute('embedded', 'true');
}
if (location.href.indexOf('rtc=true') > -1) {
script.setAttribute('rtc', 'true');
}
if (location.href.indexOf('cdn=true') > -1) {
script.setAttribute('cdn', 'https://cdn.jsdelivr.net/npm/chii/public');
}
document.head.appendChild(script);
}
injectTarget();