mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 16:30:37 -05:00
31 lines
940 B
Text
31 lines
940 B
Text
|
(ns uxbox.schema
|
||
|
(:refer-clojure :exclude [keyword?])
|
||
|
(:require [bouncer.core :as b]
|
||
|
[bouncer.validators :as v]))
|
||
|
|
||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
|
;; Validators
|
||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
|
|
||
|
(v/defvalidator keyword?
|
||
|
"Validates maybe-an-int is a valid integer.
|
||
|
For use with validation functions such as `validate` or `valid?`"
|
||
|
{:default-message-format "%s must be a keyword"}
|
||
|
[v]
|
||
|
(cljs.core/keyword? v))
|
||
|
|
||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
|
;; Public Api
|
||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
|
|
||
|
(defn validate
|
||
|
([schema] #(validate schema %))
|
||
|
([schema data] (first (b/validate data schema))))
|
||
|
|
||
|
(defn validate!
|
||
|
([schema] #(validate! schema %))
|
||
|
([schema data]
|
||
|
(when-let [errors (validate schema data)]
|
||
|
(throw (ex-info "Invalid data" errors)))))
|
||
|
|