You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
670 B
30 lines
670 B
import { REP_IPV4 } from '../consts/REG_EXP_PATTERNS'; |
|
|
|
import testNotBlank from './testNotBlank'; |
|
|
|
const buildIPAddressTestBatch: BuildInputTestBatchFunction = ( |
|
inputName, |
|
onSuccess, |
|
{ isRequired, onFinishBatch, ...defaults } = {}, |
|
onIPv4TestFailure, |
|
) => ({ |
|
defaults: { ...defaults, onSuccess }, |
|
isRequired, |
|
onFinishBatch, |
|
tests: [ |
|
{ |
|
test: testNotBlank, |
|
}, |
|
{ |
|
onFailure: (...args) => { |
|
onIPv4TestFailure( |
|
<>{inputName} should be a valid IPv4 address.</>, |
|
...args, |
|
); |
|
}, |
|
test: ({ value }) => REP_IPV4.test(value as string), |
|
}, |
|
], |
|
}); |
|
|
|
export default buildIPAddressTestBatch;
|
|
|