diff options
author | beatrix <beatrix.bitrot@gmail.com> | 2017-12-11 09:36:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 09:36:14 -0500 |
commit | 771b950febf2e5ee41ccfcd088f0757d80483332 (patch) | |
tree | 64419082b5ec535699fb116d933328548beeec92 /app/controllers | |
parent | 0cd5f2a61f60dcad51b2c8461fc705facd725075 (diff) | |
parent | ed7231947c618b7c7c471699a05da85c59afa824 (diff) |
Merge pull request #254 from glitch-soc/new-theme-ux
New flavour/skin UX
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/settings/flavours_controller.rb | 35 | ||||
-rw-r--r-- | app/controllers/settings/preferences_controller.rb | 2 |
2 files changed, 35 insertions, 2 deletions
diff --git a/app/controllers/settings/flavours_controller.rb b/app/controllers/settings/flavours_controller.rb new file mode 100644 index 000000000..865d5a479 --- /dev/null +++ b/app/controllers/settings/flavours_controller.rb @@ -0,0 +1,35 @@ +# frozen_string_literal: true + +class Settings::FlavoursController < Settings::BaseController + + def index + redirect_to action: 'show', flavour: current_flavour + end + + def show + unless Themes.instance.flavours.include?(params[:flavour]) or params[:flavour] == current_flavour + redirect_to action: 'show', flavour: current_flavour + end + + @listing = Themes.instance.flavours + @selected = params[:flavour] + end + + def update + user_settings.update(user_settings_params(params[:flavour]).to_h) + redirect_to action: 'show', flavour: params[:flavour] + end + + private + + def user_settings + UserSettingsDecorator.new(current_user) + end + + def user_settings_params(flavour) + params.require(:user).merge({ setting_flavour: flavour }).permit( + :setting_flavour, + :setting_skin + ) + end +end diff --git a/app/controllers/settings/preferences_controller.rb b/app/controllers/settings/preferences_controller.rb index 9177d37da..7cd1abe0c 100644 --- a/app/controllers/settings/preferences_controller.rb +++ b/app/controllers/settings/preferences_controller.rb @@ -39,8 +39,6 @@ class Settings::PreferencesController < Settings::BaseController :setting_reduce_motion, :setting_system_font_ui, :setting_noindex, - :setting_flavour, - :setting_skin, notification_emails: %i(follow follow_request reblog favourite mention digest), interactions: %i(must_be_follower must_be_following) ) |