Files
b2b.redline.com.pl/admin086k8e6t9/themes/new-theme/js/product-page/product-search-autocomplete.js
2025-06-24 14:14:35 +02:00

131 lines
4.5 KiB
JavaScript

/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
import Bloodhound from 'typeahead.js';
export default function() {
$(document).ready(function() {
$('.autocomplete-search').each(function() {
loadAutocomplete($(this), false);
});
$('.autocomplete-search').on('buildTypeahead', function() {
loadAutocomplete($(this), true);
});
});
function loadAutocomplete(object, reset) {
let autocompleteObject = $(object);
let autocompleteFormId = autocompleteObject.attr('data-formid');
let formId = `#${autocompleteFormId}-data .delete`;
let autocompleteSource = `${autocompleteFormId}_source`;
if (true === reset) {
$('#' + autocompleteFormId).typeahead('destroy');
}
$(document).on('click', formId, (e) => {
e.preventDefault();
window.modalConfirmation.create(window.translate_javascripts['Are you sure to delete this?'], null, {
onContinue: () => {
$(e.target).parents('.media').remove();
// Save current product after its related product has been removed
$('#submit').click();
}
}).show();
});
document[autocompleteSource] = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.whitespace,
queryTokenizer: Bloodhound.tokenizers.whitespace,
identify: function(obj) {
return obj[autocompleteObject.attr('data-mappingvalue')];
},
remote: {
url: autocompleteObject.attr('data-remoteurl'),
cache: false,
wildcard: '%QUERY',
transform: function(response) {
if (!response) {
return [];
}
return response;
}
}
});
//define typeahead
$('#' + autocompleteFormId).typeahead({
limit: 20,
minLength: 2,
highlight: true,
cache: false,
hint: false,
}, {
display: autocompleteObject.attr('data-mappingname'),
source: document[autocompleteFormId + '_source'],
limit: 30,
templates: {
suggestion: function(item) {
return '<div><img src="' + item.image + '" style="width:50px" /> ' + item.name + '</div>';
}
}
}).bind('typeahead:select', function(e, suggestion) {
//if collection length is up to limit, return
let formIdItem = $(`#${autocompleteFormId}-data li`);
let autocompleteFormLimit = parseInt(autocompleteObject.attr('data-limit'));
if (autocompleteFormLimit !== 0 && formIdItem.length >= autocompleteFormLimit) {
return false;
}
var value = suggestion[autocompleteObject.attr('data-mappingvalue')];
if (suggestion.id_product_attribute) {
value = value + ',' + suggestion.id_product_attribute;
}
let tplcollection = $('#tplcollection-' + autocompleteFormId);
let tplcollectionHtml = tplcollection.html().replace('%s', suggestion[autocompleteObject.attr('data-mappingname')]);
var html = `<li class="media">
<div class="media-left">
<img class="media-object image" src="${suggestion.image}" />
</div>
<div class="media-body media-middle">
${tplcollectionHtml}
</div>
<input type="hidden" name="${autocompleteObject.attr('data-fullname')}[data][]" value="${value}" />
</li>`;
$('#' + autocompleteFormId + '-data').append(html);
}).bind('typeahead:close', function(e) {
$(e.target).val('');
});
}
}