0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-03 12:59:12 -05:00
penpot/frontend/uxbox/ui.cljs

44 lines
1.3 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]]
[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]
2015-06-18 19:35:50 +02:00
[uxbox.util :as util]
2015-12-14 20:31:21 +02:00
[uxbox.data.projects :as dp]
2015-12-14 10:48:50 +02:00
[uxbox.ui.lightbox :as ui.lb]
2015-12-15 11:22:04 +02:00
[uxbox.ui.users :as ui.users]
[uxbox.ui.elements :as ui.elements]
2015-12-14 20:31:21 +02:00
[uxbox.ui.workspace :as ui.w]
2015-12-15 11:22:04 +02:00
[uxbox.ui.dashboard :as ui.dashboard]))
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)]
2015-12-14 09:50:19 +02:00
(html
[:section
2015-12-14 10:48:50 +02:00
(ui.lb/lightbox)
2015-12-14 09:50:19 +02:00
(case location
2015-12-15 11:22:04 +02:00
:auth/login (ui.users/login)
:main/dashboard (ui.dashboard/dashboard)
:main/elements (ui.elements/elements)
:main/icons (ui.elements/icons)
:main/colors (ui.elements/colors)
2015-12-14 20:31:21 +02:00
:main/page (let [projectid (:project-uuid location-params)
pageid (:page-uuid location-params)]
(ui.w/workspace projectid pageid))
2015-12-14 09:50:19 +02:00
nil
2015-12-14 10:48:50 +02:00
)])))
2015-06-18 19:35:50 +02:00
(def app
(util/component {:render app-render
:mixins [rum/reactive]
:name "app"}))
(defn mount!
[el]
(rum/mount (app) el))