aboutsummaryrefslogtreecommitdiff
path: root/node_modules/ajv/lib/dot/_limit.jst
blob: 21793d874cc7bfae3e94ada42e42a927a904d989 (plain)
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
{{# def.definitions }}
{{# def.errors }}
{{# def.setupKeyword }}
{{# def.$data }}

{{
  var $isMax = $keyword == 'maximum'
    , $exclusiveKeyword = $isMax ? 'exclusiveMaximum' : 'exclusiveMinimum'
    , $schemaExcl = it.schema[$exclusiveKeyword]
    , $isDataExcl = it.opts.v5 && $schemaExcl && $schemaExcl.$data
    , $op = $isMax ? '<' : '>'
    , $notOp = $isMax ? '>' : '<';
}}

{{? $isDataExcl }}
  {{
    var $schemaValueExcl = it.util.getData($schemaExcl.$data, $dataLvl, it.dataPathArr)
      , $exclusive = 'exclusive' + $lvl
      , $opExpr = 'op' + $lvl
      , $opStr = '\' + ' + $opExpr + ' + \'';
  }}
  var schemaExcl{{=$lvl}} = {{=$schemaValueExcl}};
  {{ $schemaValueExcl = 'schemaExcl' + $lvl; }}

  var exclusive{{=$lvl}};
  if (typeof {{=$schemaValueExcl}} != 'boolean' && typeof {{=$schemaValueExcl}} != 'undefined') {
    {{ var $errorKeyword = $exclusiveKeyword; }}
    {{# def.error:'_exclusiveLimit' }}
  } else if({{# def.$dataNotType:'number' }}
            ((exclusive{{=$lvl}} = {{=$schemaValueExcl}} === true)
              ? {{=$data}} {{=$notOp}}= {{=$schemaValue}}
              : {{=$data}} {{=$notOp}} {{=$schemaValue}})
            || {{=$data}} !== {{=$data}}) {
    var op{{=$lvl}} = exclusive{{=$lvl}} ? '{{=$op}}' : '{{=$op}}=';
{{??}}
  {{
    var $exclusive = $schemaExcl === true
      , $opStr = $op;  /*used in error*/
    if (!$exclusive) $opStr += '=';
    var $opExpr = '\'' + $opStr + '\''; /*used in error*/
  }}

  if ({{# def.$dataNotType:'number' }}
      {{=$data}} {{=$notOp}}{{?$exclusive}}={{?}} {{=$schemaValue}}
      || {{=$data}} !== {{=$data}}) {
{{?}}
    {{ var $errorKeyword = $keyword; }}
    {{# def.error:'_limit' }}
  } {{? $breakOnError }} else { {{?}}