aboutsummaryrefslogtreecommitdiff
path: root/src/components/invoice_items_table.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/invoice_items_table.vue')
-rw-r--r--src/components/invoice_items_table.vue142
1 files changed, 142 insertions, 0 deletions
diff --git a/src/components/invoice_items_table.vue b/src/components/invoice_items_table.vue
new file mode 100644
index 0000000..6a89f5a
--- /dev/null
+++ b/src/components/invoice_items_table.vue
@@ -0,0 +1,142 @@
+<script setup lang="js">
+import { ref, onMounted, toRaw } from 'vue'
+import axios from 'axios'
+import { useToast } from 'vue-toast-notification'
+
+const props = defineProps(["invoiceId"])
+
+const toast = useToast({
+ position: 'top-right'
+})
+
+const items = ref([])
+const isLoading = ref(false)
+
+const getItems = async () => {
+ items.value = []
+ isLoading.value = true
+
+ try {
+ const res = await axios.get(`/invoice/${props.invoiceId}/item`)
+ if (res.status === 200) {
+ items.value = res.data.data
+ }
+ } catch (err) {
+ toast.error('An unhandled exception occoured. Please check logs')
+ console.error(err)
+ }
+
+ isLoading.value = false
+}
+
+const handleDelete = async (id) => {
+ alert("coming soon")
+ return
+ try {
+ const res = await axios.delete(`/item/${id}`)
+ if (res.status === 200) {
+ toast.success('Successfully deleted item')
+ }
+
+ getAllItems()
+ } catch (err) {
+ toast.error('An unhandled exception occoured. Please check logs')
+ console.error(err)
+ }
+}
+
+onMounted(() => {
+ getItems()
+})
+</script>
+
+<template>
+ <div v-if="isLoading" class="w-100 d-flex justify-content-center">
+ <div class="spinner-border" role="status">
+ <span class="sr-only"></span>
+ </div>
+ </div>
+
+ <table v-else class="table table-striped table-hover">
+ <thead>
+ <tr>
+ <th scope="col">#</th>
+ <th scope="col">Item Name</th>
+ <th scope="col">Description</th>
+ <th scope="col">Brand</th>
+ <th scope="col">HSN</th>
+ <th scope="col">Unit Price</th>
+ <th scope="col">UOM</th>
+
+ <th scope="col" class="table-action-column">
+ <div class="wrapper">
+ <RouterLink to="/item/new">
+ <button class="btn btn-dark">
+ <i class="bi bi-plus-lg"></i>
+ </button>
+ </RouterLink>
+ <button class="btn btn-dark" v-on:click="getAllItems">
+ <i class="bi bi-arrow-clockwise"></i>
+ </button>
+ </div>
+ </th>
+ </tr>
+ </thead>
+
+ <tbody>
+ <tr v-for="(item, index) in items" :key="item['id']">
+ <td scope="row">{{ index + 1 }}</td>
+ <td>{{ item.Name }}</td>
+ <td>{{ item.Description }}</td>
+ <td>{{ item.BrandName }}</td>
+ <td>{{ item.HSN }}</td>
+ <td>{{ item.UnitPrice }}</td>
+ <td>{{ item.UnitOfMeasure }}</td>
+
+ <td class="table-action-column">
+ <div class="wrapper">
+ <button class="btn" data-bs-toggle="dropdown" aria-expanded="false">
+ <i class="bi bi-caret-down-fill"></i>
+ </button>
+
+ <div class="dropdown">
+ <ul class="dropdown-menu">
+ <li>
+ <button class="dropdown-item" v-on:click="console.log('Edit: ', item.ID)">
+ Edit Item
+ </button>
+ </li>
+ <li>
+ <button class="dropdown-item" v-on:click="handleDelete(item.ID)">
+ Delete Item
+ </button>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+</template>
+
+<style>
+.table-action-column .wrapper {
+ display: flex;
+ justify-content: flex-end;
+}
+
+thead .table-action-column .wrapper {
+ gap: 0.5rem;
+}
+
+tbody .table-action-column .btn {
+ opacity: 0;
+ transition: opacity 300ms;
+}
+
+tbody tr:hover .table-action-column .btn {
+ opacity: 1;
+ transition: opacity 300ms;
+}
+</style>