Blame view

src/pages/Course/enrollStudents.vue 12.1 KB
229463bd5   Neeraj Sharma   implement design ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <template>
    <v-container fluid class="body-color">
      <!-- ****** STUDENTS TABLE ****** -->
      <v-toolbar color="transparent" flat>
        <v-spacer></v-spacer>
        <v-flex xs12 sm4 md2>
          <v-select
            small
            :items="addclass"
            label="Select Class"
            v-model="getReport.classId"
            item-text="classNum"
            item-value="_id"
            name="Select Class"
            @change="getCourses(getReport.classId)"
            class="mr-2"
            required
          ></v-select>
        </v-flex>
        <v-flex xs12 sm4 md2>
          <v-select
            :items="courseData"
            label="Select Course"
            v-model="getReport.courseId"
0a5256600   Amber Dev   added events
25
            item-text="courseName"
229463bd5   Neeraj Sharma   implement design ...
26
27
28
29
30
31
32
33
34
35
36
37
38
            item-value="_id"
            required
            class="ml-2"
            @change="getStudentTable(getReport.courseId)"
          ></v-select>
        </v-flex>
        <v-card-title class="body-1" v-show="show">
          <v-btn icon large flat @click="displaySearch">
            <v-avatar size="27">
              <img src="/static/icon/search.png" alt="icon" />
            </v-avatar>
          </v-btn>
        </v-card-title>
612b79bb4   Amber Dev   made serch auto f...
39
        <v-flex xs8 sm8 md3 lg2 v-if="showSearch">
229463bd5   Neeraj Sharma   implement design ...
40
          <v-layout>
612b79bb4   Amber Dev   made serch auto f...
41
            <v-text-field autofocus v-model="search" label="Search" prepend-inner-icon="search" color="primary"></v-text-field>
229463bd5   Neeraj Sharma   implement design ...
42
43
44
45
46
47
48
49
50
51
52
            <v-icon @click="closeSearch" color="error">close</v-icon>
          </v-layout>
        </v-flex>
      </v-toolbar>
      <v-data-table
        :headers="headers"
        :items="studentsData"
        :pagination.sync="pagination"
        :search="search"
        select-all
        v-model="selected"
b0f5f6684   Shikha Mishra   Conditionally sho...
53
        item-key="_id"
229463bd5   Neeraj Sharma   implement design ...
54
55
56
57
58
      >
        <template slot="items" slot-scope="props">
          <tr class="tr" :active="props.selected" @click="props.selected = !props.selected">
            <td class="text-xs-center td td-row">
              <v-checkbox
6ef520020   Neeraj Sharma   implement all fun...
59
60
                v-model="props.item.enroll"
                @change="selectParticularStudent(props.item)"
229463bd5   Neeraj Sharma   implement design ...
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
                primary
                hide-details
              ></v-checkbox>
            </td>
            <td class="text-xs-center td td-row">
              <v-avatar size="40">
                <img :src="props.item.profilePicUrl" v-if="props.item.profilePicUrl" />
                <img src="/static/icon/user.png" v-else-if="!props.item.profilePicUrl" />
              </v-avatar>
            </td>
            <td class="text-xs-center td td-row">{{ props.item.name}}</td>
            <td class="text-xs-center td td-row">{{ props.item.fatherCellNo}}</td>
            <td class="text-xs-center td td-row">{{ props.item.email }}</td>
          </tr>
        </template>
        <template slot="headers" slot-scope="props">
          <tr>
            <th>
              <v-checkbox
                :input-value="props.all"
                :indeterminate="props.indeterminate"
                primary
                hide-details
                @click.native="toggleAll"
              ></v-checkbox>
            </th>
            <th
              v-for="header in props.headers"
              :key="header.text"
              :class="['column sortable', pagination.descending ? 'desc' : 'asc', header.value === pagination.sortBy ? 'active' : '']"
              @click="changeSort(header.value)"
            >
              <v-icon small>arrow_upward</v-icon>
              {{ header.text }}
            </th>
          </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>
      <v-snackbar
        :timeout="timeout"
        :top="y === 'top'"
        :right="x === 'right'"
        :vertical="mode === 'vertical'"
        v-model="snackbar"
        color="success"
      >{{ text }}</v-snackbar>
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
    </v-container>
  </template>
  
  <script>
  import http from "@/Services/http.js";
  import moment from "moment";
  
  export default {
    data: () => ({
      snackbar: false,
      y: "top",
      x: "right",
      mode: "",
      timeout: 3000,
      text: "",
      show: true,
      showSearch: false,
      showLoader: false,
      loading: false,
      date: null,
      search: "",
      addclass: [],
      pagination: {
b0e0491ab   Shikha Mishra   solve the issue o...
139
        rowsPerPage: 10,
229463bd5   Neeraj Sharma   implement design ...
140
141
142
143
144
145
      },
      headers: [
        {
          text: "Profile Pic",
          value: "profilprofilePicUrlePicUrl",
          sortable: false,
b0e0491ab   Shikha Mishra   solve the issue o...
146
          align: "center",
229463bd5   Neeraj Sharma   implement design ...
147
148
149
150
151
152
        },
        { text: "Name", value: "name", sortable: false, align: "center" },
        {
          text: "Mobile No",
          value: "fatherCellNo",
          sortable: false,
b0e0491ab   Shikha Mishra   solve the issue o...
153
          align: "center",
229463bd5   Neeraj Sharma   implement design ...
154
        },
b0e0491ab   Shikha Mishra   solve the issue o...
155
        { text: "Email", value: "email", sortable: false, align: "center" },
229463bd5   Neeraj Sharma   implement design ...
156
157
158
159
160
        // { text: "Action", value: "", sortable: false, align: "center" }
      ],
      token: "",
      selectStudents: {
        select: "",
b0e0491ab   Shikha Mishra   solve the issue o...
161
        selectSection: "",
229463bd5   Neeraj Sharma   implement design ...
162
163
164
165
166
167
168
169
170
171
172
      },
  
      role: "",
      schoolRole: "",
      menu: false,
      valid: true,
  
      getReport: {},
      studentsData: [],
      courseData: [],
      addSection: [],
b0e0491ab   Shikha Mishra   solve the issue o...
173
      selected: [],
229463bd5   Neeraj Sharma   implement design ...
174
175
176
177
178
179
180
181
    }),
    methods: {
      save(date) {
        this.$refs.menu.save(date);
      },
      getAllClass() {
        http()
          .get("/getClassesList", {
b0e0491ab   Shikha Mishra   solve the issue o...
182
            headers: { Authorization: "Bearer " + this.token },
229463bd5   Neeraj Sharma   implement design ...
183
          })
b0e0491ab   Shikha Mishra   solve the issue o...
184
          .then((response) => {
229463bd5   Neeraj Sharma   implement design ...
185
186
            this.addclass = response.data.data;
          })
b0e0491ab   Shikha Mishra   solve the issue o...
187
          .catch((error) => {
229463bd5   Neeraj Sharma   implement design ...
188
189
190
191
192
193
194
195
196
            // console.log("err====>", err);
            // this.$router.replace({ path: "/" });
          });
      },
      getCourses(classId) {
        this.showLoader = true;
        http()
          .get("/getCourseesList", {
            params: {
b0e0491ab   Shikha Mishra   solve the issue o...
197
198
              classId: classId,
            },
229463bd5   Neeraj Sharma   implement design ...
199
          })
b0e0491ab   Shikha Mishra   solve the issue o...
200
          .then((response) => {
229463bd5   Neeraj Sharma   implement design ...
201
202
203
            this.courseData = response.data.data;
            this.showLoader = false;
          })
b0e0491ab   Shikha Mishra   solve the issue o...
204
          .catch((err) => {
229463bd5   Neeraj Sharma   implement design ...
205
206
207
208
209
210
211
212
213
            console.log("err====>", err);
            this.showLoader = false;
          });
      },
      getStudents() {
        this.showLoader = true;
        http()
          .get("/getStudentsList", {
            params: {
b0e0491ab   Shikha Mishra   solve the issue o...
214
215
              classId: this.getReport.classId,
            },
229463bd5   Neeraj Sharma   implement design ...
216
          })
b0e0491ab   Shikha Mishra   solve the issue o...
217
          .then((response) => {
229463bd5   Neeraj Sharma   implement design ...
218
219
220
221
222
223
224
            this.studentsData = response.data.data;
            this.showLoader = false;
            // this.addStudentAttendenceDialog = false;
            var attendence = "";
            for (let i = 0; i < this.studentsData.length; i++) {
              this.studentsData[i].attendence = true;
            }
6ef520020   Neeraj Sharma   implement all fun...
225
            this.getParticularCourse();
229463bd5   Neeraj Sharma   implement design ...
226
          })
b0e0491ab   Shikha Mishra   solve the issue o...
227
          .catch((error) => {
229463bd5   Neeraj Sharma   implement design ...
228
229
230
231
232
            console.log("err====>", error);
            this.showLoader = false;
          });
      },
      getStudentTable(id) {
6ef520020   Neeraj Sharma   implement all fun...
233
        // console.log("id", this.getReport.courseId);
229463bd5   Neeraj Sharma   implement design ...
234
235
236
237
238
239
240
        this.getStudents();
      },
      update() {
        var studentsAttendence = [];
        for (var j = 0; j < this.studentsData.length; j++) {
          studentsAttendence.push({
            studentId: this.studentsData[j]._id,
b0e0491ab   Shikha Mishra   solve the issue o...
241
            isPresent: this.studentsData[j].attendence,
229463bd5   Neeraj Sharma   implement design ...
242
243
244
245
246
247
          });
        }
        if (this.$refs.form.validate()) {
          let attendanceData = {
            sectionId: this.getReport.sectionId,
            date: this.date,
b0e0491ab   Shikha Mishra   solve the issue o...
248
            students: studentsAttendence,
229463bd5   Neeraj Sharma   implement design ...
249
250
251
          };
          http()
            .put("/updateAttendance", attendanceData)
b0e0491ab   Shikha Mishra   solve the issue o...
252
            .then((response) => {
229463bd5   Neeraj Sharma   implement design ...
253
254
255
256
              this.snackbar = true;
              this.text = response.data.message;
              this.addStudentAttendenceDialog = false;
            })
b0e0491ab   Shikha Mishra   solve the issue o...
257
            .catch((error) => {
229463bd5   Neeraj Sharma   implement design ...
258
259
260
261
262
263
              this.snackbar = true;
              this.text = error.response.data.message;
            });
        }
      },
      toggleAll() {
b0f5f6684   Shikha Mishra   Conditionally sho...
264
265
266
267
268
269
        let withdraw = false;
        if (this.selected.length === this.studentsData.length) withdraw = true;
  
        if (withdraw) {
          var payload = {
            courseId: this.getReport.courseId,
b0e0491ab   Shikha Mishra   solve the issue o...
270
            enrollStudents: [],
b0f5f6684   Shikha Mishra   Conditionally sho...
271
272
273
          };
          http()
            .put("/enrollStudents", payload)
b0e0491ab   Shikha Mishra   solve the issue o...
274
            .then((response) => {
b0f5f6684   Shikha Mishra   Conditionally sho...
275
276
277
278
279
280
281
282
              this.snackbar = true;
              this.text = response.data.message;
              this.selected = [];
              for (let i = 0; i < this.studentsData.length; i++) {
                this.studentsData[i].enroll = false;
              }
              this.getParticularCourse();
            })
b0e0491ab   Shikha Mishra   solve the issue o...
283
            .catch((error) => {
b0f5f6684   Shikha Mishra   Conditionally sho...
284
285
286
287
288
289
              this.snackbar = true;
              this.text = error.response.data.message;
            });
        } else {
          let selectedStudentsArray = [];
          for (let item of this.studentsData) {
b0e0491ab   Shikha Mishra   solve the issue o...
290
            if (item.enroll === false || !item.enroll) {
b0f5f6684   Shikha Mishra   Conditionally sho...
291
292
293
294
295
296
              selectedStudentsArray.push({ studentId: item._id });
            }
          }
  
          var payload = {
            courseId: this.getReport.courseId,
b0e0491ab   Shikha Mishra   solve the issue o...
297
            enrollStudents: selectedStudentsArray,
b0f5f6684   Shikha Mishra   Conditionally sho...
298
299
300
          };
          http()
            .put("/enrollStudents", payload)
b0e0491ab   Shikha Mishra   solve the issue o...
301
            .then((response) => {
b0f5f6684   Shikha Mishra   Conditionally sho...
302
303
304
305
306
307
308
              this.snackbar = true;
              this.text = response.data.message;
              for (let i = 0; i < this.studentsData.length; i++) {
                this.studentsData[i].enroll = true;
              }
              this.getParticularCourse();
            })
b0e0491ab   Shikha Mishra   solve the issue o...
309
            .catch((error) => {
b0f5f6684   Shikha Mishra   Conditionally sho...
310
311
312
              this.snackbar = true;
              this.text = error.response.data.message;
            });
6ef520020   Neeraj Sharma   implement all fun...
313
        }
229463bd5   Neeraj Sharma   implement design ...
314
      },
b0f5f6684   Shikha Mishra   Conditionally sho...
315

229463bd5   Neeraj Sharma   implement design ...
316
      selectParticularStudent(selected) {
229463bd5   Neeraj Sharma   implement design ...
317
        let selectedStudentsArray = [];
6ef520020   Neeraj Sharma   implement all fun...
318
        selectedStudentsArray.push({ studentId: selected._id });
b0f5f6684   Shikha Mishra   Conditionally sho...
319
320
  
        let isExists = false;
b0e0491ab   Shikha Mishra   solve the issue o...
321
322
        for (let item of this.selected) {
          if (item._id === selected._id) {
b0f5f6684   Shikha Mishra   Conditionally sho...
323
324
325
326
            isExists = true;
            break;
          }
        }
dea4d2889   Neeraj Sharma   task commited
327
        if (selected.enroll === true) {
b0f5f6684   Shikha Mishra   Conditionally sho...
328
          if (!isExists) this.selected.push(selected);
6ef520020   Neeraj Sharma   implement all fun...
329
330
          var payload = {
            courseId: this.getReport.courseId,
b0e0491ab   Shikha Mishra   solve the issue o...
331
            enrollStudents: selectedStudentsArray,
6ef520020   Neeraj Sharma   implement all fun...
332
333
334
          };
          http()
            .put("/enrollStudents", payload)
b0e0491ab   Shikha Mishra   solve the issue o...
335
            .then((response) => {
6ef520020   Neeraj Sharma   implement all fun...
336
337
              this.snackbar = true;
              this.text = response.data.message;
dea4d2889   Neeraj Sharma   task commited
338
              this.getParticularCourse();
6ef520020   Neeraj Sharma   implement all fun...
339
            })
b0e0491ab   Shikha Mishra   solve the issue o...
340
            .catch((error) => {
6ef520020   Neeraj Sharma   implement all fun...
341
342
343
344
345
346
347
348
349
350
351
              this.snackbar = true;
              this.text = error.response.data.message;
            });
        }
        if (
          selected.enroll == false &&
          selected.enroll != undefined &&
          selected.enroll != null
        ) {
          var payloadDeleteStudents = {
            courseId: this.getReport.courseId,
b0e0491ab   Shikha Mishra   solve the issue o...
352
            enrollStudentsId: selected.enrollId,
6ef520020   Neeraj Sharma   implement all fun...
353
354
355
          };
          http()
            .put("/deleteStudents", payloadDeleteStudents)
b0e0491ab   Shikha Mishra   solve the issue o...
356
            .then((response) => {
6ef520020   Neeraj Sharma   implement all fun...
357
358
              this.snackbar = true;
              this.text = response.data.message;
dea4d2889   Neeraj Sharma   task commited
359
              this.getParticularCourse();
6ef520020   Neeraj Sharma   implement all fun...
360
            })
b0e0491ab   Shikha Mishra   solve the issue o...
361
            .catch((error) => {
6ef520020   Neeraj Sharma   implement all fun...
362
363
364
365
              this.snackbar = true;
              this.text = error.response.data.message;
            });
        }
229463bd5   Neeraj Sharma   implement design ...
366
      },
11d037abe   Neeraj Sharma   commit code
367
      getParticularCourse() {
b0f5f6684   Shikha Mishra   Conditionally sho...
368
        this.selected = [];
11d037abe   Neeraj Sharma   commit code
369
        var payload = {
b0e0491ab   Shikha Mishra   solve the issue o...
370
          courseId: this.getReport.courseId,
11d037abe   Neeraj Sharma   commit code
371
372
373
        };
        http()
          .get("/getParticularCourse", {
b0e0491ab   Shikha Mishra   solve the issue o...
374
            params: payload,
11d037abe   Neeraj Sharma   commit code
375
          })
b0e0491ab   Shikha Mishra   solve the issue o...
376
          .then((response) => {
6ef520020   Neeraj Sharma   implement all fun...
377
378
379
380
381
            for (let i = 0; i < response.data.data.enrollStudents.length; i++) {
              var studentId = {};
              studentId = response.data.data.enrollStudents[i];
              for (let j = 0; j < this.studentsData.length; j++) {
                if (studentId.studentId == this.studentsData[j]._id) {
6ef520020   Neeraj Sharma   implement all fun...
382
383
                  this.studentsData[j].enroll = true;
                  this.studentsData[j].enrollId = studentId._id;
b0f5f6684   Shikha Mishra   Conditionally sho...
384
385
                  this.selected.push(this.studentsData[j]);
                  break;
6ef520020   Neeraj Sharma   implement all fun...
386
387
388
                }
              }
            }
11d037abe   Neeraj Sharma   commit code
389
390
391
            this.snackbar = true;
            this.text = response.data.message;
          })
b0e0491ab   Shikha Mishra   solve the issue o...
392
          .catch((error) => {
11d037abe   Neeraj Sharma   commit code
393
394
395
396
            this.snackbar = true;
            this.text = error.response.data.message;
          });
      },
229463bd5   Neeraj Sharma   implement design ...
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
      changeSort(column) {
        if (this.pagination.sortBy === column) {
          this.pagination.descending = !this.pagination.descending;
        } else {
          this.pagination.sortBy = column;
          this.pagination.descending = false;
        }
      },
      displaySearch() {
        this.show = false;
        this.showSearch = true;
      },
      closeSearch() {
        this.showSearch = false;
        this.show = true;
        this.search = "";
b0e0491ab   Shikha Mishra   solve the issue o...
413
      },
229463bd5   Neeraj Sharma   implement design ...
414
415
416
417
418
419
    },
    mounted() {
      // this.getStudentList();
      this.token = this.$store.state.token;
      this.role = this.$store.state.role;
      this.getAllClass();
b0e0491ab   Shikha Mishra   solve the issue o...
420
    },
229463bd5   Neeraj Sharma   implement design ...
421
422
  };
  </script>