Revert "automatically apply system-wide theme preference for anonymous users (fixes philomena-dev/philomena#36)"

This reverts commit edcd4ebfde.
This commit is contained in:
byte[] 2020-12-08 00:21:44 -05:00
parent edcd4ebfde
commit 5c51775f94
3 changed files with 3 additions and 28 deletions

View file

@ -1,13 +0,0 @@
/**
* Theme setting
*/
function setThemeCookie() {
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.cookie = `theme=dark; path=/; max-age=788923800; samesite=lax`;
} else {
document.cookie = `theme=light; path=/; max-age=788923800; samesite=lax`;
}
}
export { setThemeCookie };

View file

@ -32,7 +32,6 @@ import { setupTimestamps } from './timeago';
import { setupImageUpload } from './upload';
import { setupSearch } from './search';
import { setupToolbar } from './textiletoolbar';
import { setThemeCookie } from './theme';
import { hideStaffTools } from './staffhider';
import { pollOptionCreator } from './poll';
@ -64,8 +63,7 @@ whenReady(() => {
setupTimestamps();
setupImageUpload();
setupSearch();
setupToolbar()
setThemeCookie();
setupToolbar();
hideStaffTools();
pollOptionCreator();

View file

@ -64,24 +64,14 @@ defmodule PhilomenaWeb.LayoutView do
Config.get(:footer)
end
def stylesheet_path(conn, %{theme: "default"}),
do: Routes.static_path(conn, "/css/default.css")
def stylesheet_path(conn, %{theme: "dark"}),
do: Routes.static_path(conn, "/css/dark.css")
def stylesheet_path(conn, %{theme: "red"}),
do: Routes.static_path(conn, "/css/red.css")
def stylesheet_path(conn, _user) do
case conn.cookies do
%{"theme" => "dark"} ->
Routes.static_path(conn, "/css/dark.css")
_ ->
Routes.static_path(conn, "/css/default.css")
end
end
def stylesheet_path(conn, _user),
do: Routes.static_path(conn, "/css/default.css")
def theme_name(%{theme: theme}), do: theme
def theme_name(_user), do: "default"