UNPKG

rsuite

Version:

A suite of react components

33 lines (32 loc) 1.34 kB
'use client'; "use strict"; exports.__esModule = true; exports.convertMaskToPlaceholder = convertMaskToPlaceholder; exports.defaultPlaceholderChar = void 0; exports.processCaretTraps = processCaretTraps; const emptyArray = []; const strCaretTrap = '[]'; const defaultPlaceholderChar = exports.defaultPlaceholderChar = '_'; function convertMaskToPlaceholder(mask = emptyArray, placeholderChar = defaultPlaceholderChar) { if (!Array.isArray(mask)) { throw new Error('Text-mask:convertMaskToPlaceholder; The mask property must be an array.'); } if (mask.indexOf(placeholderChar) !== -1) { throw new Error('Placeholder character must not be used as part of the mask. Please specify a character ' + 'that is not present in your mask as your placeholder character.\n\n' + `The placeholder character that was received is: ${JSON.stringify(placeholderChar)}\n\n` + `The mask that was received is: ${JSON.stringify(mask)}`); } return mask.map(char => { return char instanceof RegExp ? placeholderChar : char; }).join(''); } function processCaretTraps(mask) { const indexes = []; let indexOfCaretTrap; while (indexOfCaretTrap = mask.indexOf(strCaretTrap), indexOfCaretTrap !== -1) { indexes.push(indexOfCaretTrap); mask.splice(indexOfCaretTrap, 1); } return { maskWithoutCaretTraps: mask, indexes }; }