Blame view

node_modules/ajv/lib/dot/oneOf.jst 1.12 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  {{# def.definitions }}
  {{# def.errors }}
  {{# def.setupKeyword }}
  {{# def.setupNextLevel }}
  
  {{
    var $currentBaseId = $it.baseId
      , $prevValid = 'prevValid' + $lvl
      , $passingSchemas = 'passingSchemas' + $lvl;
  }}
  
  var {{=$errs}} = errors
    , {{=$prevValid}} = false
    , {{=$valid}} = false
    , {{=$passingSchemas}} = null;
  
  {{# 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}}) {
        {{=$valid}} = false;
        {{=$passingSchemas}} = [{{=$passingSchemas}}, {{=$i}}];
      } else {
      {{ $closingBraces += '}'; }}
    {{?}}
  
      if ({{=$nextValid}}) {
        {{=$valid}} = {{=$prevValid}} = true;
        {{=$passingSchemas}} = {{=$i}};
      }
  {{~}}
  
  {{# def.resetCompositeRule }}
  
  {{= $closingBraces }}
  
  if (!{{=$valid}}) {
    {{# def.extraError:'oneOf' }}
  } else {
    {{# def.resetErrors }}
  {{? it.opts.allErrors }} } {{?}}