mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 06:27:23 -04:00
45 lines
917 B
Plaintext
45 lines
917 B
Plaintext
{{# def.definitions }}
|
|
{{# def.errors }}
|
|
{{# def.setupKeyword }}
|
|
{{# def.setupNextLevel }}
|
|
|
|
var {{=$errs}} = errors;
|
|
var prevValid{{=$lvl}} = false;
|
|
var {{=$valid}} = false;
|
|
|
|
{{ var $currentBaseId = $it.baseId; }}
|
|
{{# def.setCompositeRule }}
|
|
|
|
{{~ $schema:$sch:$i }}
|
|
{{? {{# def.nonEmptySchema:$sch }} }}
|
|
{{
|
|
$it.schema = $sch;
|
|
$it.schemaPath = $schemaPath + '[' + $i + ']';
|
|
$it.errSchemaPath = $errSchemaPath + '/' + $i;
|
|
}}
|
|
|
|
{{# def.insertSubschemaCode }}
|
|
{{??}}
|
|
var {{=$nextValid}} = true;
|
|
{{?}}
|
|
|
|
{{? $i }}
|
|
if ({{=$nextValid}} && prevValid{{=$lvl}})
|
|
{{=$valid}} = false;
|
|
else {
|
|
{{ $closingBraces += '}'; }}
|
|
{{?}}
|
|
|
|
if ({{=$nextValid}}) {{=$valid}} = prevValid{{=$lvl}} = true;
|
|
{{~}}
|
|
|
|
{{# def.resetCompositeRule }}
|
|
|
|
{{= $closingBraces }}
|
|
|
|
if (!{{=$valid}}) {
|
|
{{# def.error:'oneOf' }}
|
|
} else {
|
|
{{# def.resetErrors }}
|
|
{{? it.opts.allErrors }} } {{?}}
|