mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 15:39:50 -05:00
35 lines
1 KiB
Clojure
35 lines
1 KiB
Clojure
(ns uxbox.util.data
|
|
"A collection of data transformation utils."
|
|
(:require [cljs.reader :as r]))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Data structure manipulation
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defn index-by
|
|
"Return a indexed map of the collection
|
|
keyed by the result of executing the getter
|
|
over each element of the collection."
|
|
[coll getter]
|
|
(persistent!
|
|
(reduce #(assoc! %1 (getter %2) %2) (transient {}) coll)))
|
|
|
|
(def ^:static index-by-id #(index-by % :id))
|
|
|
|
(defn remove-nil-vals
|
|
"Given a map, return a map removing key-value
|
|
pairs when value is `nil`."
|
|
[data]
|
|
(into {} (remove (comp nil? second) data)))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Numbers Parsing
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defn read-string
|
|
[v]
|
|
(r/read-string v))
|
|
|
|
(defn parse-int
|
|
[v]
|
|
(js/parseInt v 10))
|