[UPDT] ASSET: Asset getCurrentLanguageCode function to check and retrieve language code from HTML attribute
This commit is contained in:
@@ -8,85 +8,100 @@ var downloadMessages = {
|
||||
|
||||
function getCookie(name) {
|
||||
let cookieValue = null;
|
||||
if (document.cookie && document.cookie !== '') {
|
||||
const cookies = document.cookie.split(';');
|
||||
for (let i = 0; i < cookies.length; i++) {
|
||||
const cookie = cookies[i].trim();
|
||||
// Does this cookie string begin with the name we want?
|
||||
if (cookie.substring(0, name.length + 1) === (name + '=')) {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
break;
|
||||
}
|
||||
if (document.cookie && document.cookie !== "") {
|
||||
const cookies = document.cookie.split(";");
|
||||
for (let i = 0; i < cookies.length; i++) {
|
||||
const cookie = cookies[i].trim();
|
||||
// Does this cookie string begin with the name we want?
|
||||
if (cookie.substring(0, name.length + 1) === name + "=") {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return cookieValue;
|
||||
}
|
||||
|
||||
function getCurrentLanguageCode(callback) {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/employee/get-language-code/",
|
||||
success: function (response) {
|
||||
var languageCode = response.language_code;
|
||||
callback(languageCode); // Pass the language code to the callback
|
||||
},
|
||||
});
|
||||
var languageCode = $("#main-section-data").attr("data-lang");
|
||||
var allowedLanguageCodes = ["ar", "de", "es", "en", "fr"];
|
||||
if (allowedLanguageCodes.includes(languageCode)) {
|
||||
callback(languageCode);
|
||||
} else {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/employee/get-language-code/",
|
||||
success: function (response) {
|
||||
var ajaxLanguageCode = response.language_code;
|
||||
$("#main-section-data").attr("data-lang", ajaxLanguageCode);
|
||||
callback(
|
||||
allowedLanguageCodes.includes(ajaxLanguageCode)
|
||||
? ajaxLanguageCode
|
||||
: "en"
|
||||
);
|
||||
},
|
||||
error: function () {
|
||||
callback("en");
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
$("#import-dropdown").hide();
|
||||
// asset category accordion
|
||||
$('.oh-accordion-meta__header--custom').on("click", function () {
|
||||
$(this).toggleClass('oh-accordion-meta__header--show');
|
||||
$(this).next().toggleClass('d-none');
|
||||
})
|
||||
// asset category accordion
|
||||
$(".oh-accordion-meta__header--custom").on("click", function () {
|
||||
$(this).toggleClass("oh-accordion-meta__header--show");
|
||||
$(this).next().toggleClass("d-none");
|
||||
});
|
||||
|
||||
function updateAssetCount(assetCategoryId) {
|
||||
// used to update the count of asset in asset category
|
||||
var csrf_token = $('input[name="csrfmiddlewaretoken"]').attr('value');
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "asset-count-update",
|
||||
data: { 'asset_category_id': assetCategoryId, 'csrfmiddlewaretoken': csrf_token },
|
||||
dataType: "json",
|
||||
success: function (response) {
|
||||
$(`#asset-count${assetCategoryId}`).text(response);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// when created the count of the asset category
|
||||
$('.asset-create').on('click', function () {
|
||||
var assetCategoryId = $(this).attr('data-category-id').trim();
|
||||
setTimeout(function () {
|
||||
updateAssetCount(assetCategoryId);
|
||||
}, 1000);
|
||||
function updateAssetCount(assetCategoryId) {
|
||||
// used to update the count of asset in asset category
|
||||
var csrf_token = $('input[name="csrfmiddlewaretoken"]').attr("value");
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "asset-count-update",
|
||||
data: {
|
||||
asset_category_id: assetCategoryId,
|
||||
csrfmiddlewaretoken: csrf_token,
|
||||
},
|
||||
dataType: "json",
|
||||
success: function (response) {
|
||||
$(`#asset-count${assetCategoryId}`).text(response);
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
// search dropdown hiding
|
||||
// when created the count of the asset category
|
||||
$(".asset-create").on("click", function () {
|
||||
var assetCategoryId = $(this).attr("data-category-id").trim();
|
||||
setTimeout(function () {
|
||||
updateAssetCount(assetCategoryId);
|
||||
}, 1000);
|
||||
});
|
||||
|
||||
// Hide the select element initially
|
||||
$("select[name='type']").hide();
|
||||
|
||||
// Listen for changes to the search input field
|
||||
$("input[name='search']").on("input", function() {
|
||||
// If the input value is not empty, show the select element
|
||||
if ($(this).val().trim() !== "") {
|
||||
$("select[name='type']").show();
|
||||
} else {
|
||||
$("select[name='type']").hide();
|
||||
}
|
||||
});
|
||||
$("#import-button").on("click",function(){
|
||||
$("#import-dropdown").show();
|
||||
})
|
||||
$(".close-import").on("click" , function(){
|
||||
$("#import-dropdown").hide();
|
||||
})
|
||||
|
||||
// search dropdown hiding
|
||||
|
||||
// Hide the select element initially
|
||||
$("select[name='type']").hide();
|
||||
|
||||
// Listen for changes to the search input field
|
||||
$("input[name='search']").on("input", function () {
|
||||
// If the input value is not empty, show the select element
|
||||
if ($(this).val().trim() !== "") {
|
||||
$("select[name='type']").show();
|
||||
} else {
|
||||
$("select[name='type']").hide();
|
||||
}
|
||||
});
|
||||
$("#import-button").on("click", function () {
|
||||
$("#import-dropdown").show();
|
||||
});
|
||||
$(".close-import").on("click", function () {
|
||||
$("#import-dropdown").hide();
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
$("#asset-info-import").click(function (e) {
|
||||
e.preventDefault();
|
||||
var languageCode = null;
|
||||
@@ -95,37 +110,37 @@ $("#asset-info-import").click(function (e) {
|
||||
var confirmMessage = downloadMessages[languageCode];
|
||||
// Use SweetAlert for the confirmation dialog
|
||||
Swal.fire({
|
||||
text: confirmMessage,
|
||||
icon: 'question',
|
||||
showCancelButton: true,
|
||||
confirmButtonColor: '#008000',
|
||||
cancelButtonColor: '#d33',
|
||||
confirmButtonText: 'Confirm'
|
||||
}).then(function(result) {
|
||||
if (result.isConfirmed) {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/asset/asset-excel",
|
||||
dataType: "binary",
|
||||
xhrFields: {
|
||||
responseType: "blob",
|
||||
},
|
||||
success: function (response) {
|
||||
const file = new Blob([response], {
|
||||
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
});
|
||||
const url = URL.createObjectURL(file);
|
||||
const link = document.createElement("a");
|
||||
link.href = url;
|
||||
link.download = "my_excel_file.xlsx";
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
console.error("Error downloading file:", errorThrown);
|
||||
},
|
||||
});
|
||||
}
|
||||
});
|
||||
text: confirmMessage,
|
||||
icon: "question",
|
||||
showCancelButton: true,
|
||||
confirmButtonColor: "#008000",
|
||||
cancelButtonColor: "#d33",
|
||||
confirmButtonText: "Confirm",
|
||||
}).then(function (result) {
|
||||
if (result.isConfirmed) {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: "/asset/asset-excel",
|
||||
dataType: "binary",
|
||||
xhrFields: {
|
||||
responseType: "blob",
|
||||
},
|
||||
success: function (response) {
|
||||
const file = new Blob([response], {
|
||||
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
||||
});
|
||||
const url = URL.createObjectURL(file);
|
||||
const link = document.createElement("a");
|
||||
link.href = url;
|
||||
link.download = "my_excel_file.xlsx";
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
console.error("Error downloading file:", errorThrown);
|
||||
},
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user