-
Notifications
You must be signed in to change notification settings - Fork 11
/
Sherlock.js
152 lines (126 loc) · 4.68 KB
/
Sherlock.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
console.log("testing Sherlock");
// transform = function() {
// // ini
// };
// transform.render = contents => {
// // hey, lets de-lint the contents..
// // convert (^|\n{2,}Q1. to [Q1]
// // note: the first question wont have the
// // \n\n so we need to look at start of string(^)
// // contents = contents.replace(/(\n{2,})(\w+)\./msg, "$1[$2]")
// contents = contents.replace(/(?<=\n{2,})(\w+)\./gms, "[$1]");
// contents = contents.replace(/(\n{2,})([^\[])/gms, "$1[_#]$2");
// contents = contents.replace(/\/\*.*\*\//gms, "");
// contents = contents.replace(/\/\/.*/gms, "");
// // contents = contents.replace(/\[DISPLAY IF .*\]/gms, "");
// //console.log(contents)
// // first let's deal with breaking up questions..
// // a question starts with the [ID1] regex pattern
// // and end with the next pattern or the end of string...
// // start with a '['
// // then the first character must be a capital letter
// // followed by zero or more capital letters/digits or an _
// // note: we want this possessive (NOT greedy) so add a ?
// // otherwise it would match the first and last square bracket
// let regEx = new RegExp("\\[([A-Z_][A-Z0-9_#]*)\\](.*?)(?=\\[[A-Z])", "msg");
// contents = contents.replace(regEx, function(x, y, z) {
// console.log();
// // z = z.replace(/\/\*[\s\S]+\*\//g, "");
// // z = z.replace(/\/\/.*\n/g, "");
// z = z.replace(/\n/g, "<br>");
// z = z.replace(/\[_#\]/g, "");
// y = y.replace(/\[DISPLAY IF .*\]/g, "");
// // replace |__|__|__|__| with a number box...
// z = z
// .trim()
// .replace(
// /\|(__\|){4,}/g,
// "<input type='number' name='" + y + "'></input>"
// );
// // replace |__|__| with a number box...
// z = z
// .trim()
// .replace(
// /\|(__\|){2,}/g,
// "<input type='number' name='" + y + "'></input>"
// );
// // replace ____ + with an input box
// z = z.replace(/\_{4,}/g, "<input name='" + y + "'></input>");
// // replace |__| with an input box...
// z = z.trim().replace(/\|__\|/g, "<input name='" + y + "'></input>");
// // replace [text box:xxx] with a textbox
// z = z.replace(
// /\[text\s?box\]|\[text\s?box:\s?(\w+)?\]|\|___\|/g,
// "<textarea name='$1'></textarea>"
// );
// // replace (XX) with a radio button...
// z = z.replace(
// /(?<=\W)\((\w+)\)([^<\n]*)|\(\)/g,
// "<br><input type='radio' name='" +
// y +
// "' value='$1' id='" +
// y +
// "_$1'></input><label style='font-weight: normal' for='" +
// y +
// "_$1'>$2</label>"
// );
// // replace [a-zXX] with a checkbox box...
// z = z.replace(
// /\s*\[(\w*)\]([^<\n]*)|\[\]|\*/g,
// "<br><input type='checkbox' name='" +
// y +
// "' value='$1' id='" +
// y +
// "_$1' onclick='clearSelection(this)'></input><label style='font-weight: normal' for='" +
// y +
// "_$1'>$2</label>"
// );
// // replace user profile variables...
// z = z.replace(/{\$u:(\w+)}/, "<span name='$1'>$1</span>");
// // handle skips
// z = z.replace(
// /<input (.*?)><\/input><label(.*?)>(.*?)\s*->\s*(.*?)<\/label>/g,
// "<input $1 skipTo='$4'></input><label $2>$3</label>"
// );
// let rv =
// "<div class='question' style='font-weight: bold' id='" +
// y +
// "'>" +
// z +
// "<input type='button' onclick='prev(this)' class='previous' value='previous'></input>\n" +
// "<input type='button' onclick='next(this)' class='next' value='next'></input>" +
// "<br>" +
// "<br>" +
// "</div>";
// return rv;
// });
// // handle the display if case...
// contents = contents.replace(
// /\[DISPLAY IF\s*([A-Z][A-Z0-9+]*)\s*=\s*\(([\w,\s]+)\)\s*\]\s*<div (.*?)>/gms,
// "<div $3 showIfId='$1' values='$2'>"
// );
// // remove the first previous button...
// contents = contents.replace(
// /<input type='button'.*?class='previous'.*?\n/,
// ""
// );
// // remove the last next button...
// contents = contents.replace(
// /<input type='button'.*class='next'.*?\n(?=<\/div>\n\[END\])/,
// ""
// );
// // remove the hidden end tag...
// contents = contents.replace("[END]", "");
// // add the HTML/HEAD/BODY tags...
// return (contents =
// "<html><head></head><body>" +
// contents +
// '\n<script src="questionnaire.js"></script></body>');
// console.log("\n\n\n" + contents);
// };
// transform.tout = function(fun, tt = 500) {
// if (transform.tout.t) {
// clearTimeout(transform.tout.t);
// }
// transform.tout.t = setTimeout(fun, tt);
// };