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.
		
		
		
		
		
			
		
			
				
					27 lines
				
				812 B
			
		
		
			
		
	
	
					27 lines
				
				812 B
			| 
											3 years ago
										 | import type {CodeKeywordDefinition, KeywordErrorDefinition} from "../../types" | ||
|  | import type {KeywordCxt} from "../../compile/validate" | ||
|  | import {_, str, operators} from "../../compile/codegen" | ||
|  | 
 | ||
|  | const error: KeywordErrorDefinition = { | ||
|  |   message({keyword, schemaCode}) { | ||
|  |     const comp = keyword === "maxItems" ? "more" : "fewer" | ||
|  |     return str`must NOT have ${comp} than ${schemaCode} items` | ||
|  |   }, | ||
|  |   params: ({schemaCode}) => _`{limit: ${schemaCode}}`, | ||
|  | } | ||
|  | 
 | ||
|  | const def: CodeKeywordDefinition = { | ||
|  |   keyword: ["maxItems", "minItems"], | ||
|  |   type: "array", | ||
|  |   schemaType: "number", | ||
|  |   $data: true, | ||
|  |   error, | ||
|  |   code(cxt: KeywordCxt) { | ||
|  |     const {keyword, data, schemaCode} = cxt | ||
|  |     const op = keyword === "maxItems" ? operators.GT : operators.LT | ||
|  |     cxt.fail$data(_`${data}.length ${op} ${schemaCode}`) | ||
|  |   }, | ||
|  | } | ||
|  | 
 | ||
|  | export default def |