diff --git a/src/uxbox/main/state/colors.cljs b/src/uxbox/main/state/colors.cljs deleted file mode 100644 index 433891a2f8..0000000000 --- a/src/uxbox/main/state/colors.cljs +++ /dev/null @@ -1,22 +0,0 @@ -(ns uxbox.main.state.colors - "A collection of functions for manage dashboard data insinde the state.") - -(defn assoc-collection - "A reduce function for assoc the color collection - to the state map." - [state coll] - (let [id (:id coll)] - (assoc-in state [:colors-by-id id] coll))) - -(defn dissoc-collection - "A reduce function for dissoc the color collection - to the state map." - [state id] - (update state :colors-by-id dissoc id)) - -(defn select-first-collection - "A reduce function for select the first color collection - to the state map." - [state] - (let [colls (sort-by :id (vals (:colors-by-id state)))] - (assoc-in state [:dashboard :collection-id] (:id (first colls)))))