94 lines
3.1 KiB
JavaScript
94 lines
3.1 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)
|
|
*/
|
|
|
|
(function ($) {
|
|
$.fn.categorytree = function (settings) {
|
|
const isMethodCall = (typeof settings === 'string'); // is this a method call like $().categorytree("unselect")
|
|
const returnValue = this;
|
|
|
|
// if a method call execute the method on all selected instances
|
|
if (isMethodCall) {
|
|
switch (settings) {
|
|
case 'unselect':
|
|
this.find('.radio > label > input:radio').prop('checked', false);
|
|
// TODO: add a callback method feature?
|
|
break;
|
|
case 'unfold':
|
|
this.find('ul').show();
|
|
this.find('li').has('ul').removeClass('more').addClass('less');
|
|
break;
|
|
case 'fold':
|
|
this.find('ul ul').hide();
|
|
this.find('li').has('ul').removeClass('less').addClass('more');
|
|
break;
|
|
default:
|
|
// eslint-disable-next-line
|
|
throw 'Unknown method';
|
|
}
|
|
|
|
// eslint-disable-next-line
|
|
}
|
|
|
|
// initialize tree
|
|
else {
|
|
const clickHandler = function (event) {
|
|
let $ui = $(event.target);
|
|
|
|
if ($ui.attr('type') === 'radio' || $ui.attr('type') === 'checkbox') {
|
|
return;
|
|
}
|
|
event.stopPropagation();
|
|
|
|
if ($ui.next('ul').length === 0) {
|
|
$ui = $ui.parent();
|
|
}
|
|
|
|
$ui.next('ul').toggle();
|
|
if ($ui.next('ul').is(':visible')) {
|
|
$ui.parent('li').removeClass('more').addClass('less');
|
|
} else {
|
|
$ui.parent('li').removeClass('less').addClass('more');
|
|
}
|
|
|
|
// eslint-disable-next-line
|
|
return false;
|
|
};
|
|
this.find('li > ul').each((i, item) => {
|
|
const $inputWrapper = $(item).prev('div');
|
|
$inputWrapper.on('click', clickHandler);
|
|
$inputWrapper.find('label').on('click', clickHandler);
|
|
|
|
if ($(item).is(':visible')) {
|
|
$(item).parent('li').removeClass('more').addClass('less');
|
|
} else {
|
|
$(item).parent('li').removeClass('less').addClass('more');
|
|
}
|
|
});
|
|
}
|
|
// return the jquery selection (or if it was a method call that returned a value - the returned value)
|
|
return returnValue;
|
|
};
|
|
}(jQuery));
|