0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 00:40:30 -05:00
penpot/frontend/uxbox/ui.cljs

44 lines
1.4 KiB
Text
Raw Normal View History

2015-06-18 12:35:50 -05:00
(ns uxbox.ui
2015-12-14 03:48:50 -05:00
(:require [sablono.core :as html :refer-macros [html]]
[rum.core :as rum]
2015-06-18 12:35:50 -05:00
[cats.labs.lens :as l]
[uxbox.state :as s]
2015-12-14 13:31:21 -05:00
[uxbox.rstore :as rs]
2015-06-18 12:35:50 -05:00
[uxbox.util :as util]
2015-12-14 13:31:21 -05:00
[uxbox.data.projects :as dp]
2015-12-14 03:48:50 -05:00
[uxbox.ui.lightbox :as ui.lb]
2015-12-15 04:22:04 -05:00
[uxbox.ui.users :as ui.users]
2015-12-16 06:02:15 -05: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 12:35:50 -05:00
2015-12-14 07:17:18 -05:00
(def ^:static state
2015-12-13 15:57:14 -05:00
(as-> (l/select-keys [:location :location-params]) $
2015-06-18 12:35:50 -05:00
(l/focus-atom $ s/state)))
(defn app-render
[own]
2015-12-13 15:57:14 -05:00
(let [{:keys [location location-params] :as state} (rum/react state)]
2015-12-14 02:50:19 -05:00
(html
[:section
2015-12-14 03:48:50 -05:00
(ui.lb/lightbox)
2015-12-14 02:50:19 -05:00
(case location
2015-12-15 04:22:04 -05:00
:auth/login (ui.users/login)
2015-12-16 06:02:15 -05: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-16 07:10:02 -05:00
:workspace/page (let [projectid (:project-uuid location-params)
pageid (:page-uuid location-params)]
(ui.w/workspace projectid pageid))
2015-12-14 02:50:19 -05:00
nil
2015-12-14 03:48:50 -05:00
)])))
2015-06-18 12:35:50 -05:00
(def app
(util/component {:render app-render
:mixins [rum/reactive]
:name "app"}))
(defn mount!
[el]
(rum/mount (app) el))