💄 Sort ns declarations related to data.workspace.

This commit is contained in:
Andrey Antukh 2020-04-30 11:58:27 +02:00 committed by Alonso Torres
parent 40d6cd50fb
commit e0453643d8
4 changed files with 20 additions and 32 deletions

View file

@ -21,28 +21,21 @@
[uxbox.config :as cfg] [uxbox.config :as cfg]
[uxbox.main.constants :as c] [uxbox.main.constants :as c]
[uxbox.main.data.helpers :as helpers] [uxbox.main.data.helpers :as helpers]
[uxbox.main.data.icons :as udi] [uxbox.main.data.workspace.common :as dwc]
[uxbox.util.geom.shapes :as geom] [uxbox.main.data.workspace.notifications :as dwn]
[uxbox.main.refs :as refs] [uxbox.main.data.workspace.persistence :as dwp]
[uxbox.main.data.workspace.transforms :as dwt]
[uxbox.main.repo :as rp] [uxbox.main.repo :as rp]
[uxbox.main.store :as st] [uxbox.main.store :as st]
[uxbox.main.streams :as ms] [uxbox.main.streams :as ms]
[uxbox.main.websockets :as ws]
[uxbox.main.worker :as uw] [uxbox.main.worker :as uw]
[uxbox.util.geom.matrix :as gmt] [uxbox.util.geom.matrix :as gmt]
[uxbox.util.geom.point :as gpt] [uxbox.util.geom.point :as gpt]
[uxbox.util.geom.shapes :as geom]
[uxbox.util.math :as mth] [uxbox.util.math :as mth]
[uxbox.util.perf :as perf]
[uxbox.util.router :as rt] [uxbox.util.router :as rt]
[uxbox.util.time :as dt]
[uxbox.util.transit :as t] [uxbox.util.transit :as t]
[uxbox.util.webapi :as wapi] [uxbox.util.webapi :as wapi]))
[uxbox.util.avatars :as avatars]
[uxbox.main.data.workspace.common :as dwc]
[uxbox.main.data.workspace.transforms :as dwt]
[uxbox.main.data.workspace.persistence :as dwp]
[uxbox.main.data.workspace.notifications :as dwn]
))
;; --- Specs ;; --- Specs

View file

@ -1,15 +1,15 @@
(ns uxbox.main.data.workspace.common (ns uxbox.main.data.workspace.common
(:require (:require
[clojure.set :as set]
[cljs.spec.alpha :as s]
[beicon.core :as rx] [beicon.core :as rx]
[cljs.spec.alpha :as s]
[clojure.set :as set]
[potok.core :as ptk] [potok.core :as ptk]
[uxbox.main.worker :as uw]
[uxbox.util.geom.shapes :as geom]
[uxbox.common.data :as d] [uxbox.common.data :as d]
[uxbox.common.spec :as us]
[uxbox.common.pages :as cp] [uxbox.common.pages :as cp]
[uxbox.common.uuid :as uuid])) [uxbox.common.spec :as us]
[uxbox.common.uuid :as uuid]
[uxbox.main.worker :as uw]
[uxbox.util.geom.shapes :as geom]))
;; --- Protocols ;; --- Protocols

View file

@ -11,7 +11,6 @@
(:require (:require
[beicon.core :as rx] [beicon.core :as rx]
[cljs.spec.alpha :as s] [cljs.spec.alpha :as s]
[clojure.set :as set]
[potok.core :as ptk] [potok.core :as ptk]
[uxbox.common.data :as d] [uxbox.common.data :as d]
[uxbox.common.pages :as cp] [uxbox.common.pages :as cp]
@ -20,9 +19,6 @@
[uxbox.main.data.workspace.common :as dwc] [uxbox.main.data.workspace.common :as dwc]
[uxbox.main.repo :as rp] [uxbox.main.repo :as rp]
[uxbox.main.store :as st] [uxbox.main.store :as st]
[uxbox.main.streams :as ms]
[uxbox.main.websockets :as ws]
[uxbox.util.avatars :as avatars]
[uxbox.util.geom.point :as gpt] [uxbox.util.geom.point :as gpt]
[uxbox.util.router :as rt] [uxbox.util.router :as rt]
[uxbox.util.time :as dt] [uxbox.util.time :as dt]

View file

@ -1,19 +1,18 @@
(ns uxbox.main.data.workspace.transforms (ns uxbox.main.data.workspace.transforms
"Events related with shapes transformations" "Events related with shapes transformations"
(:require (:require
[cljs.spec.alpha :as s]
[beicon.core :as rx] [beicon.core :as rx]
[cljs.spec.alpha :as s]
[potok.core :as ptk] [potok.core :as ptk]
[uxbox.common.spec :as us]
[uxbox.common.data :as d] [uxbox.common.data :as d]
[uxbox.main.refs :as refs] [uxbox.common.spec :as us]
[uxbox.main.store :as st]
[uxbox.main.streams :as ms]
[uxbox.util.geom.shapes :as gsh]
[uxbox.util.geom.point :as gpt]
[uxbox.util.geom.matrix :as gmt]
[uxbox.main.data.helpers :as helpers] [uxbox.main.data.helpers :as helpers]
[uxbox.main.data.workspace.common :as dwc])) [uxbox.main.data.workspace.common :as dwc]
[uxbox.main.refs :as refs]
[uxbox.main.streams :as ms]
[uxbox.util.geom.matrix :as gmt]
[uxbox.util.geom.point :as gpt]
[uxbox.util.geom.shapes :as gsh]))
;; -- Declarations ;; -- Declarations