This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-25
Channels
- # adventofcode (1)
- # announcements (1)
- # beginners (244)
- # calva (20)
- # cider (11)
- # cljs-dev (34)
- # clojure (50)
- # clojure-spec (1)
- # clojure-uk (3)
- # clojurebridge (1)
- # clojurescript (21)
- # code-reviews (1)
- # cursive (19)
- # events (1)
- # expound (1)
- # fulcro (65)
- # hyperfiddle (6)
- # luminus (3)
- # nrepl (3)
- # off-topic (23)
- # protorepl (4)
- # re-frame (18)
- # rum (11)
- # shadow-cljs (77)
- # spacemacs (8)
- # tools-deps (2)
- # unrepl (1)
- # vim (2)
While testing a site under development on mobile devices, the aside from re-frame 10x is popping out covering a third of the page, but I can't hide it because I can't hit Ctrl-H on an iPhone. Is there a way to hide the display on mobile?
You mean comment it in deps.edn or project.clj and then deploy a new build to the testing instance? That of course I could do, but it seems very cumbersome.
Existing issue: https://github.com/Day8/re-frame-10x/issues/204
The hack with <script>localStorage.setItem("day8.re-frame-10x.show-panel","\"false\"")</script>
works, but it would be nicer to not have to modify the app-shell just to hide the panel.
I've added the logic to set the localstorage value to false to the app initialization to be called only if goog.DEBUG
is set. This is a nicer, now the code doesn't have to be modified between staging and production.
@mateus.pimentel.w This might be helpful if you haven't seen it yet: https://github.com/Day8/re-frame/blob/master/docs/Using-Stateful-JS-Components.md
Do someone here knows about an open source bootstrap like webpage that uses a navbar + routing with the re-frame pattern?
I’m also interested in side panel menu, like those admin panels we can find on internet
I found something useful: https://notamonadtutorial.com/one-does-not-simply-build-a-user-interface-our-clojurescript-re-frame-app-67b1354a2d55
In the article, the author says that he had to create his own way to load data for every view ( when you switch routes ) , and he asked himself if there wasn’t an official way of doing this
@trailcapital , in this case, i’m willing to make an application with URL routing