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

44 lines
1.4 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]
2015-12-16 13:02:15 +02:00
[uxbox.ui.dashboard.projects :as ui.dashboard.projects]
[uxbox.ui.dashboard.elements :as ui.dashboard.elements]
[uxbox.ui.workspace :as ui.w]))
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)
2015-12-16 13:02:15 +02:00
:dashboard/projects (ui.dashboard.projects/projects)
:dashboard/elements (ui.dashboard.elements/elements)
:dashboard/icons (ui.dashboard.elements/icons)
:dashboard/colors (ui.dashboard.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))