@visa/nova-react
Version:
Visa Product Design System Nova React library
18 lines (17 loc) • 1.94 kB
JavaScript
/**
* Copyright (c) 2025 Visa, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**/
import{useState as a}from"react";import{cardValidators as r,removeNonDigits as d,findCardValidatorFromBinRegex as e,removeCharactersAfterMaxLength as t,formatCardNumberFromValidator as l,moduloCheck as n,cardNumberLengthCheck as i}from"./utils.mjs";export{cardValidatorsArray,defaultSpacingPattern,formatCardNumber}from"./utils.mjs";const o=o=>{const{allowedBrands:u,defaultCardNumberInputValue:m,filteredForBrands:s,trimToMaxLength:b,validators:f}={defaultCardNumberInputValue:"",trimToMaxLength:!0,validators:r,...o},[g,p]=a(m),N=s?.length?s.map((a=>f[a])):Object.values(f),c=d(g),V=e(c,N),h=b?t(c,V?.maxLength):c,C=l(h,V),v=!!V,x=u?.length?u.includes(V?.brand||""):!!V?.brand,B=n(h),L=i(h,V?.lengths),j=v&&x&&B&&L;return{binValid:v,brand:V?.brand,brandValid:x,cardNumberInputValue:g,cardNumberValidator:V,cleanCardNumber:h,formattedCardNumber:C,lastDigitValid:B,lengthValid:L,onCardNumberChange:a=>p(a),valid:j}};o.displayName="useCardNumberValidation",o.defaultProps={allowedBrands:void 0,defaultCardNumber:"",filteredForBrands:void 0,trimToMaxLength:!0,validators:{...r}};export{i as cardNumberLengthCheck,r as cardValidators,o as default,e as findCardValidatorFromBinRegex,l as formatCardNumberFromValidator,n as moduloCheck,t as removeCharactersAfterMaxLength,d as removeNonDigits,o as useCardNumberValidation};