File: /home/slfopp7cb1df/www/inventorypacket.com/resources/src/views/app/pages/products/brands.vue
<template>
<div class="main-content">
<breadcumb :page="$t('Brand')" :folder="$t('Products')"/>
<div v-if="isLoading" class="loading_page spinner spinner-primary mr-3"></div>
<b-card class="wrapper" v-if="!isLoading">
<vue-good-table
mode="remote"
:columns="columns"
:totalRows="totalRows"
:rows="brands"
@on-page-change="onPageChange"
@on-per-page-change="onPerPageChange"
@on-sort-change="onSortChange"
@on-search="onSearch"
:search-options="{
enabled: true,
placeholder: $t('Search_this_table'),
}"
:select-options="{
enabled: true ,
clearSelectionText: '',
}"
@on-selected-rows-change="selectionChanged"
:pagination-options="{
enabled: true,
mode: 'records',
nextLabel: 'next',
prevLabel: 'prev',
}"
styleClass="table-hover tableOne vgt-table"
>
<div slot="selected-row-actions">
<button class="btn btn-danger btn-sm" @click="delete_by_selected()">{{$t('Del')}}</button>
</div>
<div slot="table-actions" class="mt-2 mb-3">
<b-button @click="New_Brand()" class="btn-rounded" variant="btn btn-primary btn-icon m-1">
<i class="i-Add"></i>
{{$t('Add')}}
</b-button>
</div>
<template slot="table-row" slot-scope="props">
<span v-if="props.column.field == 'actions'">
<a @click="Edit_Brand(props.row)" title="Edit" v-b-tooltip.hover>
<i class="i-Edit text-25 text-success"></i>
</a>
<a title="Delete" v-b-tooltip.hover @click="Delete_Brand(props.row.id)">
<i class="i-Close-Window text-25 text-danger"></i>
</a>
</span>
<span v-else-if="props.column.field == 'image'">
<b-img
thumbnail
height="50"
width="50"
fluid
:src="'/images/brands/' + props.row.image"
alt="image"
></b-img>
</span>
</template>
</vue-good-table>
</b-card>
<validation-observer ref="Create_brand">
<b-modal hide-footer size="md" id="New_brand" :title="editmode?$t('Edit'):$t('Add')">
<b-form @submit.prevent="Submit_Brand" enctype="multipart/form-data">
<b-row>
<!-- Brand Name -->
<b-col md="12">
<validation-provider
name="Brand Name"
:rules="{ required: true , min:3 , max:20}"
v-slot="validationContext"
>
<b-form-group :label="$t('BrandName') + ' ' + '*'">
<b-form-input
:placeholder="$t('Enter_Name_Brand')"
:state="getValidationState(validationContext)"
aria-describedby="Name-feedback"
label="Name"
v-model="brand.name"
></b-form-input>
<b-form-invalid-feedback id="Name-feedback">{{ validationContext.errors[0] }}</b-form-invalid-feedback>
</b-form-group>
</validation-provider>
</b-col>
<!-- Brand Description -->
<b-col md="12">
<validation-provider
name="Brand Description"
:rules="{ max:30}"
v-slot="validationContext"
>
<b-form-group :label="$t('BrandDescription')">
<b-form-textarea
rows="3"
:placeholder="$t('Enter_Description_Brand')"
:state="getValidationState(validationContext)"
aria-describedby="Description-feedback"
label="Description"
v-model="brand.description"
></b-form-textarea>
<b-form-invalid-feedback
id="Description-feedback"
>{{ validationContext.errors[0] }}</b-form-invalid-feedback>
</b-form-group>
</validation-provider>
</b-col>
<!-- -Brand Image -->
<b-col md="12">
<validation-provider name="Image" ref="Image" rules="mimes:image/*|size:200">
<b-form-group slot-scope="{validate, valid, errors }" :label="$t('BrandImage')">
<input
:state="errors[0] ? false : (valid ? true : null)"
:class="{'is-invalid': !!errors.length}"
@change="onFileSelected"
label="Choose Image"
type="file"
>
<b-form-invalid-feedback id="Image-feedback">{{ errors[0] }}</b-form-invalid-feedback>
</b-form-group>
</validation-provider>
</b-col>
<b-col md="12" class="mt-3">
<b-button variant="primary" type="submit" :disabled="SubmitProcessing"><i class="i-Yes me-2 font-weight-bold"></i> {{$t('submit')}}</b-button>
<div v-once class="typo__p" v-if="SubmitProcessing">
<div class="spinner sm spinner-primary mt-3"></div>
</div>
</b-col>
</b-row>
</b-form>
</b-modal>
</validation-observer>
</div>
</template>
<script>
import NProgress from "nprogress";
export default {
metaInfo: {
title: "Brand"
},
data() {
return {
isLoading: true,
SubmitProcessing:false,
serverParams: {
columnFilters: {},
sort: {
field: "id",
type: "desc"
},
page: 1,
perPage: 10
},
selectedIds: [],
totalRows: "",
search: "",
data: new FormData(),
editmode: false,
brands: [],
limit: "10",
brand: {
id: "",
name: "",
description: "",
image: ""
}
};
},
computed: {
columns() {
return [
{
label: this.$t("BrandImage"),
field: "image",
tdClass: "text-left",
thClass: "text-left"
},
{
label: this.$t("BrandName"),
field: "name",
tdClass: "text-left",
thClass: "text-left"
},
{
label: this.$t("BrandDescription"),
field: "description",
tdClass: "text-left",
thClass: "text-left"
},
{
label: this.$t("Action"),
field: "actions",
html: true,
tdClass: "text-right",
thClass: "text-right",
sortable: false
}
];
}
},
methods: {
//---- update Params Table
updateParams(newProps) {
this.serverParams = Object.assign({}, this.serverParams, newProps);
},
//---- Event Page Change
onPageChange({ currentPage }) {
if (this.serverParams.page !== currentPage) {
this.updateParams({ page: currentPage });
this.Get_Brands(currentPage);
}
},
//---- Event Per Page Change
onPerPageChange({ currentPerPage }) {
if (this.limit !== currentPerPage) {
this.limit = currentPerPage;
this.updateParams({ page: 1, perPage: currentPerPage });
this.Get_Brands(1);
}
},
//---- Event on Sort Change
onSortChange(params) {
this.updateParams({
sort: {
type: params[0].type,
field: params[0].field
}
});
this.Get_Brands(this.serverParams.page);
},
//---- Event Select Rows
selectionChanged({ selectedRows }) {
this.selectedIds = [];
selectedRows.forEach((row, index) => {
this.selectedIds.push(row.id);
});
},
//---- Event on Search
onSearch(value) {
this.search = value.searchTerm;
this.Get_Brands(this.serverParams.page);
},
//---- Validation State Form
getValidationState({ dirty, validated, valid = null }) {
return dirty || validated ? valid : null;
},
//------------- Submit Validation Create & Edit Brand
Submit_Brand() {
this.$refs.Create_brand.validate().then(success => {
if (!success) {
this.makeToast(
"danger",
this.$t("Please_fill_the_form_correctly"),
this.$t("Failed")
);
} else {
if (!this.editmode) {
this.Create_Brand();
} else {
this.Update_Brand();
}
}
});
},
//------ Toast
makeToast(variant, msg, title) {
this.$root.$bvToast.toast(msg, {
title: title,
variant: variant,
solid: true
});
},
//------------------------------ Event Upload Image -------------------------------\\
async onFileSelected(e) {
const { valid } = await this.$refs.Image.validate(e);
if (valid) {
this.brand.image = e.target.files[0];
} else {
this.brand.image = "";
}
},
//------------------------------ Modal (create Brand) -------------------------------\\
New_Brand() {
this.reset_Form();
this.editmode = false;
this.$bvModal.show("New_brand");
},
//------------------------------ Modal (Update Brand) -------------------------------\\
Edit_Brand(brand) {
this.Get_Brands(this.serverParams.page);
this.reset_Form();
this.brand = brand;
this.editmode = true;
this.$bvModal.show("New_brand");
},
//---------------------------------------- Get All brands-----------------\\
Get_Brands(page) {
// Start the progress bar.
NProgress.start();
NProgress.set(0.1);
axios
.get(
"brands?page=" +
page +
"&SortField=" +
this.serverParams.sort.field +
"&SortType=" +
this.serverParams.sort.type +
"&search=" +
this.search +
"&limit=" +
this.limit
)
.then(response => {
this.brands = response.data.brands;
this.totalRows = response.data.totalRows;
// Complete the animation of theprogress bar.
NProgress.done();
this.isLoading = false;
})
.catch(response => {
// Complete the animation of theprogress bar.
NProgress.done();
setTimeout(() => {
this.isLoading = false;
}, 500);
});
},
//---------------------------------------- Create new brand-----------------\\
Create_Brand() {
var self = this;
self.SubmitProcessing = true;
self.data.append("name", self.brand.name);
self.data.append("description", self.brand.description);
self.data.append("image", self.brand.image);
axios
.post("brands", self.data)
.then(response => {
self.SubmitProcessing = false;
Fire.$emit("Event_Brand");
this.makeToast(
"success",
this.$t("Create.TitleBrand"),
this.$t("Success")
);
})
.catch(error => {
self.SubmitProcessing = false;
this.makeToast("danger", this.$t("InvalidData"), this.$t("Failed"));
});
},
//---------------------------------------- Update Brand-----------------\\
Update_Brand() {
var self = this;
self.SubmitProcessing = true;
self.data.append("name", self.brand.name);
self.data.append("description", self.brand.description);
self.data.append("image", self.brand.image);
self.data.append("_method", "put");
axios
.post("brands/" + self.brand.id, self.data)
.then(response => {
self.SubmitProcessing = false;
Fire.$emit("Event_Brand");
this.makeToast(
"success",
this.$t("Update.TitleBrand"),
this.$t("Success")
);
})
.catch(error => {
self.SubmitProcessing = false;
this.makeToast("danger", this.$t("InvalidData"), this.$t("Failed"));
});
},
//---------------------------------------- Reset Form -----------------\\
reset_Form() {
this.brand = {
id: "",
name: "",
description: "",
image: ""
};
this.data = new FormData();
},
//---------------------------------------- Delete Brand -----------------\\
Delete_Brand(id) {
this.$swal({
title: this.$t("Delete.Title"),
text: this.$t("Delete.Text"),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#3085d6",
cancelButtonColor: "#d33",
cancelButtonText: this.$t("Delete.cancelButtonText"),
confirmButtonText: this.$t("Delete.confirmButtonText")
}).then(result => {
if (result.value) {
axios
.delete("brands/" + id)
.then(() => {
this.$swal(
this.$t("Delete.Deleted"),
this.$t("Delete.TitleBrand"),
"success"
);
Fire.$emit("Delete_Brand");
})
.catch(() => {
this.$swal(
this.$t("Delete.Failed"),
this.$t("Delete.Therewassomethingwronge"),
"warning"
);
});
}
});
},
//---- Delete brands by selection
delete_by_selected() {
this.$swal({
title: this.$t("Delete.Title"),
text: this.$t("Delete.Text"),
type: "warning",
showCancelButton: true,
confirmButtonColor: "#3085d6",
cancelButtonColor: "#d33",
cancelButtonText: this.$t("Delete.cancelButtonText"),
confirmButtonText: this.$t("Delete.confirmButtonText")
}).then(result => {
if (result.value) {
// Start the progress bar.
NProgress.start();
NProgress.set(0.1);
axios
.post("brands/delete/by_selection", {
selectedIds: this.selectedIds
})
.then(() => {
this.$swal(
this.$t("Delete.Deleted"),
this.$t("Delete.TitleBrand"),
"success"
);
Fire.$emit("Delete_Brand");
})
.catch(() => {
// Complete the animation of theprogress bar.
setTimeout(() => NProgress.done(), 500);
this.$swal(
this.$t("Delete.Failed"),
this.$t("Delete.Therewassomethingwronge"),
"warning"
);
});
}
});
}
}, //end Methods
created: function() {
this.Get_Brands(1);
Fire.$on("Event_Brand", () => {
setTimeout(() => {
this.Get_Brands(this.serverParams.page);
this.$bvModal.hide("New_brand");
}, 500);
});
Fire.$on("Delete_Brand", () => {
setTimeout(() => {
this.Get_Brands(this.serverParams.page);
}, 500);
});
}
};
</script>