Blame view

src/pages/Subjects/subjects.vue 14.5 KB
beb598536   Neeraj Sharma   design and functi...
1
2
  <template>
    <v-app id="pages-dasboard">
687e0b929   Neeraj Sharma   add user,attenden...
3
      <v-tabs grow slider-color="gray">
beb598536   Neeraj Sharma   design and functi...
4
5
6
7
8
9
        <v-tab
          ripple
          @click="activeTab('existing')"
          v-bind:class="{ active: isActive }"
          id="tab"
          class="subheading"
46db0a3b5   Neeraj Sharma   add sunbject and ...
10
        >Existing Subjects</v-tab>
beb598536   Neeraj Sharma   design and functi...
11
12
13
14
15
16
17
        <v-tab
          ripple
          @click="activeTab('new')"
          v-bind:class="{ active: newActive }"
          id="tab1"
          User
          class="subheading"
46db0a3b5   Neeraj Sharma   add sunbject and ...
18
        >Add New Subject</v-tab>
beb598536   Neeraj Sharma   design and functi...
19

46db0a3b5   Neeraj Sharma   add sunbject and ...
20
        <!-- ****** EDIT  Subject ****** -->
beb598536   Neeraj Sharma   design and functi...
21
22
23
24
25
26
27
28
29
30
31
32
  
        <v-tab-item>
          <v-snackbar
            :timeout="timeout"
            :top="y === 'top'"
            :right="x === 'right'"
            :vertical="mode === 'vertical'"
            v-model="snackbar"
            color="success"
          >{{ text }}</v-snackbar>
          <v-dialog v-model="dialog" max-width="600px">
            <v-flex xs12 sm12 class>
506be6fd7   Neeraj Sharma   implemet dyamic i...
33
              <v-toolbar color="v-toolbar">
beb598536   Neeraj Sharma   design and functi...
34
                <v-spacer></v-spacer>
46db0a3b5   Neeraj Sharma   add sunbject and ...
35
36
37
                <v-toolbar-title>
                  <h3>Edit Subject</h3>
                </v-toolbar-title>
beb598536   Neeraj Sharma   design and functi...
38
39
40
                <v-spacer></v-spacer>
              </v-toolbar>
              <v-card flat>
beb598536   Neeraj Sharma   design and functi...
41
42
                  <v-container fluid>
                    <v-layout>
46db0a3b5   Neeraj Sharma   add sunbject and ...
43
44
45
46
47
48
49
50
51
52
53
54
55
56
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Class:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-select
                          :items="classList"
                          label="Select Class"
                          v-model="addSubject.selectName"
                          item-text="classNum"
                          item-value="_id"
                          name="Select Class"
                          :rules="nameRules"
                          required
                        ></v-select>
beb598536   Neeraj Sharma   design and functi...
57
58
59
                      </v-flex>
                    </v-layout>
                    <v-layout>
46db0a3b5   Neeraj Sharma   add sunbject and ...
60
61
62
63
64
65
66
67
68
69
70
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Subject:</label>
                      </v-flex>
                      <v-flex xs6 class="ml-3">
                        <v-text-field
                          placeholder="fill your Subject"
                          v-model="editedItem.subjectName"
                          type="text"
                          name="email"
                          required
                        ></v-text-field>
beb598536   Neeraj Sharma   design and functi...
71
72
                      </v-flex>
                    </v-layout>
46db0a3b5   Neeraj Sharma   add sunbject and ...
73
74
75
76
77
78
79
                    <v-flex xs12 sm9 offset-sm2>
                      <v-card-actions>
                        <v-btn round dark @click.native="close">Cancel</v-btn>
                        <v-spacer></v-spacer>
                        <v-btn round dark @click="save">Save</v-btn>
                      </v-card-actions>
                    </v-flex>
beb598536   Neeraj Sharma   design and functi...
80
                  </v-container>
beb598536   Neeraj Sharma   design and functi...
81
82
83
              </v-card>
            </v-flex>
          </v-dialog>
46db0a3b5   Neeraj Sharma   add sunbject and ...
84
          <!-- ****** VIEW PROFIL NOTICE BOARD ******  -->
beb598536   Neeraj Sharma   design and functi...
85
86
  
          <v-dialog v-model="dialog1" max-width="600px">
506be6fd7   Neeraj Sharma   implemet dyamic i...
87
            <v-toolbar color="v-toolbar">
beb598536   Neeraj Sharma   design and functi...
88
              <v-spacer></v-spacer>
46db0a3b5   Neeraj Sharma   add sunbject and ...
89
90
91
              <v-toolbar-title>
                <h3>Subject</h3>
              </v-toolbar-title>
beb598536   Neeraj Sharma   design and functi...
92
93
94
95
              <v-spacer></v-spacer>
              <v-icon @click="close1">close</v-icon>
            </v-toolbar>
            <v-card>
beb598536   Neeraj Sharma   design and functi...
96
97
98
99
              <v-card-text>
                <v-container grid-list-md>
                  <v-layout wrap>
                    <v-flex>
beb598536   Neeraj Sharma   design and functi...
100
                      <v-layout>
aa8fc5033   Neeraj Sharma   implenment all pa...
101
                        <v-flex xs7 sm6>
46db0a3b5   Neeraj Sharma   add sunbject and ...
102
103
104
                          <h5 class="right my-1">
                            <b>Subject Name:</b>
                          </h5>
beb598536   Neeraj Sharma   design and functi...
105
                        </v-flex>
aa8fc5033   Neeraj Sharma   implenment all pa...
106
                        <v-flex sm6 xs5>
46db0a3b5   Neeraj Sharma   add sunbject and ...
107
                          <h5 class="my-1">{{ editedItem.subjectName }}</h5>
beb598536   Neeraj Sharma   design and functi...
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
                        </v-flex>
                      </v-layout>
                    </v-flex>
                  </v-layout>
                </v-container>
              </v-card-text>
            </v-card>
          </v-dialog>
  
          <v-snackbar
            :timeout="timeout"
            :top="y === 'top'"
            :right="x === 'right'"
            :vertical="mode === 'vertical'"
            v-model="snackbar"
            color="success"
          >{{ text }}</v-snackbar>
46db0a3b5   Neeraj Sharma   add sunbject and ...
125
126
127
128
          <!-- ****** EXISTING SUBJECTS TABLE ****** -->
          <v-card flat>
            <v-card-actions>
              <v-layout>
aa8fc5033   Neeraj Sharma   implenment all pa...
129
                <v-flex xs4 sm1>
46db0a3b5   Neeraj Sharma   add sunbject and ...
130
131
                  <label class="right mt-4">Select Class:</label>
                </v-flex>
aa8fc5033   Neeraj Sharma   implenment all pa...
132
                <v-flex xs8 sm3 >
46db0a3b5   Neeraj Sharma   add sunbject and ...
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
                  <v-select
                    :items="classList"
                    label="Select Class"
                    v-model="addSubject.selectName"
                    item-text="classNum"
                    item-value="_id"
                    name="Select Class"
                    :rules="nameRules"
                    @change="getClassSubject(addSubject.selectName)"
                    class="px-4"
                    required
                  ></v-select>
                </v-flex>
              </v-layout>
            </v-card-actions>
          </v-card>
beb598536   Neeraj Sharma   design and functi...
149
150
          <v-data-table
            :headers="headers"
46db0a3b5   Neeraj Sharma   add sunbject and ...
151
            :items="subjectList.subjects"
beb598536   Neeraj Sharma   design and functi...
152
153
154
155
            :pagination.sync="pagination"
            :search="search"
          >
            <template slot="items" slot-scope="props">
687e0b929   Neeraj Sharma   add user,attenden...
156
              <td id="td" class="text-xs-center">{{ props.index  + 1}}</td>
46db0a3b5   Neeraj Sharma   add sunbject and ...
157
              <td id="td" class="text-xs-center">{{ props.item.subjectName}}</td>
beb598536   Neeraj Sharma   design and functi...
158
159
160
161
162
163
164
165
  
              <td class="text-xs-center">
                <span>
                  <img
                    style="cursor:pointer; width:25px; height:18px; "
                    class="mr-5"
                    @click="profile(props.item)"
                    src="/static/icon/eye1.png"
46db0a3b5   Neeraj Sharma   add sunbject and ...
166
                  />
beb598536   Neeraj Sharma   design and functi...
167
168
169
170
171
                  <img
                    style="cursor:pointer; width:20px; height:18px; "
                    class="mr-5"
                    @click="editItem(props.item)"
                    src="/static/icon/edit1.png"
46db0a3b5   Neeraj Sharma   add sunbject and ...
172
                  />
beb598536   Neeraj Sharma   design and functi...
173
                  <img
b39d2afd2   Neeraj Sharma   responsive dashboard
174
                    style="cursor:pointer;width:20px; height:20px; "
beb598536   Neeraj Sharma   design and functi...
175
176
177
                    class="mr-5"
                    @click="deleteItem(props.item)"
                    src="/static/icon/delete1.png"
46db0a3b5   Neeraj Sharma   add sunbject and ...
178
                  />
beb598536   Neeraj Sharma   design and functi...
179
180
181
182
183
184
185
186
187
188
189
                </span>
              </td>
            </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-tab-item>
46db0a3b5   Neeraj Sharma   add sunbject and ...
190
        <!-- ****** ADD MULTIPLE Subject ****** -->
beb598536   Neeraj Sharma   design and functi...
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
  
        <v-tab-item>
          <v-container>
            <v-snackbar
              :timeout="timeout"
              :top="y === 'top'"
              :right="x === 'right'"
              :vertical="mode === 'vertical'"
              v-model="snackbar"
              color="success"
            >{{ text }}</v-snackbar>
            <v-flex xs12 sm8 offset-sm2 class="top">
              <v-card flat>
                <v-container fluid fill-height>
                  <v-layout align-center>
                    <v-flex xs12>
                      <v-form ref="form" v-model="valid" lazy-validation>
                        <v-layout>
aa8fc5033   Neeraj Sharma   implenment all pa...
209
                          <v-flex xs4 sm4 class="pt-4 subheading">
46db0a3b5   Neeraj Sharma   add sunbject and ...
210
                            <label class="right">Class:</label>
beb598536   Neeraj Sharma   design and functi...
211
                          </v-flex>
aa8fc5033   Neeraj Sharma   implenment all pa...
212
                          <v-flex xs8 sm6 class="ml-3">
ebe04cc1d   Neeraj Sharma   solve issue uploa...
213
                            <v-select
46db0a3b5   Neeraj Sharma   add sunbject and ...
214
                              v-model="addSubject.classId"
ebe04cc1d   Neeraj Sharma   solve issue uploa...
215
                              label="Select your class"
beb598536   Neeraj Sharma   design and functi...
216
                              type="text"
46db0a3b5   Neeraj Sharma   add sunbject and ...
217
218
219
220
                              :items="classList"
                              item-text="classNum"
                              item-value="_id"
                              :rules="nameRules"
beb598536   Neeraj Sharma   design and functi...
221
                              required
ebe04cc1d   Neeraj Sharma   solve issue uploa...
222
                            ></v-select>
beb598536   Neeraj Sharma   design and functi...
223
224
                          </v-flex>
                        </v-layout>
46db0a3b5   Neeraj Sharma   add sunbject and ...
225
                        <v-layout>
aa8fc5033   Neeraj Sharma   implenment all pa...
226
                          <v-flex xs4 sm4 class="pt-4 subheading">
46db0a3b5   Neeraj Sharma   add sunbject and ...
227
                            <label class="right">Subject:</label>
beb598536   Neeraj Sharma   design and functi...
228
                          </v-flex>
aa8fc5033   Neeraj Sharma   implenment all pa...
229
                          <v-flex xs8 sm6 class="ml-3">
beb598536   Neeraj Sharma   design and functi...
230
                            <v-text-field
46db0a3b5   Neeraj Sharma   add sunbject and ...
231
                              v-model="addSubject.subjectName"
51e4f3e16   Neeraj Sharma   add sunbject and ...
232
                              placeholder="fill your Subject Name"
beb598536   Neeraj Sharma   design and functi...
233
234
                              name="name"
                              type="text"
46db0a3b5   Neeraj Sharma   add sunbject and ...
235
                              :rules="subjectRules"
beb598536   Neeraj Sharma   design and functi...
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
                              required
                            ></v-text-field>
                          </v-flex>
                        </v-layout>
                        <v-layout>
                          <v-flex xs12 sm9 offset-sm2>
                            <v-card-actions>
                              <v-btn @click="clear" round dark>clear</v-btn>
                              <v-spacer></v-spacer>
                              <v-btn @click="submit" round dark :loading="loading">Add</v-btn>
                            </v-card-actions>
                          </v-flex>
                        </v-layout>
                      </v-form>
                    </v-flex>
                  </v-layout>
                </v-container>
              </v-card>
            </v-flex>
          </v-container>
        </v-tab-item>
      </v-tabs>
36fc987df   Neeraj Sharma   add loader in all...
258
259
260
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
beb598536   Neeraj Sharma   design and functi...
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
    </v-app>
  </template>
  
  <script>
  import http from "@/Services/http.js";
  import Util from "@/util";
  
  export default {
    data: () => ({
      snackbar: false,
      y: "top",
      x: "right",
      mode: "",
      timeout: 3000,
      text: "",
fc82ac667   Neeraj Sharma   fix design and re...
276
      showLoader: false,
beb598536   Neeraj Sharma   design and functi...
277
278
279
      loading: false,
      date: null,
      search: "",
beb598536   Neeraj Sharma   design and functi...
280
281
282
283
284
      dialog: false,
      dialog1: false,
      valid: true,
      isActive: true,
      newActive: false,
beb598536   Neeraj Sharma   design and functi...
285
      gender: ["Male", "Female"],
beb598536   Neeraj Sharma   design and functi...
286
      pagination: {
2b0e316ee   Neeraj Sharma   upload mytiple im...
287
        rowsPerPage: 19
beb598536   Neeraj Sharma   design and functi...
288
      },
46db0a3b5   Neeraj Sharma   add sunbject and ...
289
290
291
      token: "",
      nameRules: [v => !!v || " Class Name is required"],
      subjectRules: [v => !!v || " Subject Name is required"],
beb598536   Neeraj Sharma   design and functi...
292
293
294
295
296
297
298
      headers: [
        {
          text: "No",
          align: "center",
          sortable: false,
          value: "No"
        },
fc82ac667   Neeraj Sharma   fix design and re...
299
        {
46db0a3b5   Neeraj Sharma   add sunbject and ...
300
301
          text: "Subject Name",
          value: "subjectName",
fc82ac667   Neeraj Sharma   fix design and re...
302
303
304
          sortable: false,
          align: "center"
        },
beb598536   Neeraj Sharma   design and functi...
305
306
        { text: "Action", value: "", sortable: false, align: "center" }
      ],
46db0a3b5   Neeraj Sharma   add sunbject and ...
307
308
      subjectList: [],
      classList: [],
beb598536   Neeraj Sharma   design and functi...
309
      editedIndex: -1,
46db0a3b5   Neeraj Sharma   add sunbject and ...
310
311
      addSubject: {},
      selectClassId: "",
beb598536   Neeraj Sharma   design and functi...
312
      editedItem: {
46db0a3b5   Neeraj Sharma   add sunbject and ...
313
        subjectName: ""
a17c68a03   Neeraj Sharma   implement two rou...
314
      }
beb598536   Neeraj Sharma   design and functi...
315
    }),
beb598536   Neeraj Sharma   design and functi...
316
317
318
319
    methods: {
      pickFile() {
        this.$refs.image.click();
      },
beb598536   Neeraj Sharma   design and functi...
320
      editItem(item) {
beb598536   Neeraj Sharma   design and functi...
321
        this.editedItem = Object.assign({}, item);
46db0a3b5   Neeraj Sharma   add sunbject and ...
322
        console.log("this.editedItem._id", this.editedItem._id);
beb598536   Neeraj Sharma   design and functi...
323
324
325
        this.dialog = true;
      },
      profile(item) {
beb598536   Neeraj Sharma   design and functi...
326
327
328
329
        this.editedItem = Object.assign({}, item);
        this.dialog1 = true;
      },
      deleteItem(item) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
330
331
332
        let deleteSubject = {
          classId: this.addSubject.selectName,
          subjectId: item._id
beb598536   Neeraj Sharma   design and functi...
333
334
335
        };
        http()
          .delete(
46db0a3b5   Neeraj Sharma   add sunbject and ...
336
            "/deleteSubject",
beb598536   Neeraj Sharma   design and functi...
337
            confirm("Are you sure you want to delete this?") && {
46db0a3b5   Neeraj Sharma   add sunbject and ...
338
              params: deleteSubject
beb598536   Neeraj Sharma   design and functi...
339
340
341
            }
          )
          .then(response => {
beb598536   Neeraj Sharma   design and functi...
342
            if ((this.snackbar = true)) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
343
              this.text = "Successfully delete Existing Subject";
beb598536   Neeraj Sharma   design and functi...
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
            }
            this.getEventList();
          })
          .catch(error => {
            // console.log(error);
          });
      },
      activeTab(type) {
        switch (type) {
          case "existing":
            this.newActive = false;
            this.isActive = true;
            break;
  
          default:
            this.newActive = true;
            this.isActive = false;
            break;
        }
      },
      close() {
        this.dialog = false;
        setTimeout(() => {
          this.editedItem = Object.assign({}, this.defaultItem);
          this.editedIndex = -1;
        }, 300);
      },
      close1() {
        this.dialog1 = false;
      },
      submit() {
        if (this.$refs.form.validate()) {
beb598536   Neeraj Sharma   design and functi...
376
          http()
46db0a3b5   Neeraj Sharma   add sunbject and ...
377
            .post("/addSubject", this.addSubject)
beb598536   Neeraj Sharma   design and functi...
378
            .then(response => {
beb598536   Neeraj Sharma   design and functi...
379
              if ((this.snackbar = true)) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
380
                this.text = "New Subject added successfully";
beb598536   Neeraj Sharma   design and functi...
381
              }
beb598536   Neeraj Sharma   design and functi...
382
383
384
385
386
387
388
389
390
391
              this.clear();
            })
            .catch(error => {
              // console.log(error);
              if ((this.snackbar = true)) {
                this.text = error.response.data.message;
              }
            });
        }
      },
beb598536   Neeraj Sharma   design and functi...
392
393
394
395
      clear() {
        this.$refs.form.reset();
      },
      save() {
46db0a3b5   Neeraj Sharma   add sunbject and ...
396
397
398
399
        let editSubject = {
          classId: this.addSubject.selectName,
          subjectId: this.editedItem._id,
          subjectName: this.editedItem.subjectName
beb598536   Neeraj Sharma   design and functi...
400
401
        };
        http()
46db0a3b5   Neeraj Sharma   add sunbject and ...
402
          .put("/updateSubject", editSubject)
beb598536   Neeraj Sharma   design and functi...
403
404
405
          .then(response => {
            // console.log("editEvent",editEvent);
            if ((this.snackbar = true)) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
406
              this.text = "Successfully Edit Existing Subject";
beb598536   Neeraj Sharma   design and functi...
407
            }
46db0a3b5   Neeraj Sharma   add sunbject and ...
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
            //   this.getClassSubject();
            http()
              .get(
                "/getParticularClass",
                { params: { classId: this.selectClassId } },
                {
                  headers: { Authorization: "Bearer " + this.token }
                }
              )
              .then(response => {
                this.subjectList = response.data.data;
              })
              .catch(err => {
                console.log("err====>", err);
              });
beb598536   Neeraj Sharma   design and functi...
423
424
425
426
427
428
          })
          .catch(error => {
            // console.log(error);
          });
        this.close();
      },
46db0a3b5   Neeraj Sharma   add sunbject and ...
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
      getClassSubject(id) {
        this.selectClassId = id;
        http()
          .get(
            "/getParticularClass",
            { params: { classId: this.selectClassId } },
            {
              headers: { Authorization: "Bearer " + this.token }
            }
          )
          .then(response => {
            this.subjectList = response.data.data;
          })
          .catch(err => {
            console.log("err====>", err);
          });
      },
      getClass() {
        http()
          .get("/getClassesList", {
            headers: { Authorization: "Bearer " + this.token }
          })
          .then(response => {
            this.classList = response.data.data;
          })
          .catch(err => {
            // console.log("err====>", err);
a17c68a03   Neeraj Sharma   implement two rou...
456
457
458
459
460
            if (error.response.status === 401) {
              this.$router.replace({ path: "/" });
              this.$store.dispatch("setToken", null);
              this.$store.dispatch("Id", null);
            }
46db0a3b5   Neeraj Sharma   add sunbject and ...
461
          });
beb598536   Neeraj Sharma   design and functi...
462
463
464
      }
    },
    mounted() {
46db0a3b5   Neeraj Sharma   add sunbject and ...
465
466
467
      this.token = this.$store.state.token;
      // this.getNoticeDataList();
      this.getClass();
beb598536   Neeraj Sharma   design and functi...
468
    },
a17c68a03   Neeraj Sharma   implement two rou...
469
470
471
472
473
474
475
476
    created() {
      this.$root.$on("app:search", search => {
        this.search = search;
      });
    },
    beforeDestroy() {
      // dont forget to remove the listener
      this.$root.$off("app:search");
beb598536   Neeraj Sharma   design and functi...
477
478
479
480
    }
  };
  </script>
  <style scoped>
beb598536   Neeraj Sharma   design and functi...
481
  .active {
687e0b929   Neeraj Sharma   add user,attenden...
482
    background-color: gray;
beb598536   Neeraj Sharma   design and functi...
483
484
485
486
487
    color: white !important;
  }
  .activebtn {
    color: black !important;
  }
beb598536   Neeraj Sharma   design and functi...
488
  </style>