Blame view

src/pages/Class/addclass.vue 11.6 KB
1ed542553   Neeraj Sharma   all api implement...
1
  <template>
a17c68a03   Neeraj Sharma   implement two rou...
2
    <div>
687e0b929   Neeraj Sharma   add user,attenden...
3
      <v-tabs grow slider-color="gary">
1ed542553   Neeraj Sharma   all api implement...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
        <v-tab
          ripple
          @click="activeTab('existing')"
          v-bind:class="{ active: isActive }"
          id="tab"
          class="subheading"
        >Existing Class</v-tab>
        <v-tab
          ripple
          @click="activeTab('new')"
          v-bind:class="{ active: newActive }"
          id="tab1"
          User
          class="subheading"
        >Add New Class</v-tab>
f4df757fe   Neeraj Sharma   responsive vie in...
19
        <!-- ****** EDIT  ClASS  ****** -->
1ed542553   Neeraj Sharma   all api implement...
20
21
22
23
24
25
26
27
28
29
        <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="500px">
aa8fc5033   Neeraj Sharma   implenment all pa...
30
31
32
33
34
35
36
37
38
39
40
41
42
            <v-flex xs12 sm12 class>
              <v-toolbar color="grey lighten-2">
                <v-spacer></v-spacer>
                <v-toolbar-title>
                  <h3>Edit Class</h3>
                </v-toolbar-title>
                <v-spacer></v-spacer>
              </v-toolbar>
              <v-card>
                  <v-container fluid>
                    <v-layout justify-center>
                      <v-flex xs12 sm9>
                          <v-layout style="position:relative;">
f4df757fe   Neeraj Sharma   responsive vie in...
43
44
                            <v-flex xs3 lg2 class="pt-4 subheading">
                              <label class="right">Class:</label>
aa8fc5033   Neeraj Sharma   implenment all pa...
45
                            </v-flex>
f4df757fe   Neeraj Sharma   responsive vie in...
46
                            <v-flex xs9 class="ml-2">
aa8fc5033   Neeraj Sharma   implenment all pa...
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
                              <v-autocomplete
                                v-model="editedItem.classNum"
                                :label="editedItem.classNum"
                                :items="classList"
                                :rules="nameRules"
                              ></v-autocomplete>
                            </v-flex>
                          </v-layout>
                          <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-layout>
                  </v-container>
              </v-card>
            </v-flex>
1ed542553   Neeraj Sharma   all api implement...
65
66
67
68
          </v-dialog>
  
          <!-- ****** PROFILE VIEW STUDENTS ******  -->
          <v-dialog v-model="dialog1" max-width="600px">
506be6fd7   Neeraj Sharma   implemet dyamic i...
69
            <v-toolbar color="grey lighten-2">
1ed542553   Neeraj Sharma   all api implement...
70
              <v-spacer></v-spacer>
a17c68a03   Neeraj Sharma   implement two rou...
71
              <v-toolbar-title>
60e13c8f2   Neeraj Sharma   solve bugs
72
                <h3>Class</h3>
a17c68a03   Neeraj Sharma   implement two rou...
73
              </v-toolbar-title>
1ed542553   Neeraj Sharma   all api implement...
74
75
76
77
              <v-spacer></v-spacer>
              <v-icon @click="close1">close</v-icon>
            </v-toolbar>
            <v-card>
1ed542553   Neeraj Sharma   all api implement...
78
79
80
81
              <v-card-text>
                <v-container grid-list-md>
                  <v-layout wrap>
                    <v-flex>
1ed542553   Neeraj Sharma   all api implement...
82
                      <v-layout>
a17c68a03   Neeraj Sharma   implement two rou...
83
                        <v-flex xs6 sm6>
aa8fc5033   Neeraj Sharma   implenment all pa...
84
85
86
                          <h5 class="right my-1">
                            <b>Class Name:</b>
                          </h5>
1ed542553   Neeraj Sharma   all api implement...
87
                        </v-flex>
a17c68a03   Neeraj Sharma   implement two rou...
88
                        <v-flex sm6 xs6>
1ed542553   Neeraj Sharma   all api implement...
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
                          <h5 class="my-1">{{ editedItem.classNum }}</h5>
                        </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>
  
          <!-- ****** EXISTING-USERS Classess Table ****** -->
          <v-data-table
            :headers="headers"
            :items="desserts"
            :pagination.sync="pagination"
            :search="search"
          >
            <template slot="items" slot-scope="props">
687e0b929   Neeraj Sharma   add user,attenden...
116
              <td>{{ props.index + 1 }}</td>
506be6fd7   Neeraj Sharma   implemet dyamic i...
117
              <td class="text-xs-center">{{ props.item.classNum}}</td>
1ed542553   Neeraj Sharma   all api implement...
118
119
120
121
              <td class="text-xs-center">
                <span>
                  <img
                    style="cursor:pointer; width:25px; height:18px; "
aa8fc5033   Neeraj Sharma   implenment all pa...
122
                    class="mr5"
1ed542553   Neeraj Sharma   all api implement...
123
124
                    @click="profile(props.item)"
                    src="/static/icon/eye1.png"
a17c68a03   Neeraj Sharma   implement two rou...
125
                  />
1ed542553   Neeraj Sharma   all api implement...
126
127
                  <img
                    style="cursor:pointer; width:20px; height:18px; "
aa8fc5033   Neeraj Sharma   implenment all pa...
128
                    class="mr5"
1ed542553   Neeraj Sharma   all api implement...
129
130
                    @click="editItem(props.item)"
                    src="/static/icon/edit1.png"
a17c68a03   Neeraj Sharma   implement two rou...
131
                  />
1ed542553   Neeraj Sharma   all api implement...
132
                  <img
b39d2afd2   Neeraj Sharma   responsive dashboard
133
                    style="cursor:pointer; width:20px; height:20px; "
aa8fc5033   Neeraj Sharma   implenment all pa...
134
                    class="mr5"
1ed542553   Neeraj Sharma   all api implement...
135
136
                    @click="deleteItem(props.item)"
                    src="/static/icon/delete1.png"
a17c68a03   Neeraj Sharma   implement two rou...
137
                  />
1ed542553   Neeraj Sharma   all api implement...
138
139
140
                </span>
              </td>
            </template>
a17c68a03   Neeraj Sharma   implement two rou...
141
            <v-alert
1ed542553   Neeraj Sharma   all api implement...
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
              slot="no-results"
              :value="true"
              color="error"
              icon="warning"
            >Your search for "{{ search }}" found no results.</v-alert>
          </v-data-table>
        </v-tab-item>
  
        <!-- ****** ADD multiple Classess ****** -->
        <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>
79006bdcb   Neeraj Sharma   uplaod images all...
165
                    <v-flex xs12 class="mt-4">
1ed542553   Neeraj Sharma   all api implement...
166
167
168
                      <v-form ref="form" v-model="valid" lazy-validation>
                        <v-layout>
                          <v-flex xs4 class="pt-4 subheading">
506be6fd7   Neeraj Sharma   implemet dyamic i...
169
                            <label class="right">Class :</label>
1ed542553   Neeraj Sharma   all api implement...
170
171
                          </v-flex>
                          <v-flex xs6 class="ml-3">
506be6fd7   Neeraj Sharma   implemet dyamic i...
172
                            <v-autocomplete
1ed542553   Neeraj Sharma   all api implement...
173
174
                              v-model="addclasses.classNum"
                              placeholder="fill your class Name"
1ed542553   Neeraj Sharma   all api implement...
175
                              type="text"
506be6fd7   Neeraj Sharma   implemet dyamic i...
176
                              :items="classList"
1ed542553   Neeraj Sharma   all api implement...
177
178
                              :rules="nameRules"
                              required
506be6fd7   Neeraj Sharma   implemet dyamic i...
179
                            ></v-autocomplete>
1ed542553   Neeraj Sharma   all api implement...
180
181
182
183
184
                          </v-flex>
                        </v-layout>
                        <v-layout>
                          <v-flex xs12 sm9 offset-sm2>
                            <v-card-actions>
1ed542553   Neeraj Sharma   all api implement...
185
186
                              <v-spacer></v-spacer>
                              <v-btn @click="submit" round dark :loading="loading">Add</v-btn>
79006bdcb   Neeraj Sharma   uplaod images all...
187
                              <v-spacer></v-spacer>
1ed542553   Neeraj Sharma   all api implement...
188
189
190
191
192
193
194
195
196
197
198
199
                            </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>
4b169b574   Neeraj Sharma   add loader in all...
200
201
202
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
a17c68a03   Neeraj Sharma   implement two rou...
203
    </div>
1ed542553   Neeraj Sharma   all api implement...
204
205
206
207
208
209
210
211
212
213
214
215
216
217
  </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: "",
a17c68a03   Neeraj Sharma   implement two rou...
218
      showLoader: false,
1ed542553   Neeraj Sharma   all api implement...
219
220
221
      loading: false,
      date: null,
      search: "",
1ed542553   Neeraj Sharma   all api implement...
222
223
224
225
226
227
228
229
230
      dialog: false,
      dialog1: false,
      valid: true,
      isActive: true,
      newActive: false,
      AddUsercredentials: {},
      pagination: {
        rowsPerPage: 15
      },
46db0a3b5   Neeraj Sharma   add sunbject and ...
231
      nameRules: [v => !!v || " Class Name is required"],
1ed542553   Neeraj Sharma   all api implement...
232
233
234
      headers: [
        {
          text: "No",
506be6fd7   Neeraj Sharma   implemet dyamic i...
235
          align: "left",
1ed542553   Neeraj Sharma   all api implement...
236
237
238
          sortable: false,
          value: "No"
        },
2b0e316ee   Neeraj Sharma   upload mytiple im...
239
        { text: "Class No", value: "classNum", sortable: false, align: "center" },
1ed542553   Neeraj Sharma   all api implement...
240
241
242
        { text: "Action", value: "", sortable: false, align: "center" }
      ],
      desserts: [],
a17c68a03   Neeraj Sharma   implement two rou...
243
      classList: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
1ed542553   Neeraj Sharma   all api implement...
244
245
246
247
      editedIndex: -1,
      editedItem: {
        classNum: ""
      },
a17c68a03   Neeraj Sharma   implement two rou...
248
      addclasses: {
1ed542553   Neeraj Sharma   all api implement...
249
        classNum: ""
a17c68a03   Neeraj Sharma   implement two rou...
250
      }
1ed542553   Neeraj Sharma   all api implement...
251
    }),
1ed542553   Neeraj Sharma   all api implement...
252
253
    methods: {
      getClassList() {
4b169b574   Neeraj Sharma   add loader in all...
254
        this.showLoader = true;
1ed542553   Neeraj Sharma   all api implement...
255
256
        var token = this.$store.state.token;
        http()
2b0e316ee   Neeraj Sharma   upload mytiple im...
257
          .get("/getClassesList")
1ed542553   Neeraj Sharma   all api implement...
258
259
          .then(response => {
            this.desserts = response.data.data;
4b169b574   Neeraj Sharma   add loader in all...
260
            this.showLoader = false;
1ed542553   Neeraj Sharma   all api implement...
261
262
          })
          .catch(err => {
2b0e316ee   Neeraj Sharma   upload mytiple im...
263
            console.log("err====>", err);
4b169b574   Neeraj Sharma   add loader in all...
264
            this.showLoader = false;
a17c68a03   Neeraj Sharma   implement two rou...
265
266
267
268
269
            if (error.response.status === 401) {
              this.$router.replace({ path: "/" });
              this.$store.dispatch("setToken", null);
              this.$store.dispatch("Id", null);
            }
1ed542553   Neeraj Sharma   all api implement...
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
          });
      },
      editItem(item) {
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog = true;
      },
      profile(item) {
        this.editedIndex = this.desserts.indexOf(item);
        this.editedItem = Object.assign({}, item);
        this.dialog1 = true;
      },
      deleteItem(item) {
        let deleteStudent = {
          classId: item._id
        };
        http()
          .delete(
            "/deleteClass",
            confirm("Are you sure you want to delete this?") && {
              params: deleteStudent
            }
          )
          .then(response => {
            // console.log("deleteUers",deleteStudent)
            if ((this.snackbar = true)) {
5f1d4b444   Neeraj Sharma   fix design and fi...
296
              this.text = "Successfully delete Existing Class";
1ed542553   Neeraj Sharma   all api implement...
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
            }
            this.getClassList();
          })
          .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()) {
          let addClass = {
            classNum: this.addclasses.classNum
          };
          console.log(addClass);
5f1d4b444   Neeraj Sharma   fix design and fi...
333
          this.loading = true;
1ed542553   Neeraj Sharma   all api implement...
334
335
336
337
338
          http()
            .post("/createClass", addClass)
            .then(response => {
              this.getClassList();
              if ((this.snackbar = true)) {
5f1d4b444   Neeraj Sharma   fix design and fi...
339
                this.text = "New class added successfully";
1ed542553   Neeraj Sharma   all api implement...
340
              }
1ed542553   Neeraj Sharma   all api implement...
341
              this.clear();
5f1d4b444   Neeraj Sharma   fix design and fi...
342
              this.loading = false;
1ed542553   Neeraj Sharma   all api implement...
343
344
345
            })
            .catch(error => {
              // console.log(error);
5f1d4b444   Neeraj Sharma   fix design and fi...
346
              this.loading = false;
1ed542553   Neeraj Sharma   all api implement...
347
348
349
350
351
352
              if ((this.snackbar = true)) {
                this.text = error.response.data.message;
              }
            });
        }
      },
1ed542553   Neeraj Sharma   all api implement...
353
354
355
356
357
358
359
360
361
362
363
      clear() {
        this.$refs.form.reset();
      },
      save() {
        let editClass = {
          classId: this.editedItem._id,
          classNum: this.editedItem.classNum
        };
        http()
          .put("/updateClass", editClass)
          .then(response => {
1ed542553   Neeraj Sharma   all api implement...
364
            if ((this.snackbar = true)) {
5f1d4b444   Neeraj Sharma   fix design and fi...
365
              this.text = "Successfully Edit Existing Class";
1ed542553   Neeraj Sharma   all api implement...
366
367
368
369
370
371
372
            }
            this.getClassList();
          })
          .catch(error => {
            // console.log(error);
          });
        this.close();
1ed542553   Neeraj Sharma   all api implement...
373
374
375
376
      }
    },
    mounted() {
      this.getClassList();
a17c68a03   Neeraj Sharma   implement two rou...
377
      // console.log("this.search",this.search)
1ed542553   Neeraj Sharma   all api implement...
378
    },
a17c68a03   Neeraj Sharma   implement two rou...
379
380
381
382
383
384
385
386
    created() {
      this.$root.$on("app:search", search => {
        this.search = search;
      });
    },
    beforeDestroy() {
      // dont forget to remove the listener
      this.$root.$off("app:search");
1ed542553   Neeraj Sharma   all api implement...
387
388
389
    }
  };
  </script>
506be6fd7   Neeraj Sharma   implemet dyamic i...
390
  <style>
1ed542553   Neeraj Sharma   all api implement...
391
  .active {
687e0b929   Neeraj Sharma   add user,attenden...
392
    background-color: gray;
1ed542553   Neeraj Sharma   all api implement...
393
394
395
396
397
    color: white !important;
  }
  .activebtn {
    color: black !important;
  }
1ed542553   Neeraj Sharma   all api implement...
398
  </style>