2015-06-18 12:35:50 -05:00
|
|
|
(ns uxbox.state
|
2015-12-17 09:43:58 -05:00
|
|
|
(:require [beicon.core :as rx]
|
|
|
|
[uxbox.rstore :as rs]))
|
2015-06-18 12:35:50 -05:00
|
|
|
|
2015-12-13 15:57:14 -05:00
|
|
|
(enable-console-print!)
|
|
|
|
|
|
|
|
(defonce state (atom {}))
|
|
|
|
|
2015-12-14 07:17:18 -05:00
|
|
|
(defonce stream
|
2015-12-13 15:57:14 -05:00
|
|
|
(rs/init {:user {:fullname "Cirilla"
|
|
|
|
:avatar "http://lorempixel.com/50/50/"}
|
2015-12-16 06:57:42 -05:00
|
|
|
:dashboard {:section :dashboard/projects}
|
2015-12-16 11:08:28 -05:00
|
|
|
:workspace {}
|
2015-12-13 06:04:34 -05:00
|
|
|
:projects-by-id {}
|
|
|
|
:pages-by-id {}}))
|
2015-06-18 12:35:50 -05:00
|
|
|
|
2015-12-14 16:57:47 -05:00
|
|
|
(rx/to-atom stream state)
|