role.vue 9.71 KB
=<template>
  <v-app id="pages-dasboard">
    <v-tabs grow slider-color="gray">
      <v-tab
        ripple
        @click="activeTab('existing')"
        v-bind:class="{ active: isActive }"
        id="tab"
        class="subheading"
      >Existing Role</v-tab>
      <v-tab
        ripple
        @click="activeTab('new')"
        v-bind:class="{ active: newActive }"
        id="tab1"
        User
        class="subheading"
      >Add New Role</v-tab>

      <!-- ****** EDITS  Role Distribution DETAILS ****** -->

      <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>
            <v-toolbar color="v-toolbar">
              <v-spacer></v-spacer>
              <v-toolbar-title>
                <h3>Edit Role</h3>
              </v-toolbar-title>
              <v-spacer></v-spacer>
            </v-toolbar>
            <v-card flat>
              <v-form ref="form">
                <v-container fluid>
                  <v-flex xs12 sm12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Role:</label>
                      </v-flex>
                      <v-flex xs8 sm6 class="ml-3">
                        <v-text-field v-model="editedItem.name" placeholder="fill your Role"></v-text-field>
                      </v-flex>
                    </v-layout>
                  </v-flex>
                  <v-layout>
                    <v-flex xs12 sm10 offset-sm1>
                      <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-form>
            </v-card>
          </v-flex>
        </v-dialog>

        <!-- ****** EXISTING-USERS REMINDER TABLE ****** -->

        <v-data-table
          :headers="headers"
          :items="getRoles"
          :pagination.sync="pagination"
          :search="search"
        >
          <template slot="items" slot-scope="props">
            <td id="tabeleData" class="text-xs-center">{{ props.index + 1}}</td>
            <td id="tabeleData" class="text-xs-center">{{ props.item.name}}</td>
            <td id="tabeleData" class="text-xs-center">
              <span>
                <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>
              </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>

      <!-- ****** ADD ROLE ****** -->

      <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 class="top" offset-sm2>
            <v-card flat>
              <v-form ref="form" v-model="valid" lazy-validation>
                <v-container fluid>
                  <v-flex xs12>
                    <v-layout>
                      <v-flex xs4 class="pt-4 subheading">
                        <label class="right">Role:</label>
                      </v-flex>
                      <v-flex xs8 sm4 class="ml-3">
                        <v-text-field
                          v-model="addrole.name"
                          placeholder="fill your  Role"
                          :rules="roleRules"
                        ></v-text-field>
                      </v-flex>
                    </v-layout>
                  </v-flex>
                  <v-layout>
                    <v-flex xs12 sm12>
                      <v-layout>
                        <v-flex xs5>
                          <v-btn @click="clear" round class="right" dark>clear</v-btn>
                        </v-flex>
                        <v-flex xs8 sm4>
                          <v-btn @click="submit" round dark :loading="loading" class="right">Add</v-btn>
                        </v-flex>
                      </v-layout>
                    </v-flex>
                  </v-layout>
                </v-container>
              </v-form>
            </v-card>
          </v-flex>
        </v-container>
      </v-tab-item>
    </v-tabs>
    <div class="loader" v-if="showLoader">
      <v-progress-circular indeterminate color="white"></v-progress-circular>
    </div>
  </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: "",
    loading: false,
    search: "",
    showLoader: false,
    dialog: false,
    valid: true,
    isActive: true,
    newActive: false,
    pagination: {
      rowsPerPage: 15
    },
    roleRules: [v => !!v || "Role is required"],
    headers: [
      {
        text: "No",
        align: "center",
        sortable: false,
        value: "No"
      },
      { text: "Role", value: "role", sortable: false, align: "center" },
      { text: "Action", value: "", sortable: false, align: "center" }
    ],
    getRoles: [],
    editedIndex: -1,
    token: "",
    addrole: {},
    editedItem: {}
  }),
  methods: {
    getRole() {
      this.showLoader = true;
      http()
        .get("/getRolesList", {
          headers: { Authorization: "Bearer " + this.token }
        })
        .then(response => {
          this.getRoles = 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.getRoles.indexOf(item);
      this.editedItem = Object.assign({}, item);
      this.dialog = true;
    },
    deleteItem(item) {
      let deleteRoleId = {
        roleId: item._id
      };
      http()
        .delete(
          "/deleteRole",
          confirm("Are you sure you want to delete this?") && {
            params: deleteRoleId
          },
          {
            headers: {
              Authorization: "Bearer " + this.token
            }
          }
        )
        .then(response => {
          this.text = response.data.message;
          this.getRole();
        })
        .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()) {
        this.loading = true;
        http()
          .post("/createRole", this.addrole)
          .then(response => {
            this.snackbar = true;
            this.text = response.data.message;
            this.getRole();
            this.clear();
            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.roleId = this.editedItem._id),
        http()
          .put("/updateRole", this.editedItem, {
            headers: {
              Authorization: "Bearer " + this.token
            }
          })
          .then(response => {
            this.text = "Successfully Edit Notification";
            this.getRole();
            this.close();
          })
          .catch(error => {
            console.log(error);
          });
    }
  },
  mounted() {
    this.token = this.$store.state.token;
    this.getRole();
  },
  created() {
    this.$root.$on("app:search", search => {
      this.search = search;
    });
  },
  beforeDestroy() {
    // dont forget to remove the listener
    this.$root.$off("app:search");
  }
};
</script>
<style scoped>
#tabeleData {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px 0px;
  max-width: 200px !important;
}
.active {
  background-color: gray;
  color: white !important;
}
.activebtn {
  color: black !important;
}
</style>