All files / components/Admin/AdminOrders/OrdersTable/CreateOrder CustomersBlock.vue

0% Statements 0/5
0% Branches 0/2
0% Functions 0/1
0% Lines 0/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 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 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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150                                                                                                                                                                                                                                                                                                           
<template>
  <div class="d-flex flex-column align-items-center position-relative">
    <div v-if="!user" class="d-flex flex-column w-100">
      <input
        v-model="search"
        class="form-control"
        type="text"
        placeholder="Search customers"
      />
      <div
        v-if="loadingCustomers"
        class="d-flex w-100 justify-content-center p-5"
      >
        <Loader />
      </div>
      <p v-else-if="users.length === 0" class="text-center p-5">
        Nothing not found
      </p>
      <div v-else>
        <BPagination
          v-model="currentPage"
          :total-rows="total"
          :per-page="perPage"
          aria-controls="my-table"
          class="m-0"
          :class="currentPage < 2 && total < perPage && 'd-none'"
        ></BPagination>
        <div
          class="row p-3 w-100 m-0"
          v-for="user in users"
          :key="user.id"
          v-on:click="addCustomer(user)"
        >
          <div class="col-6">
            <p class="text-ellipsis">{{ getCustomerName(user) }}</p>
            <p class="text-ellipsis">{{ user.email }}</p>
          </div>
          <div class="col-6">
            <p class="text-ellipsis">{{ user.state }}</p>
            <p class="text-ellipsis">{{ user.contact_no }}</p>
          </div>
        </div>
      </div>
    </div>
    <div class="w-100 row" v-if="user">
      <div class="text-ellipsis col-6">
        {{ getCustomerName(user) }}
      </div>
      <div class="text-ellipsis col-2">{{ user.state }}sss</div>
      <div class="text-ellipsis col-3">{{ user.contact_no }}ssss</div>
      <div
        class="col-1 d-flex justify-content-end align-items-start"
        v-on:click="deleteCustomer"
      >
        <BIconX />
      </div>
    </div>
    <AddCustomerModal v-on:addCustomer="addCustomer" />
  </div>
</template>

<script>
import { mapActions } from "vuex";
 
import AddCustomerModal from "./AddCustomerModal.vue";
import Loader from "@/components/common/Loader.vue";
 
export default {
  name: "CustomersBlock",
  components: { AddCustomerModal, Loader },
  data: () => ({
    perPage: 5,
    currentPage: 1,
    search: "",
    users: [],
    user: null,
    total: 0,
    timer: null,
    loadingCustomers: false,
  }),
  watch: {
    search: async function () {
      const { search } = this;
 
      if (search) {
        clearInterval(this.timer);
        this.timer = null;
 
        this.timer = setTimeout(async () => {
          await this.getCust();
        }, 1000);
      } else {
        clearInterval(this.timer);
        this.timer = null;
 
        await this.getCust();
      }
    },
  },
  methods: {
    ...mapActions({ getCustomers: "admin_orders/getCustomers" }),
    addCustomer: function (user) {
      this.user = user;
      this.$emit("setCustomer", user);
    },
    deleteCustomer: function () {
      this.user = null;
      this.$emit("setCustomer", null);
    },
    getCust: async function () {
      const { search, currentPage, perPage } = this;
 
      this.loadingCustomers = true;
      const { customers, total } = await this.getCustomers({
        search,
        currentPage,
        perPage,
      });
 
      this.users = customers;
      this.total = total;
 
      this.loadingCustomers = false;
    },
    getCustomerName: function (user) {
      const { first_name, last_name, username } = user;
 
      if (first_name) {
        return `${first_name} ${last_name}`;
      }
      return username;
    },
  },
  async mounted() {
    await this.getCust();
  },
  destroyed() {
    if (this.timer) {
      clearTimeout(this.timer);
      this.timer = null;
    }
  },
};
</script>
 
<style scoped>
input {
  max-width: 100%;
}
</style>