markDistribution.vue 11.2 KB
<template>
  <v-container fluid class="body-color">
    <!-- ****** EDIT  Mark Distribution ****** -->
    <v-dialog v-model="editMarkDistributionDialog" max-width="500px" persistent>
      <v-card flat class="Card-style pa-2">
        <v-layout>
          <v-flex xs12>
            <label class="title text-xs-center">Edit Mark Distribution</label>
            <v-icon size="24" class="right" @click="editMarkDistributionDialog = false">cancel</v-icon>
          </v-flex>
        </v-layout>
        <v-form ref="form">
          <v-container fluid>
            <v-flex xs12 sm12>
              <v-layout>
                <v-flex xs4 class="pt-4 subheading">
                  <label class="right">Mark Distribution:</label>
                </v-flex>
                <v-flex xs8 sm6 class="ml-3">
                  <v-text-field
                    v-model="editedItem.distributionType"
                    placeholder="fill your Distribution Type"
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12 sm12>
              <v-layout>
                <v-flex xs4 class="pt-4 subheading">
                  <label class="right">Mark Value:</label>
                </v-flex>
                <v-flex xs8 sm6 class="ml-3">
                  <v-text-field placeholder="fill your  Mark Value" v-model="editedItem.markValue"></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-layout>
              <v-flex xs12 sm11>
                <v-card-actions>
                  <v-spacer></v-spacer>
                  <v-btn round dark @click="save" class="add-button">Save</v-btn>
                </v-card-actions>
              </v-flex>
            </v-layout>
          </v-container>
        </v-form>
      </v-card>
    </v-dialog>
    <!-- ****** MARK DISTRIBUTATION 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="addMarkDistributionDialog = true"
      >
        <v-icon dark>add</v-icon>
      </v-btn>
      <v-btn
        round
        class="open-dialog-button hidden-sm-only hidden-xs-only"
        dark
        @click="addMarkDistributionDialog = true"
      >
        <v-icon class="white--text pr-1" size="20">add</v-icon>Add Mark Distribution
      </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">
            <img src="/static/icon/search.png" alt="icon" />
          </v-avatar>
        </v-btn>
      </v-card-title>
      <v-flex xs8 sm8 md3 lg2 v-if="showSearch">
        <v-layout>
          <v-text-field
            autofocus
            v-model="search"
            label="Search"
            prepend-inner-icon="search"
            color="primary"
          ></v-text-field>
          <v-icon @click="closeSearch" color="error">close</v-icon>
        </v-layout>
      </v-flex>
    </v-toolbar>
    <v-data-table
      :headers="headers"
      :items="markList"
      :pagination.sync="pagination"
      :search="search"
    >
      <template slot="items" slot-scope="props">
        <tr class="tr">
          <td class="td td-row text-xs-center">{{ props.index + 1 }}</td>
          <td class="td td-row text-xs-center">{{ props.item.distributionType }}</td>
          <td class="td td-row text-xs-center linkCover">{{ props.item.markValue }}</td>
          <td class="td td-row text-xs-center">
            <span>
              <img
                style="cursor:pointer; width:20px; height:18px; "
                class="mr-3"
                @click="editItem(props.item)"
                src="/static/icon/edit.png"
              />
              <img
                style="cursor:pointer; width:20px; height:20px; "
                @click="deleteItem(props.item)"
                src="/static/icon/delete.png"
              />
            </span>
          </td>
        </tr>
      </template>
      <v-alert
        slot="no-results"
        :value="true"
        color="error"
        icon="warning"
      >Your search for "{{ search }}" found no results.</v-alert>
    </v-data-table>
    <!-- ****** ADD MULTIPLE REMINDER ****** -->
    <v-dialog v-model="addMarkDistributionDialog" max-width="500px" persistent>
      <v-card flat class="Card-style pa-2">
        <v-layout>
          <v-flex xs12>
            <label class="title text-xs-center">Add Mark Distribution</label>
            <v-icon
              size="24"
              class="right"
              @click="$refs.form.reset();addMarkDistributionDialog = false"
            >cancel</v-icon>
          </v-flex>
        </v-layout>
        <v-form ref="form" v-model="valid" lazy-validation>
          <v-container fluid>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 sm12 md4 class="pt-4 subheading">
                  <label class="right hidden-xs-only hidden-sm-only">Mark Distribution:</label>
                  <label class="hidden-md-only hidden-lg-only hidden-xl-only">Mark Distribution:</label>
                </v-flex>
                <v-flex xs12 sm12 md7 class="ml-3">
                  <v-text-field
                    v-model="mark.distributionType"
                    placeholder="fill your Mark Distribution"
                    :rules="markDistributionRules"
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12>
              <v-layout wrap>
                <v-flex xs12 sm12 md4 class="pt-4 subheading">
                  <label class="right hidden-xs-only hidden-sm-only">Mark Value:</label>
                  <label class="hidden-md-only hidden-lg-only hidden-xl-only">Mark Value:</label>
                </v-flex>
                <v-flex xs12 sm12 md7 class="ml-3">
                  <v-text-field
                    placeholder="fill your Mark Value"
                    :rules="markValueRules"
                    v-model="mark.markValue"
                    type="text"
                    required
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-layout>
              <v-flex xs12 sm12>
                <v-layout>
                  <v-spacer></v-spacer>
                  <v-btn @click="clear" round class="clear-button" dark>clear</v-btn>
                  <v-btn @click="submit" round dark :loading="loading" class="add-button">Add</v-btn>
                </v-layout>
              </v-flex>
            </v-layout>
          </v-container>
        </v-form>
      </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>
    <div class="loader" v-if="showLoader">
      <v-progress-circular indeterminate color="white"></v-progress-circular>
    </div>
  </v-container>
</template>

<script>
import http from "@/Services/http.js";
import Util from "@/util";

export default {
  data: () => ({
    snackbar: false,
    y: "top",
    x: "right",
    mode: "",
    color: "",
    timeout: 5000,
    text: "",
    loading: false,
    search: "",
    showLoader: false,
    show: true,
    showSearch: false,
    editMarkDistributionDialog: false,
    addMarkDistributionDialog: false,
    valid: true,
    isActive: true,
    newActive: false,
    pagination: {
      rowsPerPage: 15,
    },
    markDistributionRules: [
      (v) => !!v || " Mark Distribution type is required",
    ],
    markValueRules: [(v) => !!v || "Mark Value is required"],
    headers: [
      {
        text: "No",
        align: "center",
        sortable: false,
        value: "No",
      },
      {
        text: " Mark Distribution Type",
        value: " distributionType",
        sortable: false,
        align: "center",
      },
      {
        text: " Mark Value",
        value: "markValue",
        sortable: false,
        align: "center",
      },
      { text: "Action", value: "", sortable: false, align: "center" },
    ],
    markList: [],
    editedIndex: -1,
    mark: {},
    editedItem: {},
    token: "",
  }),
  methods: {
    getMarkDistributions() {
      this.showLoader = true;
      http()
        .get("/getMarkDistributionsList", {
          headers: { Authorization: "Bearer " + this.token },
        })
        .then((response) => {
          this.markList = response.data.data;
          this.showLoader = false;
        })
        .catch((error) => {
          this.showLoader = false;
          // if (error.response.status === 401) {
          //   this.$router.replace({ path: "/" });
          //   this.$store.dispatch("setToken", null);
          //   this.$store.dispatch("Id", null);
          // }
        });
    },
    editItem(item) {
      this.editedIndex = this.markList.indexOf(item);
      this.editedItem = Object.assign({}, item);
      this.editMarkDistributionDialog = true;
    },
    deleteItem(item) {
      let deleteParticularMark = {
        markDistributionId: item._id,
      };
      http()
        .delete(
          "/deleteMarkDistribution",
          confirm("Are you sure you want to delete this?") && {
            params: deleteParticularMark,
          }
        )
        .then((response) => {
          this.snackbar = true;
          this.text = response.data.message;
          this.getMarkDistributions();
        })
        .catch((error) => {
          //   console.log(error);
          this.snackbar = true;
          this.color = "error";
          this.text = error.response.data.message;
        });
    },
    close() {
      this.editMarkDistributionDialog = false;
    },
    submit() {
      if (this.$refs.form.validate()) {
        this.loading = true;
        http()
          .post("/createMarkDistribution", this.mark)
          .then((response) => {
            this.snackbar = true;
            this.text = response.data.message;
            this.getMarkDistributions();
            this.clear();
            this.addMarkDistributionDialog = false;
            this.loading = false;
          })
          .catch((error) => {
            this.snackbar = true;
            this.text = error.response.data.message;
            this.loading = false;
          });
      }
    },
    clear() {
      this.$refs.form.reset();
    },
    save() {
      (this.editedItem.markDistributionId = this.editedItem._id),
        http()
          .put("/updateMarkDistribution", this.editedItem)
          .then((response) => {
            this.snackbar = true;
            this.text = "Successfully Edit Notification";
            this.color = "green";
            this.getMarkDistributions();
            this.close();
          })
          .catch((error) => {
            // console.log(error);
            this.snackbar = true;
            this.text = error.response.data.message;
            this.color = "red";
          });
    },
    displaySearch() {
      (this.show = false), (this.showSearch = true);
    },
    closeSearch() {
      this.showSearch = false;
      this.show = true;
      this.search = "";
    },
  },
  mounted() {
    this.token = this.$store.state.token;
    this.getMarkDistributions();
  },
};
</script>
<style scoped>