Some feedback from the lovely folk at my forum
-
if you could inform me on how to save to localStorage in the case of NodeBB
It's actually something in vanilla JS, not NodeBB specific.
Getting the theme:
$('document').ready(function() { var theme = localStorage.getItem('user:theme'); $('body').addClass(theme); });
and setting the theme:
localStorage.setItem('user:theme', someTheme);
-
@psychobunny Right, I've got most of the CSS sorted, is there an easy way of adding a button next to the width one without editing the theme, so I can update in the future without needing to mess about with git?
I also assume this will toggle between adding and removing the class? Or will they have to clear cache for it to reset?
-
It should be in quotes I was assuming you'd have it as a variable - so in your case it would be 'lights-out'
-
@psychobunny said:
Bootswatch themes, yeah. Really though you could just do something like this in the custom CSS ACP:
body.theme-dark { background: black } body.theme-dark other-elements { // theme as necessary }
And then, put a button somewhere (perhaps right next to the resizer button on the bottom right) that adds the
.theme-dark
class to the body. Save the chosen "theme" in localStorage so you can add that when they reload. Probably could do this all in the custom CSS and custom JS tabs with a bit of work, without having to write a plugin at all (although that'd be cool to have)Yep, its possible I've tested this.
-
@psychobunny Hey buddy, right, I've got this working fantastically, however, when I click the lightbulb, it also affects the width. Other that that, it works brilliantly.
Any idea on how to seperate these? Excuse the awful code, but it looks like:
<script> $(window).on('action:widgets.loaded', function() { var panel = $('<div class="panel-body text-center"><i class="fa fa-lightbulb-o fa-2x"></i></div>'); $('.panel.resizer').append(panel); panel.on('click', function() { localStorage.setItem('user:theme', 'lights-out'); var theme = localStorage.getItem('user:theme'); $('body').toggleClass(theme); }); }); </script>
I used toggleclass so it could be clicked again, to reset it. Is this ok? Hmm, another issue is that whenever you visit a new page, it adds the lightbulb again, creating a new topic adds about 4 lightbulbs. Oh and it doesn't save the setting to localStorage, a refresh changes it back to default. I imagine my code is completely wrong though.
-
@a_5mith update to latest version of lavender and change your code to
<script> $(window).on('action:widgets.loaded', function() { var panel = $('<div class="panel pointer"><div class="panel-body text-center"><i class="fa fa-lightbulb-o fa-2x"></i></div></div>'); $('.overlay-container').append(panel); panel.on('click', function() { localStorage.setItem('user:theme', 'lights-out'); var theme = localStorage.getItem('user:theme'); $('body').toggleClass(theme); }); }); </script>
Let me know if it works.
-
This should fix the icon being added on each page load and remembering
<script> $(window).on('action:widgets.loaded', function() { if (!$('.panel.lights-out').length) { var panel = $('<div class="panel lights-out pointer"><div class="panel-body text-center"><i class="fa fa-lightbulb-o fa-2x"></i></div></div>'); $('.overlay-container').append(panel); panel.on('click', function() { enabled = !$('body').hasClass('lights-out'); $('body').toggleClass('lights-out', enabled); localStorage.setItem('user:theme', enabled ? 'lights-out' : ''); }); } }); </script>
To remember the theme on page load
<script> $('document').ready(function() { var theme = localStorage.getItem('user:theme'); if (theme) { $('body').addClass(theme ); } }); </script>
Obviously I didn't test any of this code
-
@baris Getting closer, it remembers the theme, but the button doesn't display anymore.
EDIT: Cleared my localstorage. When the theme is "normal", the button is there, when it is set to 'lights-out' the button vanishes. So I'd need the button to toggle it back if required. (If possible)
-
That's a css style in vanilla.
.fade-out { position: absolute; top: 190px; left: 0; width: 100%; margin: 0; padding: 30px 0; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, transparent),color-stop(1, white)); background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white); background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white); background-image: -ms-linear-gradient(top, transparent, white); background-image: -o-linear-gradient(top, transparent, white); }
Just change the white to your desired background color. In your case I think it is
#2b2b2b
I think.
.lights-out .fade-out { background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, transparent),color-stop(1, #2b2b2b)); background-image: -webkit-linear-gradient(top, rgba(43, 43, 43, 0), #2b2b2b); background-image: -moz-linear-gradient(top, rgba(43, 43, 43, 0), #2b2b2b); background-image: -ms-linear-gradient(top, transparent, #2b2b2b); background-image: -o-linear-gradient(top, transparent, #2b2b2b); }
Should work, adjust if you want a different color.
-
haha nice, @baris fixing my derp for me
-
Back with another one or two, there's a noticeable delay between pages loading now, happens here and on my place, also the fade out and back in of pages feels like " wading through quicksand", I'm inclined to agree, waiting for a page to fade out when you've clicked somewhere else is a bit silly, would a better option not be wait until the next page is ready and just snap between them? Or is this done because of a limitation?
-
Will defer to @psychobunny for an in-depth reply, but the fade-out is only happening because NodeBB needs to fetch the data and parse the template. If all that is done before the fadeout is finished, then we'll stop it immediately and start the fade-in with the new content.
There might be a 100ms delay, mostly because wanted to avoid this:
- Content starts fading out
- While it's at 50% opacity, the new content appears, and user gets to watch the new content fade out
- New content fades in
#toofastproblems
-
-
I know we added an extra delay because the pages were loading too fast... over here at least. Maybe that's what is slowing you guys down?
-
@psychobunny It's kind of like the delay happens after the page fades out, rather than during for me.