131 lines
4.4 KiB
JavaScript
131 lines
4.4 KiB
JavaScript
/**
|
|
* 2007-2018 PrestaShop
|
|
*
|
|
* 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.txt.
|
|
* 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 http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2018 PrestaShop SA
|
|
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
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('');
|
|
});
|
|
}
|
|
}
|