Blame view

src/pages/Subjects/subjects.vue 14.8 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>
495e4037c   Neeraj Sharma   update
41
42
43
44
                <v-container fluid>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Class:</label>
46db0a3b5   Neeraj Sharma   add sunbject and ...
45
                    </v-flex>
495e4037c   Neeraj Sharma   update
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
                    <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>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <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>
                    </v-flex>
                  </v-layout>
                  <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>
                </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>
79583580d   Neeraj Sharma   implement task ma...
129
                <v-flex xs4 sm2 lg1>
46db0a3b5   Neeraj Sharma   add sunbject and ...
130
131
                  <label class="right mt-4">Select Class:</label>
                </v-flex>
79583580d   Neeraj Sharma   implement task ma...
132
                <v-flex xs8 sm4 lg3>
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">
495e4037c   Neeraj Sharma   update
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
  
              <td class="text-xs-center">
                <span>
495e4037c   Neeraj Sharma   update
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
                  <v-tooltip top>
                    <img
                      slot="activator"
                      style="cursor:pointer; width:25px; height:18px; "
                      class="mr5"
                      @click="profile(props.item)"
                      src="/static/icon/eye1.png"
                    />
                    <span>View</span>
                  </v-tooltip>
                  <v-tooltip top>
                    <img
                      slot="activator"
                      style="cursor:pointer; width:20px; height:18px; "
                      class="mr5"
                      @click="editItem(props.item)"
                      src="/static/icon/edit1.png"
                    />
                    <span>Edit</span>
                  </v-tooltip>
                  <v-tooltip top>
                    <img
                      slot="activator"
                      style="cursor:pointer; width:20px; height:20px; "
                      class="mr5"
                      @click="deleteItem(props.item)"
                      src="/static/icon/delete1.png"
                    />
                    <span>Delete</span>
                  </v-tooltip>
beb598536   Neeraj Sharma   design and functi...
191
192
193
194
195
196
197
198
199
200
201
                </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 ...
202
        <!-- ****** ADD MULTIPLE Subject ****** -->
beb598536   Neeraj Sharma   design and functi...
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
  
        <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...
221
                          <v-flex xs4 sm4 class="pt-4 subheading">
46db0a3b5   Neeraj Sharma   add sunbject and ...
222
                            <label class="right">Class:</label>
beb598536   Neeraj Sharma   design and functi...
223
                          </v-flex>
aa8fc5033   Neeraj Sharma   implenment all pa...
224
                          <v-flex xs8 sm6 class="ml-3">
ebe04cc1d   Neeraj Sharma   solve issue uploa...
225
                            <v-select
46db0a3b5   Neeraj Sharma   add sunbject and ...
226
                              v-model="addSubject.classId"
ebe04cc1d   Neeraj Sharma   solve issue uploa...
227
                              label="Select your class"
beb598536   Neeraj Sharma   design and functi...
228
                              type="text"
46db0a3b5   Neeraj Sharma   add sunbject and ...
229
230
231
232
                              :items="classList"
                              item-text="classNum"
                              item-value="_id"
                              :rules="nameRules"
beb598536   Neeraj Sharma   design and functi...
233
                              required
ebe04cc1d   Neeraj Sharma   solve issue uploa...
234
                            ></v-select>
beb598536   Neeraj Sharma   design and functi...
235
236
                          </v-flex>
                        </v-layout>
46db0a3b5   Neeraj Sharma   add sunbject and ...
237
                        <v-layout>
aa8fc5033   Neeraj Sharma   implenment all pa...
238
                          <v-flex xs4 sm4 class="pt-4 subheading">
46db0a3b5   Neeraj Sharma   add sunbject and ...
239
                            <label class="right">Subject:</label>
beb598536   Neeraj Sharma   design and functi...
240
                          </v-flex>
aa8fc5033   Neeraj Sharma   implenment all pa...
241
                          <v-flex xs8 sm6 class="ml-3">
beb598536   Neeraj Sharma   design and functi...
242
                            <v-text-field
46db0a3b5   Neeraj Sharma   add sunbject and ...
243
                              v-model="addSubject.subjectName"
51e4f3e16   Neeraj Sharma   add sunbject and ...
244
                              placeholder="fill your Subject Name"
beb598536   Neeraj Sharma   design and functi...
245
246
                              name="name"
                              type="text"
46db0a3b5   Neeraj Sharma   add sunbject and ...
247
                              :rules="subjectRules"
beb598536   Neeraj Sharma   design and functi...
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
                              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...
270
271
272
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
beb598536   Neeraj Sharma   design and functi...
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
    </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...
288
      showLoader: false,
beb598536   Neeraj Sharma   design and functi...
289
290
291
      loading: false,
      date: null,
      search: "",
beb598536   Neeraj Sharma   design and functi...
292
293
294
295
296
      dialog: false,
      dialog1: false,
      valid: true,
      isActive: true,
      newActive: false,
beb598536   Neeraj Sharma   design and functi...
297
      gender: ["Male", "Female"],
beb598536   Neeraj Sharma   design and functi...
298
      pagination: {
2b0e316ee   Neeraj Sharma   upload mytiple im...
299
        rowsPerPage: 19
beb598536   Neeraj Sharma   design and functi...
300
      },
46db0a3b5   Neeraj Sharma   add sunbject and ...
301
302
303
      token: "",
      nameRules: [v => !!v || " Class Name is required"],
      subjectRules: [v => !!v || " Subject Name is required"],
beb598536   Neeraj Sharma   design and functi...
304
305
306
307
308
309
310
      headers: [
        {
          text: "No",
          align: "center",
          sortable: false,
          value: "No"
        },
fc82ac667   Neeraj Sharma   fix design and re...
311
        {
46db0a3b5   Neeraj Sharma   add sunbject and ...
312
313
          text: "Subject Name",
          value: "subjectName",
fc82ac667   Neeraj Sharma   fix design and re...
314
315
316
          sortable: false,
          align: "center"
        },
beb598536   Neeraj Sharma   design and functi...
317
318
        { text: "Action", value: "", sortable: false, align: "center" }
      ],
46db0a3b5   Neeraj Sharma   add sunbject and ...
319
320
      subjectList: [],
      classList: [],
beb598536   Neeraj Sharma   design and functi...
321
      editedIndex: -1,
46db0a3b5   Neeraj Sharma   add sunbject and ...
322
323
      addSubject: {},
      selectClassId: "",
beb598536   Neeraj Sharma   design and functi...
324
      editedItem: {
46db0a3b5   Neeraj Sharma   add sunbject and ...
325
        subjectName: ""
a17c68a03   Neeraj Sharma   implement two rou...
326
      }
beb598536   Neeraj Sharma   design and functi...
327
    }),
beb598536   Neeraj Sharma   design and functi...
328
329
330
331
    methods: {
      pickFile() {
        this.$refs.image.click();
      },
beb598536   Neeraj Sharma   design and functi...
332
      editItem(item) {
beb598536   Neeraj Sharma   design and functi...
333
        this.editedItem = Object.assign({}, item);
46db0a3b5   Neeraj Sharma   add sunbject and ...
334
        console.log("this.editedItem._id", this.editedItem._id);
beb598536   Neeraj Sharma   design and functi...
335
336
337
        this.dialog = true;
      },
      profile(item) {
beb598536   Neeraj Sharma   design and functi...
338
339
340
341
        this.editedItem = Object.assign({}, item);
        this.dialog1 = true;
      },
      deleteItem(item) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
342
343
344
        let deleteSubject = {
          classId: this.addSubject.selectName,
          subjectId: item._id
beb598536   Neeraj Sharma   design and functi...
345
346
347
        };
        http()
          .delete(
46db0a3b5   Neeraj Sharma   add sunbject and ...
348
            "/deleteSubject",
beb598536   Neeraj Sharma   design and functi...
349
            confirm("Are you sure you want to delete this?") && {
46db0a3b5   Neeraj Sharma   add sunbject and ...
350
              params: deleteSubject
beb598536   Neeraj Sharma   design and functi...
351
352
353
            }
          )
          .then(response => {
beb598536   Neeraj Sharma   design and functi...
354
            if ((this.snackbar = true)) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
355
              this.text = "Successfully delete Existing Subject";
beb598536   Neeraj Sharma   design and functi...
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
            }
            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...
388
          http()
46db0a3b5   Neeraj Sharma   add sunbject and ...
389
            .post("/addSubject", this.addSubject)
beb598536   Neeraj Sharma   design and functi...
390
            .then(response => {
beb598536   Neeraj Sharma   design and functi...
391
              if ((this.snackbar = true)) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
392
                this.text = "New Subject added successfully";
beb598536   Neeraj Sharma   design and functi...
393
              }
beb598536   Neeraj Sharma   design and functi...
394
395
396
397
398
399
400
401
402
403
              this.clear();
            })
            .catch(error => {
              // console.log(error);
              if ((this.snackbar = true)) {
                this.text = error.response.data.message;
              }
            });
        }
      },
beb598536   Neeraj Sharma   design and functi...
404
405
406
407
      clear() {
        this.$refs.form.reset();
      },
      save() {
46db0a3b5   Neeraj Sharma   add sunbject and ...
408
409
410
411
        let editSubject = {
          classId: this.addSubject.selectName,
          subjectId: this.editedItem._id,
          subjectName: this.editedItem.subjectName
beb598536   Neeraj Sharma   design and functi...
412
413
        };
        http()
46db0a3b5   Neeraj Sharma   add sunbject and ...
414
          .put("/updateSubject", editSubject)
beb598536   Neeraj Sharma   design and functi...
415
416
417
          .then(response => {
            // console.log("editEvent",editEvent);
            if ((this.snackbar = true)) {
46db0a3b5   Neeraj Sharma   add sunbject and ...
418
              this.text = "Successfully Edit Existing Subject";
beb598536   Neeraj Sharma   design and functi...
419
            }
46db0a3b5   Neeraj Sharma   add sunbject and ...
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
            //   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...
435
436
437
438
439
440
          })
          .catch(error => {
            // console.log(error);
          });
        this.close();
      },
46db0a3b5   Neeraj Sharma   add sunbject and ...
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
      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;
          })
00e4bc4e1   Neeraj Sharma   fixed auntentication
466
          .catch(error => {
a17c68a03   Neeraj Sharma   implement two rou...
467
468
469
470
471
            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 ...
472
          });
beb598536   Neeraj Sharma   design and functi...
473
474
475
      }
    },
    mounted() {
46db0a3b5   Neeraj Sharma   add sunbject and ...
476
477
478
      this.token = this.$store.state.token;
      // this.getNoticeDataList();
      this.getClass();
beb598536   Neeraj Sharma   design and functi...
479
    },
a17c68a03   Neeraj Sharma   implement two rou...
480
481
482
483
484
485
486
487
    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...
488
489
490
491
    }
  };
  </script>
  <style scoped>
beb598536   Neeraj Sharma   design and functi...
492
  .active {
687e0b929   Neeraj Sharma   add user,attenden...
493
    background-color: gray;
beb598536   Neeraj Sharma   design and functi...
494
495
496
497
498
    color: white !important;
  }
  .activebtn {
    color: black !important;
  }
beb598536   Neeraj Sharma   design and functi...
499
  </style>