diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-04-20 20:20:52 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-04-20 20:20:52 +0200 |
commit | eeedb40bdc0510dec0e2ddca149e82bff7495d0a (patch) | |
tree | b80eb0f9908016382e8a36d9dd9f321cdd44473f /lib/DBInfoscreen.pm | |
parent | 375f02ad634c10030f47af94f0530dda0d2d044d (diff) |
switch to a proper dark theme using javascript and sass3.1.0
The dark=1 option is still supported, but no longer visible in the UI.
Diffstat (limited to 'lib/DBInfoscreen.pm')
-rw-r--r-- | lib/DBInfoscreen.pm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/DBInfoscreen.pm b/lib/DBInfoscreen.pm index 6be6e2c..1828737 100644 --- a/lib/DBInfoscreen.pm +++ b/lib/DBInfoscreen.pm @@ -26,6 +26,24 @@ my %default = ( sub startup { my ($self) = @_; + $self->hook( + before_dispatch => sub { + my ($self) = @_; + + # The "theme" cookie is set client-side if the theme we delivered was + # changed by dark mode detection or by using the theme switcher. It's + # not part of Mojolicious' session data (and can't be, due to + # signing and HTTPOnly), so we need to add it here. + + for my $cookie ( @{ $self->req->cookies } ) { + if ( $cookie->name eq 'theme' ) { + $self->session( theme => $cookie->value ); + return; + } + } + } + ); + $self->attr( cache_hafas => sub { my ($self) = @_; |