Blame view

src/pages/Library/books.vue 19.6 KB
687e0b929   Neeraj Sharma   add user,attenden...
1
  <template>
68d742034   Neeraj Sharma   implement new des...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
81
82
83
84
85
86
87
88
    <v-container fluid class="body-color">
      <!-- ****** Edit  Member  ****** -->
      <v-dialog v-model="editBookDialog" max-width="500px">
        <v-card flat class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">Edit Book</label>
              <v-icon size="24" class="right" @click="editBookDialog = false">cancel</v-icon>
            </v-flex>
          </v-layout>
          <v-card-text>
            <v-container>
              <v-layout wrap justify-center>
                <v-flex xs12>
                  <v-form>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right pr-3">Name:</label>
                      </v-flex>
                      <v-flex xs8>
                        <v-text-field v-model="editedItem.name" placeholder="fill your Name"></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right pr-3">Author:</label>
                      </v-flex>
                      <v-flex xs8>
                        <v-text-field v-model="editedItem.author" placeholder="fill your Author Name"></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right pr-3">Subject Code:</label>
                      </v-flex>
                      <v-flex xs8>
                        <v-text-field
                          v-model="editedItem.subjectCode"
                          placeholder="fill your  Subject Code"
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right pr-3">Price:</label>
                      </v-flex>
                      <v-flex xs8>
                        <v-text-field
                          v-model="editedItem.price"
                          placeholder="fill your  Subject Code"
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right pr-3">Quantity:</label>
                      </v-flex>
                      <v-flex xs8>
                        <v-text-field
                          v-model="editedItem.quantity"
                          type="number"
                          placeholder="fill your Quantity"
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right pr-3">Rack No:</label>
                      </v-flex>
                      <v-flex xs8>
                        <v-text-field v-model="editedItem.rackNo" placeholder="fill your Rack No"></v-text-field>
                      </v-flex>
                    </v-layout>
                    <v-card-actions>
                      <v-spacer></v-spacer>
                      <v-btn round dark @click="save" class="add-button">Save</v-btn>
                      <v-spacer></v-spacer>
                    </v-card-actions>
                  </v-form>
                </v-flex>
              </v-layout>
            </v-container>
          </v-card-text>
        </v-card>
      </v-dialog>
  
      <!-- ****** PROFILE VIEW BOOKS DATA ******  -->
687e0b929   Neeraj Sharma   add user,attenden...
89

68d742034   Neeraj Sharma   implement new des...
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
      <v-dialog v-model="viewBookDialog" max-width="500px">
        <v-card flat class="card-style pa-3" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">View Book</label>
              <v-icon size="24" class="right" @click="viewBookDialog = 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>Name :</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.name }}</h5>
687e0b929   Neeraj Sharma   add user,attenden...
110
111
                    </v-flex>
                  </v-layout>
68d742034   Neeraj Sharma   implement new des...
112
113
114
115
116
117
118
119
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Author :</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.author }}</h5>
687e0b929   Neeraj Sharma   add user,attenden...
120
121
                    </v-flex>
                  </v-layout>
68d742034   Neeraj Sharma   implement new des...
122
123
124
125
126
127
128
129
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Subject Code :</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.subjectCode }}</h5>
687e0b929   Neeraj Sharma   add user,attenden...
130
131
                    </v-flex>
                  </v-layout>
68d742034   Neeraj Sharma   implement new des...
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
187
188
189
190
191
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Price :</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.price }}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Quantity :</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.quantity}}</h5>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs5 sm6>
                      <h5 class="right my-1">
                        <b>Rack No :</b>
                      </h5>
                    </v-flex>
                    <v-flex sm6 xs8>
                      <h5 class="my-1">{{ editedItem.rackNo}}</h5>
                    </v-flex>
                  </v-layout>
                </v-flex>
              </v-layout>
            </v-container>
          </v-card-text>
        </v-card>
      </v-dialog>
      <!-- ****** BOOKS 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="addBookDialog = true"
        >
          <v-icon dark>add</v-icon>
        </v-btn>
        <v-btn
          round
          class="open-dialog-button hidden-sm-only hidden-xs-only"
          dark
          @click="addBookDialog = true"
        >
          <v-icon class="white--text pr-1" size="20">add</v-icon>Add Book
        </v-btn>
        <v-spacer></v-spacer>
        <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...
192
              <img src="/static/icon/search.png" alt="icon" />
68d742034   Neeraj Sharma   implement new des...
193
194
195
            </v-avatar>
          </v-btn>
        </v-card-title>
612b79bb4   Amber Dev   made serch auto f...
196
        <v-flex xs8 sm8 md3 lg2 v-if="showSearch">
68d742034   Neeraj Sharma   implement new des...
197
          <v-layout>
8e8d14254   Shikha Mishra   Cleared data whil...
198
199
200
201
202
203
204
            <v-text-field
              autofocus
              v-model="search"
              label="Search"
              prepend-inner-icon="search"
              color="primary"
            ></v-text-field>
68d742034   Neeraj Sharma   implement new des...
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
            <v-icon @click="closeSearch" color="error">close</v-icon>
          </v-layout>
        </v-flex>
      </v-toolbar>
      <v-data-table
        :headers="headers"
        :items="bookData"
        :pagination.sync="pagination"
        :search="search"
      >
        <template slot="items" slot-scope="props">
          <td class="td td-row text-xs-center">{{ props.index + 1}}</td>
          <td class="td td-row text-xs-center">{{ props.item.name }}</td>
          <td class="td td-row text-xs-center">{{ props.item.author }}</td>
          <td class="td td-row text-xs-center">{{ props.item.subjectCode }}</td>
          <td class="td td-row text-xs-center">{{ props.item.price }}</td>
          <td class="td td-row text-xs-center">{{ props.item.quantity }}</td>
          <td class="td td-row text-xs-center">{{ props.item.rackNo }}</td>
          <td class="td td-row text-xs-center">
058c4a6cf   Shikha Mishra   Improve the funct...
224
225
226
227
228
229
230
231
            <span
              v-if="props.item.status === 'AVAILABLE'"
              class="green lighten-1 pa-1 px-2 white--text paymentStatus"
            >{{ props.item.status}}</span>
            <span
              v-if="props.item.status === 'UNAVAILABLE'"
              class="red lighten-1 pa-1 px-2 white--text paymentStatus"
            >{{ props.item.status}}</span>
68d742034   Neeraj Sharma   implement new des...
232
233
234
          </td>
          <td class="text-xs-center td td-row">
            <span>
710438de6   Shikha Mishra   added teacher mod...
235
              <!-- <v-tooltip top>
68d742034   Neeraj Sharma   implement new des...
236
237
238
239
240
                <img
                  slot="activator"
                  style="cursor:pointer; width:25px; height:25px; "
                  class="mr-3"
                  @click="profile(props.item)"
aa310d61a   Shikha Mishra   added functionali...
241
                  src="/static/icon/view.png"
68d742034   Neeraj Sharma   implement new des...
242
243
                />
                <span>View</span>
058c4a6cf   Shikha Mishra   Improve the funct...
244
              </v-tooltip>-->
68d742034   Neeraj Sharma   implement new des...
245
246
247
248
249
250
              <v-tooltip top>
                <img
                  slot="activator"
                  style="cursor:pointer; width:20px; height:18px; "
                  class="mr-3"
                  @click="editItem(props.item)"
aa310d61a   Shikha Mishra   added functionali...
251
                  src="/static/icon/edit.png"
68d742034   Neeraj Sharma   implement new des...
252
253
254
                />
                <span>Edit</span>
              </v-tooltip>
058c4a6cf   Shikha Mishra   Improve the funct...
255
              <v-tooltip top v-if="role != 'TEACHER' ">
68d742034   Neeraj Sharma   implement new des...
256
257
258
259
                <img
                  slot="activator"
                  style="cursor:pointer; width:20px; height:20px; "
                  @click="deleteItem(props.item)"
aa310d61a   Shikha Mishra   added functionali...
260
                  src="/static/icon/delete.png"
68d742034   Neeraj Sharma   implement new des...
261
262
263
264
265
266
267
268
269
270
271
272
273
274
                />
                <span>Delete</span>
              </v-tooltip>
            </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>
      <!-- ****** ADD BOOK ****** -->
8e8d14254   Shikha Mishra   Cleared data whil...
275
      <v-dialog v-model="addBookDialog" max-width="600px" v-if="addBookDialog">
68d742034   Neeraj Sharma   implement new des...
276
277
278
279
        <v-card flat class="card-style pa-2" dark>
          <v-layout>
            <v-flex xs12>
              <label class="title text-xs-center">Add Book</label>
f5329b707   Amber Dev   added form reset ...
280
              <v-icon size="24" class="right" @click="$refs.form.reset();addBookDialog = false">cancel</v-icon>
687e0b929   Neeraj Sharma   add user,attenden...
281
            </v-flex>
68d742034   Neeraj Sharma   implement new des...
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
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
376
377
378
379
          </v-layout>
          <v-container fluid fill-height>
            <v-layout align-center>
              <v-flex xs12 class="mt-4">
                <v-form ref="form" v-model="valid" lazy-validation>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Name:</label>
                    </v-flex>
                    <v-flex xs7 class="ml-3">
                      <v-text-field
                        v-model="BooksData.name"
                        placeholder="fill your Name"
                        type="text"
                        :rules="nameRules"
                        required
                      ></v-text-field>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Author:</label>
                    </v-flex>
                    <v-flex xs7 class="ml-3">
                      <v-text-field
                        v-model="BooksData.author"
                        placeholder="fill your Author Name"
                        type="text"
                        :rules="authorRules"
                        required
                      ></v-text-field>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Subject Code:</label>
                    </v-flex>
                    <v-flex xs7 class="ml-3">
                      <v-text-field
                        v-model="BooksData.subjectCode"
                        placeholder="fill your Subject Code"
                        type="text"
                        :rules="subjectRules"
                        required
                      ></v-text-field>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Price:</label>
                    </v-flex>
                    <v-flex xs7 class="ml-3">
                      <v-text-field
                        v-model="BooksData.price"
                        placeholder="fill your Price"
                        :rules="priceRules"
                        required
                      ></v-text-field>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Quantity:</label>
                    </v-flex>
                    <v-flex xs7 class="ml-3">
                      <v-text-field
                        v-model="BooksData.quantity"
                        placeholder="fill your Quantity"
                        :rules="quantityRules"
                        required
                      ></v-text-field>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs4 class="pt-4 subheading">
                      <label class="right">Rack No:</label>
                    </v-flex>
                    <v-flex xs7 class="ml-3">
                      <v-text-field
                        v-model="BooksData.rackNo"
                        placeholder="fill your Rack No"
                        :rules="rackNoRules"
                        required
                      ></v-text-field>
                    </v-flex>
                  </v-layout>
                  <v-layout>
                    <v-flex xs12>
                      <v-card-actions>
                        <v-spacer></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-form>
              </v-flex>
            </v-layout>
687e0b929   Neeraj Sharma   add user,attenden...
380
          </v-container>
68d742034   Neeraj Sharma   implement new des...
381
382
383
384
385
386
387
388
389
390
        </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>
687e0b929   Neeraj Sharma   add user,attenden...
391
392
393
      <div class="loader" v-if="showLoader">
        <v-progress-circular indeterminate color="white"></v-progress-circular>
      </div>
68d742034   Neeraj Sharma   implement new des...
394
    </v-container>
687e0b929   Neeraj Sharma   add user,attenden...
395
396
397
398
399
400
401
402
403
404
405
406
  </template>
  
  <script>
  import http from "@/Services/http.js";
  import Util from "@/util";
  
  export default {
    data: () => ({
      snackbar: false,
      y: "top",
      x: "right",
      mode: "",
68d742034   Neeraj Sharma   implement new des...
407
      timeout: 5000,
687e0b929   Neeraj Sharma   add user,attenden...
408
      text: "",
68d742034   Neeraj Sharma   implement new des...
409
410
411
      color: "",
      show: true,
      showSearch: false,
687e0b929   Neeraj Sharma   add user,attenden...
412
413
414
415
      showLoader: false,
      loading: false,
      date: null,
      search: "",
68d742034   Neeraj Sharma   implement new des...
416
417
      editBookDialog: false,
      viewBookDialog: false,
687e0b929   Neeraj Sharma   add user,attenden...
418
419
      valid: true,
      validEdit: true,
68d742034   Neeraj Sharma   implement new des...
420
      addBookDialog: false,
687e0b929   Neeraj Sharma   add user,attenden...
421
      pagination: {
058c4a6cf   Shikha Mishra   Improve the funct...
422
        rowsPerPage: 10,
687e0b929   Neeraj Sharma   add user,attenden...
423
      },
058c4a6cf   Shikha Mishra   Improve the funct...
424
425
426
427
428
429
      nameRules: [(v) => !!v || " Name is required"],
      authorRules: [(v) => !!v || "Author Name Monthly"],
      subjectRules: [(v) => !!v || "Subject Code  is required"],
      priceRules: [(v) => !!v || "Price  is required"],
      quantityRules: [(v) => !!v || "Quantity  is required"],
      rackNoRules: [(v) => !!v || "Rack No.  is required"],
687e0b929   Neeraj Sharma   add user,attenden...
430

687e0b929   Neeraj Sharma   add user,attenden...
431
432
433
      headers: [
        {
          text: "No",
68d742034   Neeraj Sharma   implement new des...
434
          align: "",
687e0b929   Neeraj Sharma   add user,attenden...
435
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
436
          value: "No",
687e0b929   Neeraj Sharma   add user,attenden...
437
438
439
440
441
        },
        {
          text: "Name",
          value: "name",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
442
          align: "center",
687e0b929   Neeraj Sharma   add user,attenden...
443
        },
ab54b5656   Neeraj Sharma   implement library...
444
445
446
447
448
        { text: "Authour", value: "author", sortable: false, align: "center" },
        {
          text: "Subject Code",
          value: "subjectCode",
          sortable: false,
058c4a6cf   Shikha Mishra   Improve the funct...
449
          align: "center",
ab54b5656   Neeraj Sharma   implement library...
450
        },
687e0b929   Neeraj Sharma   add user,attenden...
451
452
453
454
        { text: "Price", value: "price", sortable: false, align: "center" },
        { text: "Quantity", value: "quantity", sortable: false, align: "center" },
        { text: "Rack No", value: "rackNo", sortable: false, align: "center" },
        { text: "Status", value: "status", sortable: false, align: "center" },
ab54b5656   Neeraj Sharma   implement library...
455

058c4a6cf   Shikha Mishra   Improve the funct...
456
        { text: "Action", value: "", sortable: false, align: "center" },
687e0b929   Neeraj Sharma   add user,attenden...
457
      ],
ab54b5656   Neeraj Sharma   implement library...
458
      bookData: [],
687e0b929   Neeraj Sharma   add user,attenden...
459
460
461
      select: "",
      token: "",
      editedItem: {},
058c4a6cf   Shikha Mishra   Improve the funct...
462
      BooksData: {},
687e0b929   Neeraj Sharma   add user,attenden...
463
    }),
8e8d14254   Shikha Mishra   Cleared data whil...
464
465
466
467
468
469
470
    watch: {
      addBookDialog: function (val) {
        if (!val) {
          this.BooksData = [];
        }
      },
    },
687e0b929   Neeraj Sharma   add user,attenden...
471
    methods: {
ab54b5656   Neeraj Sharma   implement library...
472
      getBookData() {
687e0b929   Neeraj Sharma   add user,attenden...
473
474
        this.showLoader = true;
        http()
ab54b5656   Neeraj Sharma   implement library...
475
          .get("/getBooksList", {
99cd79184   Neeraj Sharma   implement all tas...
476
            params: {
058c4a6cf   Shikha Mishra   Improve the funct...
477
              schoolId: this.$store.state.schoolId,
99cd79184   Neeraj Sharma   implement all tas...
478
            },
058c4a6cf   Shikha Mishra   Improve the funct...
479
            headers: { Authorization: "Bearer " + this.token },
687e0b929   Neeraj Sharma   add user,attenden...
480
          })
058c4a6cf   Shikha Mishra   Improve the funct...
481
          .then((response) => {
ab54b5656   Neeraj Sharma   implement library...
482
            this.bookData = response.data.data;
687e0b929   Neeraj Sharma   add user,attenden...
483
            this.showLoader = false;
687e0b929   Neeraj Sharma   add user,attenden...
484
          })
058c4a6cf   Shikha Mishra   Improve the funct...
485
          .catch((error) => {
687e0b929   Neeraj Sharma   add user,attenden...
486
487
488
489
490
491
492
493
494
            this.showLoader = false;
            if (error.response.status === 401) {
              this.$router.replace({ path: "/" });
              this.$store.dispatch("setToken", null);
              this.$store.dispatch("Id", null);
            }
          });
      },
      editItem(item) {
ab54b5656   Neeraj Sharma   implement library...
495
        this.editedIndex = this.bookData.indexOf(item);
687e0b929   Neeraj Sharma   add user,attenden...
496
497
        this.editedItem = Object.assign({}, item);
        console.log(this.editedItem);
68d742034   Neeraj Sharma   implement new des...
498
        this.editBookDialog = true;
687e0b929   Neeraj Sharma   add user,attenden...
499
500
      },
      profile(item) {
ab54b5656   Neeraj Sharma   implement library...
501
        this.editedIndex = this.bookData.indexOf(item);
687e0b929   Neeraj Sharma   add user,attenden...
502
        this.editedItem = Object.assign({}, item);
68d742034   Neeraj Sharma   implement new des...
503
        this.viewBookDialog = true;
687e0b929   Neeraj Sharma   add user,attenden...
504
505
506
      },
      deleteItem(item) {
        let deleteStudent = {
058c4a6cf   Shikha Mishra   Improve the funct...
507
          bookId: item._id,
687e0b929   Neeraj Sharma   add user,attenden...
508
509
510
        };
        http()
          .delete(
ab54b5656   Neeraj Sharma   implement library...
511
            "/deleteBook",
687e0b929   Neeraj Sharma   add user,attenden...
512
            confirm("Are you sure you want to delete this?") && {
058c4a6cf   Shikha Mishra   Improve the funct...
513
              params: deleteStudent,
687e0b929   Neeraj Sharma   add user,attenden...
514
515
            }
          )
058c4a6cf   Shikha Mishra   Improve the funct...
516
          .then((response) => {
68d742034   Neeraj Sharma   implement new des...
517
518
519
            this.snackbar = true;
            this.text = response.data.message;
            this.color = "green";
ab54b5656   Neeraj Sharma   implement library...
520
            this.getBookData();
687e0b929   Neeraj Sharma   add user,attenden...
521
          })
058c4a6cf   Shikha Mishra   Improve the funct...
522
          .catch((error) => {
68d742034   Neeraj Sharma   implement new des...
523
524
525
            this.snackbar = true;
            this.text = error.response.data.message;
            this.color = "error";
687e0b929   Neeraj Sharma   add user,attenden...
526
527
          });
      },
68d742034   Neeraj Sharma   implement new des...
528
529
      closeEditProfile() {
        this.editBookDialog = false;
687e0b929   Neeraj Sharma   add user,attenden...
530
531
532
533
534
      },
      close2() {
        this.dialog2 = false;
      },
      submit() {
b8690bbc9   Neeraj Sharma   implement create ...
535
        this.BooksData.quantity = Number(this.BooksData.quantity);
99cd79184   Neeraj Sharma   implement all tas...
536
        this.BooksData.schoolId = this.$store.state.schoolId;
687e0b929   Neeraj Sharma   add user,attenden...
537
538
539
        if (this.$refs.form.validate()) {
          this.loading = true;
          http()
ab54b5656   Neeraj Sharma   implement library...
540
            .post("/createBook", this.BooksData)
058c4a6cf   Shikha Mishra   Improve the funct...
541
            .then((response) => {
ab54b5656   Neeraj Sharma   implement library...
542
              this.getBookData();
68d742034   Neeraj Sharma   implement new des...
543
544
545
546
              this.snackbar = true;
              this.text = response.data.message;
              this.color = "green";
              this.addBookDialog = false;
687e0b929   Neeraj Sharma   add user,attenden...
547
548
549
              this.clear();
              this.loading = false;
            })
058c4a6cf   Shikha Mishra   Improve the funct...
550
            .catch((error) => {
68d742034   Neeraj Sharma   implement new des...
551
552
553
              this.snackbar = true;
              this.text = error.response.data.message;
              this.color = "error";
687e0b929   Neeraj Sharma   add user,attenden...
554
555
556
557
558
559
560
561
              this.loading = false;
            });
        }
      },
      clear() {
        this.$refs.form.reset();
      },
      save() {
ab54b5656   Neeraj Sharma   implement library...
562
        this.editedItem.bookId = this.editedItem._id;
687e0b929   Neeraj Sharma   add user,attenden...
563
        http()
ab54b5656   Neeraj Sharma   implement library...
564
          .put("/updateBook", this.editedItem)
058c4a6cf   Shikha Mishra   Improve the funct...
565
          .then((response) => {
68d742034   Neeraj Sharma   implement new des...
566
567
568
            this.snackbar = true;
            this.text = response.data.message;
            this.color = "green";
ab54b5656   Neeraj Sharma   implement library...
569
            this.getBookData();
68d742034   Neeraj Sharma   implement new des...
570
            this.closeEditProfile();
687e0b929   Neeraj Sharma   add user,attenden...
571
          })
058c4a6cf   Shikha Mishra   Improve the funct...
572
          .catch((error) => {
68d742034   Neeraj Sharma   implement new des...
573
            this.snackbar = true;
687e0b929   Neeraj Sharma   add user,attenden...
574
            this.text = error.response.data.message;
68d742034   Neeraj Sharma   implement new des...
575
            this.color = "error";
687e0b929   Neeraj Sharma   add user,attenden...
576
577
            // console.log(error);
          });
68d742034   Neeraj Sharma   implement new des...
578
579
580
581
582
583
584
585
      },
      displaySearch() {
        (this.show = false), (this.showSearch = true);
      },
      closeSearch() {
        this.showSearch = false;
        this.show = true;
        this.search = "";
058c4a6cf   Shikha Mishra   Improve the funct...
586
      },
687e0b929   Neeraj Sharma   add user,attenden...
587
588
589
    },
    mounted() {
      this.token = this.$store.state.token;
ab54b5656   Neeraj Sharma   implement library...
590
      this.getBookData();
058c4a6cf   Shikha Mishra   Improve the funct...
591
592
      this.role = this.$store.state.role;
    },
687e0b929   Neeraj Sharma   add user,attenden...
593
594
  };
  </script>