|
|
|
import { REP_PEACEFUL_STRING } from '../consts/REG_EXP_PATTERNS';
|
|
|
|
|
|
|
|
import testNotBlank from './testNotBlank';
|
|
|
|
import { InlineMonoText } from '../../components/Text';
|
|
|
|
|
|
|
|
const buildPeacefulStringTestBatch: BuildInputTestBatchFunction = (
|
|
|
|
inputName,
|
|
|
|
onSuccess,
|
|
|
|
{ isRequired, onFinishBatch, ...defaults } = {},
|
|
|
|
onTestPeacefulStringFailureAppend,
|
|
|
|
) => ({
|
|
|
|
defaults: { ...defaults, onSuccess },
|
|
|
|
isRequired,
|
|
|
|
onFinishBatch,
|
|
|
|
tests: [
|
|
|
|
{
|
|
|
|
onFailure: (...args) => {
|
|
|
|
onTestPeacefulStringFailureAppend(
|
|
|
|
<>
|
|
|
|
{inputName} cannot contain single-quote (
|
|
|
|
<InlineMonoText text="'" />
|
|
|
|
), double-quote (<InlineMonoText text='"' />
|
|
|
|
), slash (<InlineMonoText text="/" />
|
|
|
|
), backslash (<InlineMonoText text="\" />
|
|
|
|
), angle brackets (<InlineMonoText text="<>" />
|
|
|
|
), curly brackets (<InlineMonoText text="{}" />
|
|
|
|
).
|
|
|
|
</>,
|
|
|
|
...args,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
test: ({ value }) => REP_PEACEFUL_STRING.test(value as string),
|
|
|
|
},
|
|
|
|
{ test: testNotBlank },
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
export default buildPeacefulStringTestBatch;
|