102 lines
3.4 KiB
JavaScript
102 lines
3.4 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)
|
|
*/
|
|
|
|
/**
|
|
* Generates random values for inputs.
|
|
*
|
|
* Usage:
|
|
*
|
|
* There should be a button in HTML with 2 required data-* properties:
|
|
* 1. data-target-input-id - input id for which value should be generated
|
|
* 2. data-generated-value-size -
|
|
*
|
|
* Example button: <button class="js-generator-btn"
|
|
* data-target-input-id="my-input-id"
|
|
* data-generated-value-length="16"
|
|
* >
|
|
* Generate!
|
|
* </button>
|
|
*
|
|
* In JavaScript you have to enable this functionality using GeneratableInput component like so:
|
|
*
|
|
* const generateableInput = new GeneratableInput();
|
|
* generateableInput.attachOn('.js-generator-btn'); // every time our button is clicked
|
|
* // it will generate random value of 16 characters
|
|
* // for input with id of "my-input-id"
|
|
*
|
|
* You can attach as many different buttons as you like using "attachOn()" function
|
|
* as long as 2 required data-* attributes are present at each button.
|
|
*/
|
|
export default class GeneratableInput {
|
|
constructor() {
|
|
return {
|
|
attachOn: (btnSelector) => this.attachOn(btnSelector),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Attaches event listener on button than can generate value
|
|
*
|
|
* @param {String} generatorBtnSelector
|
|
*
|
|
* @private
|
|
*/
|
|
attachOn(generatorBtnSelector) {
|
|
const generatorBtn = document.querySelector(generatorBtnSelector);
|
|
|
|
if (generatorBtn !== null) {
|
|
generatorBtn.addEventListener('click', (event) => {
|
|
const {attributes} = event.currentTarget;
|
|
|
|
const targetInputId = attributes.getNamedItem('data-target-input-id').value;
|
|
const generatedValueLength = parseInt(attributes.getNamedItem('data-generated-value-length').value, 10);
|
|
|
|
const targetInput = document.querySelector(`#${targetInputId}`);
|
|
targetInput.value = this.generateValue(generatedValueLength);
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generates random value for input
|
|
*
|
|
* @param {Number} length
|
|
*
|
|
* @returns {string}
|
|
*
|
|
* @private
|
|
*/
|
|
generateValue(length) {
|
|
const chars = '123456789ABCDEFGHIJKLMNPQRSTUVWXYZ';
|
|
let generatedValue = '';
|
|
|
|
for (let i = 1; i <= length; i += 1) {
|
|
generatedValue += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
}
|
|
|
|
return generatedValue;
|
|
}
|
|
}
|