Restructure the source directory tree.

In order to provide space for other applications
that shares source with the main app.
This commit is contained in:
Andrey Antukh 2016-06-14 17:39:44 +03:00
parent ab36a12385
commit 929a0a84da
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
141 changed files with 955 additions and 947 deletions

153
src/uxbox/main/ui.cljs Normal file
View file

@ -0,0 +1,153 @@
;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
;; Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
(ns uxbox.main.ui
(:require [sablono.core :as html :refer-macros [html]]
[bidi.bidi :as bidi]
[promesa.core :as p]
[beicon.core :as rx]
[goog.dom :as gdom]
[rum.core :as rum]
[lentes.core :as l]
[uxbox.main.state :as st]
[uxbox.common.router :as rt]
[uxbox.common.rstore :as rs]
[uxbox.common.i18n :refer (tr)]
[uxbox.main.data.projects :as dp]
[uxbox.main.data.users :as udu]
[uxbox.main.data.auth :as dauth]
[uxbox.main.data.messages :as dmsg]
[uxbox.main.ui.loader :refer (loader)]
[uxbox.main.ui.lightbox :refer (lightbox)]
[uxbox.main.ui.icons :as i]
[uxbox.main.ui.auth :as auth]
[uxbox.main.ui.dashboard :as dashboard]
[uxbox.main.ui.settings :as settings]
[uxbox.main.ui.workspace :refer (workspace)]
[uxbox.main.ui.mixins :as mx]
[uxbox.main.ui.shapes]))
;; --- Constants
(def ^:const +unrestricted+
#{:auth/login
:auth/register
:auth/recovery-request
:auth/recovery})
(def ^:const restricted?
(complement +unrestricted+))
(def route-l
(-> (l/key :route)
(l/focus-atom st/state)))
;; --- Error Handling
(defn- on-error
"A default error handler."
[error]
(cond
;; Unauthorized or Auth timeout
(and (:status error)
(:payload error)
(or (= (:status error) 403)
(= (:status error) 419)))
(rs/emit! (dauth/logout))
;; Network error
(= (:status error) 0)
(do
(dmsg/error! (tr "errors.network"))
(js/console.error "Stack:" (.-stack error)))
;; Something else
:else
(do
(dmsg/error! (tr "errors.generic"))
(js/console.error "Stack:" (.-stack error)))))
(rs/add-error-watcher :ui on-error)
;; --- Main App (Component)
(defn app-render
[own]
(let [route (rum/react route-l)
auth (rum/react st/auth-l)
location (:id route)
params (:params route)]
(if (and (restricted? location) (not auth))
(do (p/schedule 0 #(rt/go :auth/login)) nil)
(case location
:auth/login (auth/login-page)
:auth/register (auth/register-page)
:auth/recovery-request (auth/recovery-request-page)
:auth/recovery (auth/recovery-page (:token params))
:dashboard/projects (dashboard/projects-page)
:dashboard/elements (dashboard/elements-page)
:dashboard/icons (dashboard/icons-page)
:dashboard/images (dashboard/images-page)
:dashboard/colors (dashboard/colors-page)
:settings/profile (settings/profile-page)
:settings/password (settings/password-page)
:settings/notifications (settings/notifications-page)
:workspace/page (let [projectid (:project-uuid params)
pageid (:page-uuid params)]
(workspace projectid pageid))
nil
))))
(defn app-will-mount
[own]
(when @st/auth-l
(rs/emit! (udu/fetch-profile)))
own)
(def app
(mx/component
{:render app-render
:will-mount app-will-mount
:mixins [rum/reactive]
:name "app"}))
;; --- Routes
(def ^:private page-route
[[bidi/uuid :project-uuid] "/" [bidi/uuid :page-uuid]])
(def routes
["/" [["auth/login" :auth/login]
["auth/register" :auth/register]
["auth/recovery/request" :auth/recovery-request]
[["auth/recovery/token/" :token] :auth/recovery]
["settings/" [["profile" :settings/profile]
["password" :settings/password]
["notifications" :settings/notifications]]]
["dashboard/" [["projects" :dashboard/projects]
["elements" :dashboard/elements]
["icons" :dashboard/icons]
["images" :dashboard/images]
["colors" :dashboard/colors]]]
["workspace/" [[page-route :workspace/page]]]]])
;; --- Main Entry Point
(defn init-routes
[]
(rt/init routes))
(defn init
[]
(let [app-dom (gdom/getElement "app")
lightbox-dom (gdom/getElement "lightbox")
loader-dom (gdom/getElement "loader")]
(rum/mount (app) app-dom)
(rum/mount (lightbox) lightbox-dom)
(rum/mount (loader) loader-dom)))