0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00
penpot/frontend/uxbox/ui.cljs

47 lines
1.5 KiB
Text
Raw Normal View History

2015-06-18 19:35:50 +02:00
(ns uxbox.ui
2015-12-14 10:48:50 +02:00
(:require [sablono.core :as html :refer-macros [html]]
2015-12-17 12:51:36 +02:00
[goog.dom :as gdom]
2015-12-14 10:48:50 +02:00
[rum.core :as rum]
2015-06-18 19:35:50 +02:00
[cats.labs.lens :as l]
[uxbox.state :as s]
2015-12-14 20:31:21 +02:00
[uxbox.rstore :as rs]
[uxbox.data.projects :as dp]
2015-12-14 10:48:50 +02:00
[uxbox.ui.lightbox :as ui.lb]
2015-12-20 14:41:38 +02:00
[uxbox.ui.users :as users]
[uxbox.ui.dashboard :as dashboard]
[uxbox.ui.workspace :refer (workspace)]
2015-12-17 16:43:58 +02:00
[uxbox.ui.util :as util]
[uxbox.ui.mixins :as mx]))
2015-06-18 19:35:50 +02:00
2015-12-14 14:17:18 +02:00
(def ^:static state
2015-12-13 22:57:14 +02:00
(as-> (l/select-keys [:location :location-params]) $
2015-06-18 19:35:50 +02:00
(l/focus-atom $ s/state)))
(defn app-render
[own]
2015-12-13 22:57:14 +02:00
(let [{:keys [location location-params] :as state} (rum/react state)]
(println "app-render" location state)
2015-12-17 12:51:36 +02:00
(case location
2015-12-20 14:41:38 +02:00
:auth/login (users/login)
:dashboard/projects (dashboard/projects-page)
:dashboard/elements (dashboard/elements-page)
:dashboard/icons (dashboard/icons-page)
:dashboard/colors (dashboard/colors-page)
2015-12-17 12:51:36 +02:00
:workspace/page (let [projectid (:project-uuid location-params)
pageid (:page-uuid location-params)]
2015-12-20 14:41:38 +02:00
(workspace projectid pageid))
2015-12-17 12:51:36 +02:00
nil
)))
2015-06-18 19:35:50 +02:00
(def app
(util/component {:render app-render
:mixins [rum/reactive]
:name "app"}))
2015-12-17 12:51:36 +02:00
(defn init
[]
(let [app-dom (gdom/getElement "app")
lb-dom (gdom/getElement "lightbox")]
(rum/mount (app) app-dom)
(rum/mount (ui.lb/lightbox) lb-dom)))