Blame view

src/pages/Exam/examSchedule.vue 33.7 KB
0551a0f15   Neeraj Sharma   implemnet functio...
1
      <template>
68d742034   Neeraj Sharma   implement new des...
2
3
    <v-container fluid class="body-color">
      <!-- ****** Edit Exam Schedule****** -->
db965de89   Amber Dev   added dialog pers...
4
      <v-dialog v-model="editExamScheduleDialog" max-width="800px" scrollable persistent>
68d742034   Neeraj Sharma   implement new des...
5
6
7
8
9
10
11
12
13
14
15
16
        <v-card flat class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">Edit Exam Schedule</label>
              <v-icon size="24" class="right" @click="editExamScheduleDialog = false">cancel</v-icon>
            </v-flex>
          </v-layout>
          <v-card-text>
            <v-form ref="form">
              <v-container fluid>
                <v-layout wrap>
                  <v-flex xs12 sm12>
0551a0f15   Neeraj Sharma   implemnet functio...
17
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
18
19
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Exam Name:</label>
0551a0f15   Neeraj Sharma   implemnet functio...
20
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
21
22
                      <v-flex xs7 class="ml-3">
                        <v-select
65d5475b6   Shikha Mishra   changes in api an...
23
                          :rules="examRules"
68d742034   Neeraj Sharma   implement new des...
24
                          :items="examList"
65d5475b6   Shikha Mishra   changes in api an...
25
                          v-model="editedItem.examId"
68d742034   Neeraj Sharma   implement new des...
26
27
                          label="Select your Exam Name"
                          item-text="examName"
65d5475b6   Shikha Mishra   changes in api an...
28
                          item-value="_id"
68d742034   Neeraj Sharma   implement new des...
29
                        ></v-select>
0551a0f15   Neeraj Sharma   implemnet functio...
30
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
31
32
33
34
35
36
                    </v-layout>
                  </v-flex>
                  <v-flex xs12 sm12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Class:</label>
0551a0f15   Neeraj Sharma   implemnet functio...
37
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
38
39
40
41
42
43
44
45
46
47
48
                      <v-flex xs7 class="ml-3">
                        <v-select
                          v-model="editedItem.classId"
                          label="Select your Class"
                          type="text"
                          :items="classList"
                          item-text="classNum"
                          item-value="_id"
                          @change="getSections(editedItem.classId)"
                          required
                        ></v-select>
0551a0f15   Neeraj Sharma   implemnet functio...
49
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
50
51
52
53
54
                    </v-layout>
                  </v-flex>
                  <v-flex xs12 sm12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
68d742034   Neeraj Sharma   implement new des...
55
                        <label class="right">Subject Name:</label>
0551a0f15   Neeraj Sharma   implemnet functio...
56
                      </v-flex>
68d742034   Neeraj Sharma   implement new des...
57
58
59
                      <v-flex xs7 class="ml-3">
                        <v-select
                          :items="subjects"
8627b2890   Shikha Mishra   set table fields ...
60
                          label="Select your Subject"
68d742034   Neeraj Sharma   implement new des...
61
62
63
                          v-model="editedItem.subjectName"
                          item-text="subjectName"
                          item-value="subjectName"
8627b2890   Shikha Mishra   set table fields ...
64
                          name="Select Subject"
68d742034   Neeraj Sharma   implement new des...
65
66
                          required
                        ></v-select>
0551a0f15   Neeraj Sharma   implemnet functio...
67
68
                      </v-flex>
                    </v-layout>
68d742034   Neeraj Sharma   implement new des...
69
70
                  </v-flex>
                  <v-flex xs12 sm12>
0551a0f15   Neeraj Sharma   implemnet functio...
71
                    <v-layout>
68d742034   Neeraj Sharma   implement new des...
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
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Date:</label>
                      </v-flex>
                      <v-flex xs7 class="ml-3">
                        <v-menu
                          ref="editDate"
                          :close-on-content-click="false"
                          v-model="editDate"
                          :nudge-right="40"
                          :return-value.sync="editDate"
                          lazy
                          transition="scale-transition"
                          offset-y
                          full-width
                          min-width="290px"
                        >
                          <v-text-field
                            slot="activator"
                            v-model="editedItem.date"
                            label="Select Date"
                            append-icon="event"
                            readonly
                          ></v-text-field>
                          <v-date-picker v-model="editedItem.date" @input="editDate = false"></v-date-picker>
                        </v-menu>
0551a0f15   Neeraj Sharma   implemnet functio...
97
98
                      </v-flex>
                    </v-layout>
68d742034   Neeraj Sharma   implement new des...
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
                  </v-flex>
                  <v-flex xs12 sm12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Time From:</label>
                      </v-flex>
                      <v-flex xs7 class="ml-3">
                        <v-menu
                          ref="menuEdit"
                          :close-on-content-click="false"
                          v-model="menuEdit"
                          :nudge-right="40"
                          :return-value.sync="editedItem.timeFrom"
                          lazy
                          transition="scale-transition"
                          offset-y
                          full-width
                          max-width="290px"
                          min-width="290px"
                        >
                          <v-text-field
                            slot="activator"
                            v-model="editedItem.timeFrom"
                            label="Select your time From"
                            append-icon="access_time"
                            readonly
                          ></v-text-field>
                          <v-time-picker
                            v-model="editedItem.timeIn"
                            @change="$refs.menuEdit.save(editedItem.timeIn)"
                          ></v-time-picker>
                        </v-menu>
                      </v-flex>
                    </v-layout>
                  </v-flex>
                  <v-flex xs12 sm12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Time To:</label>
                      </v-flex>
                      <v-flex xs7 class="ml-3">
                        <v-menu
                          ref="timeToEdit"
                          :close-on-content-click="false"
                          v-model="timeToEdit"
                          :nudge-right="40"
                          :return-value.sync="editedItem.timeTo"
                          lazy
                          transition="scale-transition"
                          offset-y
                          full-width
                          max-width="290px"
                          min-width="290px"
                        >
                          <v-text-field
                            slot="activator"
                            v-model="editedItem.timeTo"
                            label="Select your Time To"
                            append-icon="access_time"
                            readonly
                          ></v-text-field>
                          <v-time-picker
                            v-model="editedItem.timeTo"
                            @change="$refs.timeToEdit.save(editedItem.timeTo)"
                          ></v-time-picker>
                        </v-menu>
                      </v-flex>
                    </v-layout>
                  </v-flex>
                  <v-flex xs12 sm12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Room:</label>
                      </v-flex>
                      <v-flex xs7 class="ml-3">
                        <v-text-field
                          placeholder="fill your room"
                          v-model="editedItem.room"
                          @keyup.enter="save"
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                  </v-flex>
                </v-layout>
                <v-layout>
                  <v-flex xs12>
                    <v-card-actions>
                      <v-spacer></v-spacer>
e8965626f   Shikha Mishra   set login design ...
187
                      <v-btn round dark @click="update" class="add-button">Save</v-btn>
68d742034   Neeraj Sharma   implement new des...
188
189
190
191
192
193
194
195
                    </v-card-actions>
                  </v-flex>
                </v-layout>
              </v-container>
            </v-form>
          </v-card-text>
        </v-card>
      </v-dialog>
0551a0f15   Neeraj Sharma   implemnet functio...
196

68d742034   Neeraj Sharma   implement new des...
197
      <!-- ****** PROFILE VIEW Exam Schedule  DATA ******  -->
0551a0f15   Neeraj Sharma   implemnet functio...
198

db965de89   Amber Dev   added dialog pers...
199
      <v-dialog v-model="profileExamScheduleDialog" max-width="600px" persistent>
68d742034   Neeraj Sharma   implement new des...
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
        <v-card flat class="card-style pa-3" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">View Exam Schedule</label>
              <v-icon size="24" class="right" @click="profileExamScheduleDialog = false">cancel</v-icon>
            </v-flex>
          </v-layout>
          <v-card-text>
            <v-container grid-list-md>
              <v-layout wrap>
                <v-flex>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Exam Name:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
65d5475b6   Shikha Mishra   changes in api an...
218
                      <h5 class="my-1">{{ editedItem.examId}}</h5>
0551a0f15   Neeraj Sharma   implemnet functio...
219
220
                    </v-flex>
                  </v-layout>
68d742034   Neeraj Sharma   implement new des...
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
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Class:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.classId }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Section:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.sectionId }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Subject Name:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.subjectName }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Date:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ dates(editedItem.date) }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Time From:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.timeFrom }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Time To:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.timeTo }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Room:</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.room }}</h5>
                    </v-flex>
                  </v-layout>
                </v-flex>
              </v-layout>
            </v-container>
          </v-card-text>
        </v-card>
      </v-dialog>
      <!-- *****  Exam Schedule TABLE****** -->
      <v-toolbar color="transparent" flat>
        <v-btn
          fab
          dark
          class="open-dialog-button hidden-xl-only hidden-md-only hidden-lg-only"
          small
          @click="addExamScheduleDialog = true"
        >
          <v-icon dark>add</v-icon>
        </v-btn>
        <v-btn
710438de6   Shikha Mishra   added teacher mod...
309
          v-if="role != 'TEACHER' "
68d742034   Neeraj Sharma   implement new des...
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
          round
          class="open-dialog-button hidden-sm-only hidden-xs-only"
          dark
          @click="addExamScheduleDialog = true"
        >
          <v-icon class="white--text pr-1" size="20">add</v-icon>Add Exam Schedule
        </v-btn>
        <v-spacer></v-spacer>
        <v-flex xs8 sm3 md2 class="mr-3">
          <v-select
            v-model="getScheduleData.classId"
            label="Select your class"
            type="text"
            :items="classList"
            item-text="classNum"
            item-value="_id"
b039d39fb   Shikha Mishra   Hide Edit functio...
326
327
328
329
330
331
332
333
334
335
336
337
338
            @change="getSections(getScheduleData.classId)"
            required
          ></v-select>
        </v-flex>
        <v-flex xs8 sm3 md2 class="mr-3">
          <v-select
            v-model="getScheduleData.sectionId"
            label="Select your section"
            type="text"
            :items="addSection"
            item-text="name"
            item-value="_id"
            @change="getSchedulesList(getScheduleData.classId,getScheduleData.sectionId)"
68d742034   Neeraj Sharma   implement new des...
339
340
341
342
343
344
            required
          ></v-select>
        </v-flex>
        <v-card-title class="body-1" v-show="show">
          <v-btn icon large flat @click="displaySearch">
            <v-avatar size="27">
aa310d61a   Shikha Mishra   added functionali...
345
              <img src="/static/icon/search.png" alt="icon" />
68d742034   Neeraj Sharma   implement new des...
346
347
348
            </v-avatar>
          </v-btn>
        </v-card-title>
612b79bb4   Amber Dev   made serch auto f...
349
        <v-flex xs8 sm8 md3 lg2 v-if="showSearch">
68d742034   Neeraj Sharma   implement new des...
350
          <v-layout>
8e8d14254   Shikha Mishra   Cleared data whil...
351
352
353
354
355
356
357
            <v-text-field
              autofocus
              v-model="search"
              label="Search"
              prepend-inner-icon="search"
              color="primary"
            ></v-text-field>
68d742034   Neeraj Sharma   implement new des...
358
359
360
361
362
363
364
365
366
367
368
369
370
            <v-icon @click="closeSearch" color="error">close</v-icon>
          </v-layout>
        </v-flex>
      </v-toolbar>
      <v-data-table
        :headers="headers"
        :items="ScheduleData"
        :pagination.sync="pagination"
        :search="search"
      >
        <template slot="items" slot-scope="props">
          <tr class="tr">
            <td class="td td-row">{{ props.index + 1}}</td>
65d5475b6   Shikha Mishra   changes in api an...
371
            <td class="td td-row text-xs-center">{{ props.item.examId.examName}}</td>
68d742034   Neeraj Sharma   implement new des...
372
            <td class="td td-row text-xs-center">{{ props.item.classId.classNum}}</td>
68d742034   Neeraj Sharma   implement new des...
373
374
375
376
            <td class="td td-row text-xs-center">{{ props.item.subjectName }}</td>
            <td class="td td-row text-xs-center">{{ dates(props.item.date) }}</td>
            <td class="td td-row text-xs-center">{{ props.item.timeFrom }} - {{ props.item.timeTo }}</td>
            <td class="td td-row text-xs-center">{{ props.item.room }}</td>
7281a47c4   Shikha Mishra   show class name a...
377
            <td class="td td-row text-xs-center">
68d742034   Neeraj Sharma   implement new des...
378
              <span>
fe0d05d29   Neeraj Sharma   complete design a...
379
                <v-tooltip top>
68d742034   Neeraj Sharma   implement new des...
380
381
382
383
384
                  <img
                    slot="activator"
                    style="cursor:pointer; width:25px; height:25px; "
                    class="mr-3"
                    @click="profile(props.item)"
aa310d61a   Shikha Mishra   added functionali...
385
                    src="/static/icon/view.png"
68d742034   Neeraj Sharma   implement new des...
386
387
388
                  />
                  <span>View</span>
                </v-tooltip>
7281a47c4   Shikha Mishra   show class name a...
389
                <v-tooltip top v-if="role != 'TEACHER' ">
68d742034   Neeraj Sharma   implement new des...
390
391
392
393
394
                  <img
                    slot="activator"
                    style="cursor:pointer; width:20px; height:18px; "
                    class="mr-3"
                    @click="editItem(props.item)"
aa310d61a   Shikha Mishra   added functionali...
395
                    src="/static/icon/edit.png"
68d742034   Neeraj Sharma   implement new des...
396
397
398
                  />
                  <span>Edit</span>
                </v-tooltip>
7281a47c4   Shikha Mishra   show class name a...
399
                <v-tooltip top v-if="role != 'TEACHER' ">
68d742034   Neeraj Sharma   implement new des...
400
401
402
                  <img
                    slot="activator"
                    style="cursor:pointer; width:20px; height:20px; "
65d5475b6   Shikha Mishra   changes in api an...
403
                    @click="deleteSchedule(props.item)"
aa310d61a   Shikha Mishra   added functionali...
404
                    src="/static/icon/delete.png"
68d742034   Neeraj Sharma   implement new des...
405
406
407
408
409
410
411
412
413
414
415
416
417
418
                  />
                  <span>Delete</span>
                </v-tooltip>
              </span>
            </td>
          </tr>
        </template>
        <v-alert
          slot="no-results"
          :value="true"
          color="error"
          icon="warning"
        >Your search for "{{ search }}" found no results.</v-alert>
      </v-data-table>
0551a0f15   Neeraj Sharma   implemnet functio...
419

68d742034   Neeraj Sharma   implement new des...
420
      <!-- ****** ADD  Exam Schedule ****** -->
7014df603   Shikha Mishra   Improve placehold...
421
422
423
424
425
426
      <v-dialog
        v-model="addExamScheduleDialog"
        max-width="600"
        v-if="addExamScheduleDialog"
        persistent
      >
68d742034   Neeraj Sharma   implement new des...
427
428
429
        <v-card flat class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
8c3acf4a9   Shikha Mishra   improve details
430
              <label class="title text-xs-center">Add Exam Schedule</label>
8e8d14254   Shikha Mishra   Cleared data whil...
431
432
433
434
435
              <v-icon
                size="24"
                class="right"
                @click="$refs.form.reset();addExamScheduleDialog = false"
              >cancel</v-icon>
68d742034   Neeraj Sharma   implement new des...
436
437
438
439
440
441
442
443
444
445
446
447
            </v-flex>
          </v-layout>
          <v-form ref="form" v-model="valid" lazy-validation>
            <v-container fluid>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Exam Name:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-select
                      label="Select your Exam Name"
65d5475b6   Shikha Mishra   changes in api an...
448
                      :rules="examRules"
68d742034   Neeraj Sharma   implement new des...
449
                      :items="examList"
65d5475b6   Shikha Mishra   changes in api an...
450
                      v-model="addSchedule.examId"
68d742034   Neeraj Sharma   implement new des...
451
                      item-text="examName"
65d5475b6   Shikha Mishra   changes in api an...
452
                      item-value="_id"
68d742034   Neeraj Sharma   implement new des...
453
454
455
456
                    ></v-select>
                  </v-flex>
                </v-layout>
              </v-flex>
0551a0f15   Neeraj Sharma   implemnet functio...
457
458
              <v-flex xs12>
                <v-layout>
68d742034   Neeraj Sharma   implement new des...
459
                  <v-flex xs5 class="pt-4 subheading">
0551a0f15   Neeraj Sharma   implemnet functio...
460
461
                    <label class="right">Class:</label>
                  </v-flex>
68d742034   Neeraj Sharma   implement new des...
462
                  <v-flex xs7 sm7 md6 class="ml-3">
0551a0f15   Neeraj Sharma   implemnet functio...
463
                    <v-select
68d742034   Neeraj Sharma   implement new des...
464
                      v-model="addSchedule.classId"
0551a0f15   Neeraj Sharma   implemnet functio...
465
466
467
468
469
                      label="Select your class"
                      type="text"
                      :items="classList"
                      item-text="classNum"
                      item-value="_id"
68d742034   Neeraj Sharma   implement new des...
470
471
                      :rules="classRules"
                      @change="getSections(addSchedule.classId)"
0551a0f15   Neeraj Sharma   implemnet functio...
472
473
474
475
476
                      required
                    ></v-select>
                  </v-flex>
                </v-layout>
              </v-flex>
68d742034   Neeraj Sharma   implement new des...
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Section:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-select
                      :items="addSection"
                      label="Select Section"
                      v-model="addSchedule.sectionId"
                      item-text="name"
                      item-value="_id"
                      name="Select Section"
                      :rules="sectionRules"
                      required
                    ></v-select>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Subject Name:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-select
                      :items="subjects"
                      label="Select Subject"
                      v-model="addSchedule.subjectName"
                      item-text="subjectName"
                      item-value="subjectName"
                      name="Select Section"
                      :rules="subjectRules"
                      required
                    ></v-select>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Date:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-menu
                      ref="menu2"
                      :close-on-content-click="false"
                      v-model="menu2"
                      :nudge-right="40"
                      :return-value.sync="addSchedule.date"
                      lazy
                      transition="scale-transition"
                      offset-y
                      full-width
                      min-width="290px"
                    >
                      <v-text-field
                        slot="activator"
                        v-model="addSchedule.date"
                        :rules="examScheduleDateRules"
                        label="Select Date"
                        append-icon="event"
                        readonly
                      ></v-text-field>
                      <v-date-picker
                        v-model="addSchedule.date"
                        @input="$refs.menu2.save(addSchedule.date)"
                      ></v-date-picker>
                    </v-menu>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Time From:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-menu
                      ref="menuA"
                      :close-on-content-click="false"
                      v-model="menuB"
                      :nudge-right="40"
                      :return-value.sync="addSchedule.timeFrom"
                      lazy
                      transition="scale-transition"
                      offset-y
                      full-width
                      max-width="290px"
                      min-width="290px"
                    >
                      <v-text-field
                        slot="activator"
                        v-model="addSchedule.timeIn"
                        label="Select your time From"
                        append-icon="access_time"
                        :rules="timeInRules"
                        readonly
                      ></v-text-field>
                      <v-time-picker
                        v-model="addSchedule.timeIn"
                        @change="$refs.menuA.save(addSchedule.timeIn)"
                      ></v-time-picker>
                    </v-menu>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Time To:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-menu
                      ref="menu"
                      :close-on-content-click="false"
                      v-model="menu1"
                      :nudge-right="40"
                      :return-value.sync="addSchedule.timeTo"
                      lazy
                      transition="scale-transition"
                      offset-y
                      full-width
                      max-width="290px"
                      min-width="290px"
                    >
                      <v-text-field
                        slot="activator"
                        v-model="addSchedule.timeTo"
                        label="Select your Time To"
                        append-icon="access_time"
                        :rules="timeOutRules"
                        readonly
                      ></v-text-field>
                      <v-time-picker
                        v-model="addSchedule.timeTo"
                        @change="$refs.menu.save(addSchedule.timeTo)"
                      ></v-time-picker>
                    </v-menu>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-flex xs12>
                <v-layout>
                  <v-flex xs5 class="pt-4 subheading">
                    <label class="right">Room:</label>
                  </v-flex>
                  <v-flex xs7 sm7 md6 class="ml-3">
                    <v-text-field
                      placeholder="fill your room"
                      :rules="roomRules"
                      v-model="addSchedule.room"
                      @keyup.enter="submit"
                    ></v-text-field>
                  </v-flex>
                </v-layout>
              </v-flex>
              <v-layout>
                <v-flex xs12>
                  <v-card-actions>
                    <v-spacer class="hidden-xs-only"></v-spacer>
                    <v-btn @click="clear" round dark class="clear-button">clear</v-btn>
                    <v-btn @click="submit" round dark :loading="loading" class="add-button">Add</v-btn>
                  </v-card-actions>
                </v-flex>
              </v-layout>
            </v-container>
          </v-form>
        </v-card>
      </v-dialog>
      <v-snackbar
        :timeout="timeout"
        :top="y === 'top'"
        :right="x === 'right'"
        :vertical="mode === 'vertical'"
        v-model="snackbar"
        :color="color"
      >{{ text }}</v-snackbar>
0551a0f15   Neeraj Sharma   implemnet functio...
655
656
657
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
68d742034   Neeraj Sharma   implement new des...
658
    </v-container>
0551a0f15   Neeraj Sharma   implemnet functio...
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
  </template>
  
  <script>
  import http from "@/Services/http.js";
  import moment from "moment";
  
  export default {
    data: () => ({
      snackbar: false,
      date: null,
      editDate: false,
      menu1: false,
      menuB: false,
      menu2: false,
      menuEdit: false,
      timeToEdit: false,
68d742034   Neeraj Sharma   implement new des...
675
676
677
      show: true,
      showSearch: false,
      addExamScheduleDialog: false,
0551a0f15   Neeraj Sharma   implemnet functio...
678
679
680
681
682
683
684
685
686
687
      color: "",
      y: "top",
      x: "right",
      mode: "",
      timeout: 10000,
      text: "",
      loading: false,
      date: null,
      search: "",
      showLoader: false,
68d742034   Neeraj Sharma   implement new des...
688
689
      editExamScheduleDialog: false,
      profileExamScheduleDialog: false,
0551a0f15   Neeraj Sharma   implemnet functio...
690
      valid: true,
fe0d05d29   Neeraj Sharma   complete design a...
691
      role: "",
0551a0f15   Neeraj Sharma   implemnet functio...
692
      pagination: {
8e8d14254   Shikha Mishra   Cleared data whil...
693
        rowsPerPage: 10,
0551a0f15   Neeraj Sharma   implemnet functio...
694
      },
8e8d14254   Shikha Mishra   Cleared data whil...
695
696
697
698
699
700
701
702
      examRules: [(v) => !!v || "Exam Name is required"],
      classRules: [(v) => !!v || "Class Name is required"],
      sectionRules: [(v) => !!v || "section is required"],
      subjectRules: [(v) => !!v || "Subject is required"],
      timeInRules: [(v) => !!v || "Time In is required"],
      timeOutRules: [(v) => !!v || "time Out s is required"],
      roomRules: [(v) => !!v || "Room is required"],
      examScheduleDateRules: [(v) => !!v || "Date is required"],
0551a0f15   Neeraj Sharma   implemnet functio...
703
704
      headers: [
        {
68d742034   Neeraj Sharma   implement new des...
705
          align: "",
0551a0f15   Neeraj Sharma   implemnet functio...
706
707
          text: "No",
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
708
          value: "No",
0551a0f15   Neeraj Sharma   implemnet functio...
709
710
711
        },
        {
          text: "Exam Name",
65d5475b6   Shikha Mishra   changes in api an...
712
          vaue: "examId.examName",
0551a0f15   Neeraj Sharma   implemnet functio...
713
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
714
          align: "center",
0551a0f15   Neeraj Sharma   implemnet functio...
715
716
717
718
719
        },
        {
          text: "Class",
          value: "classId.classNum",
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
720
          align: "center",
0551a0f15   Neeraj Sharma   implemnet functio...
721
        },
c1975052a   Shikha Mishra   show data in table
722
723
724
725
726
727
        // {
        //   text: "Section",
        //   value: "sectionId.name",
        //   sortable: false,
        //   align: "center"
        // },
0551a0f15   Neeraj Sharma   implemnet functio...
728
729
730
731
        {
          text: "Subject Name",
          value: "subjectName",
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
732
          align: "center",
0551a0f15   Neeraj Sharma   implemnet functio...
733
734
735
736
737
        },
        {
          text: "Date",
          value: "date",
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
738
          align: "center",
0551a0f15   Neeraj Sharma   implemnet functio...
739
740
741
742
743
        },
        {
          text: "Time",
          value: "timeFrom",
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
744
          align: "center",
0551a0f15   Neeraj Sharma   implemnet functio...
745
        },
fe0d05d29   Neeraj Sharma   complete design a...
746
        {
0551a0f15   Neeraj Sharma   implemnet functio...
747
748
749
          text: "Room",
          value: "room",
          sortable: false,
8e8d14254   Shikha Mishra   Cleared data whil...
750
          align: "center",
0551a0f15   Neeraj Sharma   implemnet functio...
751
        },
8e8d14254   Shikha Mishra   Cleared data whil...
752
        { text: "Action", value: "", sortable: false, align: "center" },
0551a0f15   Neeraj Sharma   implemnet functio...
753
754
      ],
      classList: [],
8627b2890   Shikha Mishra   set table fields ...
755
      addSection: [],
0551a0f15   Neeraj Sharma   implemnet functio...
756
757
758
      examList: [],
      subjects: [],
      addSchedule: {},
c1975052a   Shikha Mishra   show data in table
759
760
      editedItem: {
        sectionId: {
8e8d14254   Shikha Mishra   Cleared data whil...
761
762
          name: "",
        },
c1975052a   Shikha Mishra   show data in table
763
      },
0551a0f15   Neeraj Sharma   implemnet functio...
764
765
      getScheduleData: {},
      ScheduleData: [],
8e8d14254   Shikha Mishra   Cleared data whil...
766
      token: "",
0551a0f15   Neeraj Sharma   implemnet functio...
767
    }),
8e8d14254   Shikha Mishra   Cleared data whil...
768
769
770
771
772
773
774
    watch: {
      addExamScheduleDialog: function (val) {
        if (!val) {
          this.addSchedule = [];
        }
      },
    },
0551a0f15   Neeraj Sharma   implemnet functio...
775
    methods: {
8e8d14254   Shikha Mishra   Cleared data whil...
776
      dates: function (date) {
0551a0f15   Neeraj Sharma   implemnet functio...
777
778
779
780
781
782
        return moment(date).format("MMMM DD, YYYY");
      },
      pickFile() {
        this.$refs.image.click();
      },
      getSchedulesList() {
fe0d05d29   Neeraj Sharma   complete design a...
783
784
785
        if (this.addSchedule.classId) {
          this.getScheduleData.classId = this.addSchedule.classId;
        }
0551a0f15   Neeraj Sharma   implemnet functio...
786
787
788
        this.showLoader = true;
        http()
          .get("/getSchedulesList", {
b039d39fb   Shikha Mishra   Hide Edit functio...
789
790
            params: {
              classId: this.getScheduleData.classId,
8e8d14254   Shikha Mishra   Cleared data whil...
791
              sectionId: this.getScheduleData.sectionId,
b039d39fb   Shikha Mishra   Hide Edit functio...
792
            },
8e8d14254   Shikha Mishra   Cleared data whil...
793
            headers: { Authorization: "Bearer " + this.token },
0551a0f15   Neeraj Sharma   implemnet functio...
794
          })
8e8d14254   Shikha Mishra   Cleared data whil...
795
          .then((response) => {
68d742034   Neeraj Sharma   implement new des...
796
797
            this.ScheduleData = response.data.data;
            // console.log("this.ScheduleData", this.ScheduleData);
0551a0f15   Neeraj Sharma   implemnet functio...
798
799
            this.showLoader = false;
          })
8e8d14254   Shikha Mishra   Cleared data whil...
800
          .catch((error) => {
0551a0f15   Neeraj Sharma   implemnet functio...
801
802
803
804
            // console.log("err====>", err);
            this.showLoader = false;
            this.loadingSearch = false;
            this.snackbar = true;
b039d39fb   Shikha Mishra   Hide Edit functio...
805
            this.color = "error";
0551a0f15   Neeraj Sharma   implemnet functio...
806
807
808
809
810
811
812
813
814
            this.text = error.response.data.message;
            if (error.response.status === 401) {
              this.$router.replace({ path: "/" });
              this.$store.dispatch("setToken", null);
              this.$store.dispatch("Id", null);
            }
          });
      },
      editItem(item) {
68d742034   Neeraj Sharma   implement new des...
815
        // console.log("item", item);
0551a0f15   Neeraj Sharma   implemnet functio...
816
817
        this.editedIndex = this.ScheduleData.indexOf(item);
        this.editedItem = Object.assign({}, item);
fe0d05d29   Neeraj Sharma   complete design a...
818
        this.editedItem.examId = this.editedItem.examId._id;
0551a0f15   Neeraj Sharma   implemnet functio...
819
        this.editedItem.classId = this.editedItem.classId._id;
b039d39fb   Shikha Mishra   Hide Edit functio...
820
821
822
823
        this.editedItem.sectionId =
          this.editedItem.sectionId === null
            ? (this.editedItem.sectionId = this.editedItem.sectionId = "")
            : this.editedItem.sectionId._id;
0551a0f15   Neeraj Sharma   implemnet functio...
824
825
826
827
        this.editedItem.date =
          this.editedItem.date != undefined
            ? (this.editedItem.date = this.editedItem.date.substring(0, 10))
            : (this.editedItem.date = "");
68d742034   Neeraj Sharma   implement new des...
828
        this.editExamScheduleDialog = true;
0551a0f15   Neeraj Sharma   implemnet functio...
829
830
831
832
      },
      profile(item) {
        this.editedIndex = this.ScheduleData.indexOf(item);
        this.editedItem = Object.assign({}, item);
65d5475b6   Shikha Mishra   changes in api an...
833
        this.editedItem.examId = this.editedItem.examId.examName;
0551a0f15   Neeraj Sharma   implemnet functio...
834
        this.editedItem.classId = this.editedItem.classId.classNum;
b039d39fb   Shikha Mishra   Hide Edit functio...
835
836
837
838
        this.editedItem.sectionId =
          this.editedItem.sectionId === null
            ? (this.editedItem.sectionId = this.editedItem.sectionId = "")
            : this.editedItem.sectionId.name;
68d742034   Neeraj Sharma   implement new des...
839
        this.profileExamScheduleDialog = true;
0551a0f15   Neeraj Sharma   implemnet functio...
840
841
842
      },
      deleteSchedule(item) {
        let deleteSchedule = {
8e8d14254   Shikha Mishra   Cleared data whil...
843
          scheduleId: item._id,
0551a0f15   Neeraj Sharma   implemnet functio...
844
845
846
847
848
        };
        http()
          .delete(
            "/deleteSchedule",
            confirm("Are you sure you want to Delete this?") && {
8e8d14254   Shikha Mishra   Cleared data whil...
849
              params: deleteSchedule,
0551a0f15   Neeraj Sharma   implemnet functio...
850
851
            }
          )
8e8d14254   Shikha Mishra   Cleared data whil...
852
          .then((response) => {
0551a0f15   Neeraj Sharma   implemnet functio...
853
            this.snackbar = true;
68d742034   Neeraj Sharma   implement new des...
854
855
            this.text = response.data.message;
            this.color = "green";
0551a0f15   Neeraj Sharma   implemnet functio...
856
857
            this.getSchedulesList();
          })
8e8d14254   Shikha Mishra   Cleared data whil...
858
          .catch((error) => {
68d742034   Neeraj Sharma   implement new des...
859
860
861
            this.snackbar = true;
            this.color = "error";
            this.text = error.response.data.message;
0551a0f15   Neeraj Sharma   implemnet functio...
862
863
          });
      },
0551a0f15   Neeraj Sharma   implemnet functio...
864
865
866
      close() {
        this.dialog = false;
      },
0551a0f15   Neeraj Sharma   implemnet functio...
867
      submit() {
0551a0f15   Neeraj Sharma   implemnet functio...
868
        if (this.$refs.form.validate()) {
e0f163768   Neeraj Sharma   fixed valiadtion ...
869
          this.loading = true;
0551a0f15   Neeraj Sharma   implemnet functio...
870
871
          http()
            .post("/createSchedule", this.addSchedule)
8e8d14254   Shikha Mishra   Cleared data whil...
872
            .then((response) => {
fe0d05d29   Neeraj Sharma   complete design a...
873
              this.loading = false;
0551a0f15   Neeraj Sharma   implemnet functio...
874
              this.snackbar = true;
68d742034   Neeraj Sharma   implement new des...
875
              this.text = response.data.message;
e0f163768   Neeraj Sharma   fixed valiadtion ...
876
              this.color = "green";
fc9854ffb   Shikha Mishra   Show list of adde...
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
              http()
                .get("/getSchedulesList", {
                  params: {
                    classId: this.addSchedule.classId,
                    sectionId: this.addSchedule.sectionId,
                  },
                  headers: { Authorization: "Bearer " + this.token },
                })
                .then((response) => {
                  this.ScheduleData = response.data.data;
                  this.showLoader = false;
                })
                .catch((error) => {
                  this.showLoader = false;
                  this.loadingSearch = false;
                  this.snackbar = true;
                  this.color = "error";
                  this.text = error.response.data.message;
                  if (error.response.status === 401) {
                    this.$router.replace({ path: "/" });
                    this.$store.dispatch("setToken", null);
                    this.$store.dispatch("Id", null);
                  }
                });
fe0d05d29   Neeraj Sharma   complete design a...
901
              this.addExamScheduleDialog = false;
fc9854ffb   Shikha Mishra   Show list of adde...
902
              // this.clear();
0551a0f15   Neeraj Sharma   implemnet functio...
903
            })
8e8d14254   Shikha Mishra   Cleared data whil...
904
            .catch((error) => {
e0f163768   Neeraj Sharma   fixed valiadtion ...
905
906
907
908
              this.snackbar = true;
              this.text = error.response.data.message;
              this.color = "red";
              this.loading = false;
0551a0f15   Neeraj Sharma   implemnet functio...
909
910
911
912
913
914
915
916
            });
        }
      },
      clear() {
        this.$refs.form.reset();
        this.disable = false;
        this.loading = false;
      },
e8965626f   Shikha Mishra   set login design ...
917
      update() {
0551a0f15   Neeraj Sharma   implemnet functio...
918
919
920
        this.editedItem.scheduleId = this.editedItem._id;
        http()
          .put("/updateSchedule", this.editedItem)
8e8d14254   Shikha Mishra   Cleared data whil...
921
          .then((response) => {
0551a0f15   Neeraj Sharma   implemnet functio...
922
923
924
            this.snackbar = true;
            this.text = "Successfully Edit Exam Schedule";
            this.color = "green";
fe0d05d29   Neeraj Sharma   complete design a...
925
            this.editExamScheduleDialog = false;
0551a0f15   Neeraj Sharma   implemnet functio...
926
927
928
            this.getSchedulesList();
            this.close();
          })
8e8d14254   Shikha Mishra   Cleared data whil...
929
          .catch((error) => {
0551a0f15   Neeraj Sharma   implemnet functio...
930
            this.snackbar = true;
b039d39fb   Shikha Mishra   Hide Edit functio...
931
932
933
            this.text = error.response.data.messages;
            this.color = "error";
            this.loading = false;
0551a0f15   Neeraj Sharma   implemnet functio...
934
935
936
937
938
          });
      },
      getClass() {
        http()
          .get("/getClassesList", {
8e8d14254   Shikha Mishra   Cleared data whil...
939
            headers: { Authorization: "Bearer " + this.token },
0551a0f15   Neeraj Sharma   implemnet functio...
940
          })
8e8d14254   Shikha Mishra   Cleared data whil...
941
          .then((response) => {
0551a0f15   Neeraj Sharma   implemnet functio...
942
            this.classList = response.data.data;
0551a0f15   Neeraj Sharma   implemnet functio...
943
          })
8e8d14254   Shikha Mishra   Cleared data whil...
944
          .catch((err) => {
0551a0f15   Neeraj Sharma   implemnet functio...
945
946
947
948
            // console.log("err====>", err);
          });
      },
      getSections(_id) {
0551a0f15   Neeraj Sharma   implemnet functio...
949
950
        for (let i = 0; i < this.classList.length; i++) {
          if (_id == this.classList[i]._id) {
0551a0f15   Neeraj Sharma   implemnet functio...
951
952
953
            this.subjects = this.classList[i].subjects;
          }
        }
7014df603   Shikha Mishra   Improve placehold...
954
        this.ScheduleData = [];
0551a0f15   Neeraj Sharma   implemnet functio...
955
956
957
958
959
        http()
          .get(
            "/getSectionsList",
            { params: { classId: _id } },
            {
8e8d14254   Shikha Mishra   Cleared data whil...
960
              headers: { Authorization: "Bearer " + this.token },
0551a0f15   Neeraj Sharma   implemnet functio...
961
962
            }
          )
8e8d14254   Shikha Mishra   Cleared data whil...
963
          .then((response) => {
0551a0f15   Neeraj Sharma   implemnet functio...
964
965
            this.addSection = response.data.data;
          })
8e8d14254   Shikha Mishra   Cleared data whil...
966
          .catch((err) => {});
0551a0f15   Neeraj Sharma   implemnet functio...
967
968
969
970
971
972
      },
      getExamList() {
        this.showLoader = true;
        this.loadingSearch = true;
        http()
          .get("/getExamsList", {
8e8d14254   Shikha Mishra   Cleared data whil...
973
            headers: { Authorization: "Bearer " + this.token },
0551a0f15   Neeraj Sharma   implemnet functio...
974
          })
8e8d14254   Shikha Mishra   Cleared data whil...
975
          .then((response) => {
0551a0f15   Neeraj Sharma   implemnet functio...
976
977
978
979
            this.examList = response.data.data;
            this.showLoader = false;
            this.loadingSearch = false;
          })
8e8d14254   Shikha Mishra   Cleared data whil...
980
          .catch((error) => {
0551a0f15   Neeraj Sharma   implemnet functio...
981
982
983
984
985
986
987
988
989
990
            this.showLoader = false;
            this.loadingSearch = false;
            this.snackbar = true;
            this.text = error.response.data.message;
            if (error.response.status === 401) {
              this.$router.replace({ path: "/" });
              this.$store.dispatch("setToken", null);
              this.$store.dispatch("Id", null);
            }
          });
68d742034   Neeraj Sharma   implement new des...
991
992
993
994
995
996
997
998
      },
      displaySearch() {
        (this.show = false), (this.showSearch = true);
      },
      closeSearch() {
        this.showSearch = false;
        this.show = true;
        this.search = "";
8e8d14254   Shikha Mishra   Cleared data whil...
999
      },
0551a0f15   Neeraj Sharma   implemnet functio...
1000
1001
1002
    },
    mounted() {
      this.token = this.$store.state.token;
0551a0f15   Neeraj Sharma   implemnet functio...
1003
1004
      this.getClass();
      this.getExamList();
710438de6   Shikha Mishra   added teacher mod...
1005
      this.role = this.$store.state.role;
8e8d14254   Shikha Mishra   Cleared data whil...
1006
    },
0551a0f15   Neeraj Sharma   implemnet functio...
1007
  };
68d742034   Neeraj Sharma   implement new des...
1008
  </script>