(fix-avatar-url filestack-api-key avatar-url)
(fix-avatar-url filestack-api-key avatar-url avatar-size)
First it fixes relative URLs, it prepends our production CDN domain to it if it's relative. Then if the url is pointing to one of our happy faces, it replaces the SVG extension with PNG to have it resizable. If it's not one of our happy faces, it uses the on-the-fly resize url.
First it fixes relative URLs, it prepends our production CDN domain to it if it's relative. Then if the url is pointing to one of our happy faces, it replaces the SVG extension with PNG to have it resizable. If it's not one of our happy faces, it uses the on-the-fly resize url.
(name-for user)
(name-for first-name last-name)
(name-for user
:guard
(fn* [p1__27289#]
(and (s/blank? (:first-name p1__27289#))
(s/blank? (:last-name p1__27289#))
(s/blank? (:name p1__27289#)))))
(name-for user :guard (fn* [p1__27290#] (not (s/blank? (:name p1__27290#)))))
(name-for first-name _last-name :guard s/blank?)
(name-for _first-name :guard s/blank? last-name)
(name-for _first-name :guard s/blank? _last-name :guard s/blank?)
(name-for user)
(name-for first-name last-name)
(name-for user
:guard
(fn* [p1__38128#]
(and (s/blank? (:first-name p1__38128#))
(s/blank? (:last-name p1__38128#))
(s/blank? (:name p1__38128#)))))
(name-for user :guard (fn* [p1__38129#] (not (s/blank? (:name p1__38129#)))))
(name-for first-name _last-name :guard s/blank?)
(name-for _first-name :guard s/blank? last-name)
(name-for _first-name :guard s/blank? _last-name :guard s/blank?)
Make a single name
field from first-name
and/or last-name
.
Use email as the name if the entire user is provided and there's no first or last name.
Make a single `name` field from `first-name` and/or `last-name`. Use email as the name if the entire user is provided and there's no first or last name.
(short-name-for user)
(short-name-for user
:guard
(fn* [p1__27311#] (not (s/blank? (:first-name p1__27311#)))))
(short-name-for user
:guard
(fn* [p1__27312#] (not (s/blank? (:last-name p1__27312#)))))
(short-name-for user
:guard
(fn* [p1__27313#] (not (s/blank? (:name p1__27313#)))))
(short-name-for user)
(short-name-for user
:guard
(fn* [p1__38142#] (not (s/blank? (:first-name p1__38142#)))))
(short-name-for user
:guard
(fn* [p1__38143#] (not (s/blank? (:last-name p1__38143#)))))
(short-name-for user
:guard
(fn* [p1__38144#] (not (s/blank? (:name p1__38144#)))))
Select the first available between: first-name
, last-name
or name
.
Fallback to email
if none are available.
Select the first available between: `first-name`, `last-name` or `name`. Fallback to `email` if none are available.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close