-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4999 from MassimilianoLattanzio/backend-dark-mode
[backend] Add dark mode to the backend UI
- Loading branch information
Showing
24 changed files
with
276 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
//= link_tree ../images | ||
//= link_tree "../stylesheets/spree/backend/themes" .css | ||
|
||
//= link spree/backend/all.js | ||
//= link spree/backend/all.css | ||
|
||
//= link solidus_admin/select2_locales | ||
|
||
//= link spree/backend/themes/classic.css | ||
//= link spree/backend/themes/solidus_admin.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
backend/app/assets/stylesheets/spree/backend/themes/classic_dark.css.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@import 'spree/backend/themes/classic'; | ||
|
||
html { | ||
background-color: #fff; | ||
color: #fff; | ||
-webkit-filter: invert(100%); | ||
filter: invert(100%) hue-rotate(180deg); | ||
|
||
img { | ||
filter: invert(100%) hue-rotate(-180deg); | ||
} | ||
|
||
.brand-link img { | ||
filter: invert(0%) hue-rotate(0deg); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
backend/app/assets/stylesheets/spree/backend/themes/classic_dimmed.css.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@import 'spree/backend/themes/classic'; | ||
|
||
html { | ||
background-color: #fff; | ||
color: #fff; | ||
-webkit-filter: invert(85%); | ||
filter: invert(85%) hue-rotate(180deg); | ||
|
||
img { | ||
filter: invert(100%) hue-rotate(-180deg); | ||
} | ||
|
||
.brand-link img { | ||
filter: invert(0%) hue-rotate(0deg); | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
backend/app/assets/stylesheets/spree/backend/themes/solidus_admin.css.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
backend/app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@import "./colors"; | ||
|
||
table.index { | ||
// Borders | ||
border-collapse: separate; | ||
|
16 changes: 16 additions & 0 deletions
16
backend/app/assets/stylesheets/spree/backend/themes/solidus_admin_dark.css.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@import "./solidus_admin"; | ||
|
||
html { | ||
background-color: #fff; | ||
color: #fff; | ||
-webkit-filter: invert(100%); | ||
filter: invert(100%) hue-rotate(180deg); | ||
|
||
img { | ||
filter: invert(100%) hue-rotate(-180deg); | ||
} | ||
|
||
.brand-link img { | ||
filter: invert(0%) hue-rotate(0deg); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
backend/app/assets/stylesheets/spree/backend/themes/solidus_admin_dimmed.css.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@import "./solidus_admin"; | ||
|
||
html { | ||
background-color: #fff; | ||
color: #fff; | ||
-webkit-filter: invert(85%); | ||
filter: invert(85%) hue-rotate(180deg); | ||
|
||
img { | ||
filter: invert(100%) hue-rotate(-180deg); | ||
} | ||
|
||
.brand-link img { | ||
filter: invert(0%) hue-rotate(0deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# frozen_string_literal: true | ||
|
||
module Spree | ||
module Admin | ||
class ThemeController < Spree::Admin::BaseController | ||
skip_before_action :authorize_admin, only: [:set] | ||
|
||
def set | ||
requested_theme = params[:switch_to_theme].presence | ||
|
||
# Avoid interpolating user content into the session key | ||
system_theme = params[:system_theme].presence == "dark" ? "dark" : "light" | ||
session_key = :"admin_#{system_theme}_theme" | ||
|
||
if theme_is_available?(requested_theme) | ||
session[session_key] = requested_theme | ||
redirect_back_or_to spree.admin_url, notice: t('spree.theme_changed') | ||
else | ||
redirect_back_or_to spree.admin_url, error: t('spree.error') | ||
end | ||
end | ||
|
||
private | ||
|
||
def theme_is_available?(theme) | ||
theme && Spree::Backend::Config.themes.key?(theme.to_sym) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 13 additions & 15 deletions
28
backend/app/views/spree/admin/shared/_locale_selection.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
<% available_locales = Spree.i18n_available_locales %> | ||
<% if available_locales.size > 1 %> | ||
<label class="admin-navbar-selection admin-locale-selection"> | ||
<i class="fa fa-globe fa-fw" title="<%= I18n.t('spree.choose_dashboard_locale') %>"></i> | ||
<select class="js-locale-selection custom-select fullwidth"> | ||
<%= | ||
options_for_select( | ||
available_locales.map do |locale| | ||
[I18n.t('spree.i18n.this_file_language', locale: locale, default: locale.to_s, fallback: false), locale] | ||
end.sort, | ||
selected: I18n.locale, | ||
) | ||
%> | ||
</select> | ||
</label> | ||
<% available_locale_options_for_select = Spree.i18n_available_locales.map { | ||
[I18n.t('spree.i18n.this_file_language', locale: _1, default: _1.to_s, fallback: false), _1] | ||
}.sort %> | ||
|
||
<% if available_locale_options_for_select.size > 1 %> | ||
<%= form_tag(admin_set_locale_path(format: :html), method: :put, style: "width: 100%;") do %> | ||
<label class="admin-navbar-selection admin-locale-selection"> | ||
<i class="fa fa-globe fa-fw" title="<%= I18n.t('spree.choose_dashboard_locale') %>"></i> | ||
<select class="custom-select fullwidth" onchange="this.form.requestSubmit()"> | ||
<%= options_for_select(available_locale_options_for_select, I18n.locale) %> | ||
</select> | ||
</label> | ||
<% end %> | ||
<% end %> |
17 changes: 17 additions & 0 deletions
17
backend/app/views/spree/admin/shared/_locale_selection_solidus_admin.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<% available_locale_options_for_select = Spree.i18n_available_locales.map { | ||
[I18n.t('spree.i18n.this_file_language', locale: _1, default: _1.to_s, fallback: false), _1] | ||
}.sort %> | ||
|
||
<% if available_locale_options_for_select.size > 1 %> | ||
<li> | ||
<%= form_tag(admin_set_locale_path(format: :html), method: :put, style: "width: 100%;") do %> | ||
<label> | ||
<svg aria-hidden="true"><use xlink:href="<%= image_path('spree/backend/themes/solidus_admin/remixicon.symbol.svg') %>#ri-global-line"></use></svg> | ||
<select name="switch_to_locale" onchange="this.form.requestSubmit()"> | ||
<%= options_for_select(available_locale_options_for_select, selected: I18n.locale) %> | ||
</select> | ||
<svg aria-hidden="true"><use xlink:href="<%= image_path('spree/backend/themes/solidus_admin/remixicon.symbol.svg') %>#ri-expand-up-down-line"></use></svg> | ||
</label> | ||
<% end %> | ||
</li> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
backend/app/views/spree/admin/shared/_theme_selection.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<% theme_options_for_select = Spree::Backend::Config.themes.keys.map { |theme| [theme.to_s.humanize, theme] }.sort %> | ||
|
||
<%= form_tag(admin_set_theme_path(format: :html), method: :put, style: "width: 100%;", class: "light-only") do %> | ||
<%= hidden_field_tag :system_theme, :light %> | ||
<label class="admin-navbar-selection"> | ||
<i class="fa fa-sun-o fa-fw" title="<%= I18n.t('spree.choose_dashboard_theme') %>"></i> | ||
<select name="switch_to_theme" class="custom-select fullwidth" onchange="this.form.requestSubmit()"> | ||
<%= options_for_select(theme_options_for_select, session[:admin_light_theme] || Spree::Backend::Config.theme) %> | ||
</select> | ||
</label> | ||
<% end %> | ||
|
||
<%= form_tag(admin_set_theme_path(format: :html), method: :put, style: "width: 100%;", class: "dark-only") do %> | ||
<%= hidden_field_tag :system_theme, :dark %> | ||
<label class="admin-navbar-selection"> | ||
<i class="fa fa-moon-o fa-fw" title="<%= I18n.t('spree.choose_dashboard_theme') %>"></i> | ||
<select name="switch_to_theme" class="custom-select fullwidth" onchange="this.form.requestSubmit()"> | ||
<%= options_for_select(theme_options_for_select, session[:admin_dark_theme] || Spree::Backend::Config.dark_theme) %> | ||
</select> | ||
</label> | ||
<% end %> |
25 changes: 25 additions & 0 deletions
25
backend/app/views/spree/admin/shared/_theme_selection_solidus_admin.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<% theme_options_for_select = Spree::Backend::Config.themes.keys.map { |theme| [theme.to_s.humanize, theme] }.sort %> | ||
|
||
<li> | ||
<%= form_tag(admin_set_theme_path(format: :html), method: :put, style: "width: 100%;", class: "light-only") do %> | ||
<%= hidden_field_tag :system_theme, :light %> | ||
<label> | ||
<svg aria-hidden="true"><use xlink:href="<%= image_path('spree/backend/themes/solidus_admin/remixicon.symbol.svg') %>#ri-sun-line"></use></svg> | ||
<select name="switch_to_theme" onchange="this.form.requestSubmit()"> | ||
<%= options_for_select(theme_options_for_select, session[:admin_light_theme] || Spree::Backend::Config.theme) %> | ||
</select> | ||
<svg aria-hidden="true"><use xlink:href="<%= image_path('spree/backend/themes/solidus_admin/remixicon.symbol.svg') %>#ri-expand-up-down-line"></use></svg> | ||
</label> | ||
<% end %> | ||
|
||
<%= form_tag(admin_set_theme_path(format: :html), method: :put, style: "width: 100%;", class: "dark-only") do %> | ||
<%= hidden_field_tag :system_theme, :dark %> | ||
<label> | ||
<svg aria-hidden="true"><use xlink:href="<%= image_path('spree/backend/themes/solidus_admin/remixicon.symbol.svg') %>#ri-moon-line"></use></svg> | ||
<select name="switch_to_theme" onchange="this.form.requestSubmit()"> | ||
<%= options_for_select(theme_options_for_select, session[:admin_dark_theme] || Spree::Backend::Config.dark_theme) %> | ||
</select> | ||
<svg aria-hidden="true"><use xlink:href="<%= image_path('spree/backend/themes/solidus_admin/remixicon.symbol.svg') %>#ri-expand-up-down-line"></use></svg> | ||
</label> | ||
<% end %> | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.