-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
445 lines (418 loc) · 18.1 KB
/
index.html
File metadata and controls
445 lines (418 loc) · 18.1 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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<!DOCTYPE html>
<html lang="en">
<head>
<title>SRMIST</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="dist/jquery.convform.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="demo.css">
</head>
<body>
<section id="demo">
<div class="vertical-align">
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 col-xs-offset-0">
<div class="card no-border">
<div id="chat" class="conv-form-wrapper">
<heading style="width:50px;height:60px;"><img src="https://upload.wikimedia.org/wikipedia/en/f/fe/Srmseal.png" style="width:60px;height:60px;"> SRMBOT</heading>
<form action="" method="GET" class="hidden">
<input data-conv-question="Hello! This is SRMBOT, here to help you!" name="first-question"data-no-answer="true">
<!-- <option value="yes">Yes</option>
<option value="sure">Sure!</option>
</select> -->
<input type="text" name="name" data-conv-question="Okay! Please, tell me your name first.">
<!-- <select name="second-question" data-callback="storeState" data-conv-question="Hy {name}! How can I help you?">
<option value="SRM">Tell me about SRM</option>
<option value="admission">Admission</option>
</select>
<div data-conv-fork="second-question">
<div data-conv-case="SRM">
<select name="thought" data-conv-question="What do you want to know about SRM">
<option value="events">Events</option>
<option value="academics">Academics</option>
<option value="campus-life">Campus Life</option>
<option value="research">Research</option>
<option value="about">About</option>
</select>
</div>
<div data-conv-case="admission">
<select name="thought" data-conv-question="Have you ever thought about learning? Programming is fun!">
<option value="engineering">Engineering</option>
<option value="medical">Medical & Health Sciences</option>
<option value="management">Manangement</option>
<option value="law">Law</option>
<option value="science">Science And Humanities</option>
<option value="hotel">Hotel and Catering Management</option>
<option value="international">International Admissions</option>
<option value="others-sector">Others</option>
</select>
</div>
</div> -->
<!-- <input type="text" data-conv-question="Hey, {name}:0! It's a pleasure to meet you. " data-no-answer="true"> -->
<!-- <select data-conv-question="How can I help you?">
<option value="srm" data-callback="srm" >Tell me about SRM</option>
<option value="admission">Admission</option>
</select>
-->
<!-- <select data-conv-question="You are looking for admission in:">
<option>Engineering</option>
<option>Medical & Health Sciences</option>
<option>Manangement</option>
<option>Law</option>
</select>
<select data-conv-question="Choose preferred option">
<option>Programs Offered</option>
<option>Admission Procedure</option>
<option>Fees</option>
</select>
-->
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="jquery-1.12.3.min.js"></script>
<script type="text/javascript" src="dist/autosize.min.js"></script>
<script type="text/javascript" src="dist/jquery.convform.js"></script>
<script>
jQuery(function($){
var count = 0;
var convForm = $('#chat').convform({eventList:{onInputSubmit: function(convState, ready) {
console.log('input is being submitted...');
//here you send the response to your API, get the results and build the next question
//when ready, call 'ready' callback (passed as the second parameter)
if(convState.current.answer.value==='end') {
convState.current.next = false;
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='srm') {
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['What do you wanna know about SRM ?'],
answers: [
{text: 'Events', value: 'events'},
{text: 'Academics', value: 'academics'},
{text: 'Campus Life', value: 'campus-life'},
{text: 'Research', value: 'research'},
{text: 'About', value: 'about'},
{text: 'Go Back', value: 'end'}
]
});
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='admission') {
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['You are looking for admission in: '],
answers: [
{text: 'Engineering', value: 'engineering'},
{text: 'Medical & Health Sciences', value: 'medical'},
{text: 'Manangement', value: 'management'},
{text: 'Law', value: 'law'},
{text: 'Science And Humanities', value: 'SandH'},
{text: 'Hotel and Catering Management', value: 'HandCM'},
{text: 'International Admissions', value: 'international'},
{text: 'Others', value: 'otherSector'}
//{text: 'END', value: 'end'}
]
});
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='engineering') {
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['Choose preferred option: '],
answers: [
{text: 'Programs Offered', value: 'program'},
{text: 'Admission Procedure', value: 'admissionProcedure'},
{text: 'Apply Now', value: 'apply'},
{text: 'Financial and Fees', value: 'fees'},
//{text: 'Others', value: 'othersEng'},
{text: 'Know More', value: 'knowmore'}
//{text: 'END', value: 'end'}
]
});
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='knowmore') {
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['For More Information:'],
answers: [
{text: 'Visit Website', value: 'websiteEng'},
{text: 'Contact Us', value: 'contact'}
//{text: 'END', value: 'end'}
]
});
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='medical'|| convState.current.answer.value==='management'|| convState.current.answer.value==='law'||convState.current.answer.value==='SandH'||convState.current.answer.value==='HandCM'||convState.current.answer.value==='international'||convState.current.answer.value==='otherSector') {
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['For More Information:'],
answers: [
{text: 'Apply Now', value: 'apply'},
{text: 'Visit Website', value: 'website'},
{text: 'Contact Us', value: 'contact'}
//{text: 'END', value: 'end'}
]
});
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='fees') {
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['You are looking for: '],
answers: [
{text: 'Tution Fees', value: 'tution'},
{text: 'Hostel Fees', value: 'hostel'},
{text: 'Transport Fees', value: 'transport'},
{text: 'Scholarships', value: 'scholarship'},
{text: 'Refund related issues', value: 'refund'},
{text: 'Loans', value: 'loans'}
//{text: 'END', value: 'end'}
]
});
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='events') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/events-archive/2021";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='academics'| convState.current.answer.value==='website' ) {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='campus-life') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/campus/campus";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='research') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/research/research-details";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='about') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/aboutus/srm-university-where-you-have-freedom-take-wings";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='contact') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/contact-us";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='apply') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='websiteEng'){//|convState.current.answer.value==='othersEng') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/academics/engineering";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='program') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/engineering/programs-offered";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='admissionProcedure') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/engineering/admission-procedure-how-to-apply";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='tution') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/engineering/fees/tuition-fee";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='hostel') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/hostel-fee-structure-academic-year-2020-21-first-year-students-boys-girls";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='transport') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/engineering/fees/transport-fee";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='scholarship') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/engineering/fees/scholarships";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='refund') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/cancellation-of-admission-and-refund-policy";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
else if(convState.current.answer.value==='loans') {
convState.current.next = convState.newState({
type: 'select'
});
window.location.href = "https://www.srmist.edu.in/admission-india/engineering/fees/loans";
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
// else if(convState.current.answer.value==='2') {
// convState.current.next = convState.State({
// type: 'select',
// //noAnswer: true,
// name: 'dynamic-question-'+count,
// questions: ['You are looking for admission in: '+ answer],
// answers: [
// {text: 'Engineering', value: '6'},
// {text: 'Medical & Health Sciences', value: '7'},
// {text: 'Manangement', value: '8'},
// {text: 'Law', value: '9'},
// {text: 'END', value: 'end'}
// ]
// });
// //emulating random response time (100-600ms)
// setTimeout(ready, Math.random()*500+100);
// }
else {
if(Array.isArray(convState.current.answer)) var answer = convState.current.answer.join(', ');
else var answer = convState.current.answer.text;
convState.current.next = convState.newState({
type: 'select',
//noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['Hy {name}! How can I help you?'],
answers: [
{text: 'Tell about SRM', value: 'srm'},
{text: 'Admission', value: 'admission'}
//{text: 'END', value: 'end'}
]
});
// convState.current.next.next = convState.newState({
// type: 'select',
// name: 'dynamic-question-'+count,
// questions: ['This question state was built on your previous answer (you answered: '+answer+')'],
// });
//emulating random response time (100-600ms)
setTimeout(ready, Math.random()*500+100);
}
count++;
}}});
});
</script>
<!-- <script>
function srm(stateWrapper, ready) {
window.open("https://www.srmist.edu.in/");
ready();
}
function admission(stateWrapper, ready) {
window.open("https://www.srmist.edu.in/admission-india/");
ready();
}
var rollbackTo = false;
var originalState = false;
function storeState(stateWrapper, ready) {
rollbackTo = stateWrapper.current;
console.log("storeState called: ",rollbackTo);
ready();
}
function rollback(stateWrapper, ready) {
console.log("rollback called: ", rollbackTo, originalState);
console.log("answers at the time of user input: ", stateWrapper.answers);
if(rollbackTo!=false) {
if(originalState==false) {
originalState = stateWrapper.current.next;
console.log('stored original state');
}
stateWrapper.current.next = rollbackTo;
console.log('changed current.next to rollbackTo');
}
ready();
}
function restore(stateWrapper, ready) {
if(originalState != false) {
stateWrapper.current.next = originalState;
console.log('changed current.next to originalState');
}
ready();
}
</script>
<script>
jQuery(function($){
convForm = $('#chat').convform({selectInputStyle: 'disable'});
console.log(convForm);
});
</script> -->
</body>
</html>