philomena/lib/philomena_web/views/setting_view.ex

122 lines
3.2 KiB
Elixir
Raw Normal View History

2019-11-30 23:40:53 +01:00
defmodule PhilomenaWeb.SettingView do
use PhilomenaWeb, :view
def theme_options(conn) do
[
2024-05-07 19:33:56 +02:00
[
key: "Red",
value: "dark-red",
data: [theme_path: Routes.static_path(conn, "/css/dark-red.css")]
],
2024-05-20 21:25:43 +02:00
[
key: "Orange",
value: "dark-orange",
data: [theme_path: Routes.static_path(conn, "/css/dark-orange.css")]
],
[
key: "Yellow",
value: "dark-yellow",
data: [theme_path: Routes.static_path(conn, "/css/dark-yellow.css")]
],
2024-05-07 19:33:56 +02:00
[
key: "Green",
value: "dark-green",
data: [theme_path: Routes.static_path(conn, "/css/dark-green.css")]
],
2024-05-20 21:25:43 +02:00
[
key: "Blue",
value: "dark-blue",
data: [theme_path: Routes.static_path(conn, "/css/dark-blue.css")]
],
2024-05-07 19:33:56 +02:00
[
key: "Purple",
value: "dark-purple",
data: [theme_path: Routes.static_path(conn, "/css/dark-purple.css")]
],
[
key: "Cyan",
value: "dark-cyan",
data: [theme_path: Routes.static_path(conn, "/css/dark-cyan.css")]
],
2024-05-20 21:25:43 +02:00
[
key: "Pink",
value: "dark-pink",
data: [theme_path: Routes.static_path(conn, "/css/dark-pink.css")]
],
2024-05-07 19:33:56 +02:00
[
key: "Grey",
value: "dark-grey",
data: [theme_path: Routes.static_path(conn, "/css/dark-grey.css")]
]
]
end
def light_theme_options(conn) do
[
[
key: "Red",
value: "light-red",
data: [theme_path: Routes.static_path(conn, "/css/light-red.css")]
],
2024-05-20 21:25:43 +02:00
[
key: "Orange",
value: "light-orange",
data: [theme_path: Routes.static_path(conn, "/css/light-orange.css")]
],
[
key: "Yellow",
value: "light-yellow",
data: [theme_path: Routes.static_path(conn, "/css/light-yellow.css")]
],
2024-05-07 19:33:56 +02:00
[
key: "Green",
value: "light-green",
data: [theme_path: Routes.static_path(conn, "/css/light-green.css")]
],
2024-05-20 21:25:43 +02:00
[
key: "Blue",
value: "light-blue",
data: [theme_path: Routes.static_path(conn, "/css/light-blue.css")]
],
2024-05-07 19:33:56 +02:00
[
key: "Purple",
value: "light-purple",
data: [theme_path: Routes.static_path(conn, "/css/light-purple.css")]
],
[
key: "Cyan",
value: "light-cyan",
data: [theme_path: Routes.static_path(conn, "/css/light-cyan.css")]
],
2024-05-20 21:25:43 +02:00
[
key: "Pink",
value: "light-pink",
data: [theme_path: Routes.static_path(conn, "/css/light-pink.css")]
],
2024-05-07 19:33:56 +02:00
[
key: "Grey",
value: "light-grey",
data: [theme_path: Routes.static_path(conn, "/css/light-grey.css")]
]
2019-11-30 23:40:53 +01:00
]
end
2021-09-27 03:54:47 +02:00
def scale_options do
[
[key: "Load full images on image pages", value: "false"],
[key: "Load full images on image pages, sized to fit the page", value: "partscaled"],
[key: "Scale large images down before downloading", value: "true"]
]
end
2019-11-30 23:40:53 +01:00
def local_tab_class(conn) do
case conn.assigns.current_user do
2020-01-11 05:20:19 +01:00
nil -> ""
2019-11-30 23:40:53 +01:00
_user -> "hidden"
end
end
def staff?(%{role: role}), do: role != "user"
def staff?(_), do: false
2019-11-30 23:40:53 +01:00
end