about summary refs log tree commit diff
path: root/app/controllers/concerns
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-05 10:58:51 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-02-05 10:58:51 +0100
commit08f44d1953d465825fd250452efbca6fc8d82dc3 (patch)
tree02cce57e848d0f47e8583bf9f73cccb3cb40839d /app/controllers/concerns
parent5f48ec9e4264065072d3ad67a1224df76cb892da (diff)
Move glitch-soc-specific theming methods to ThemingConcern
Diffstat (limited to 'app/controllers/concerns')
-rw-r--r--app/controllers/concerns/theming_concern.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/controllers/concerns/theming_concern.rb b/app/controllers/concerns/theming_concern.rb
index 1ee3256c0..425554072 100644
--- a/app/controllers/concerns/theming_concern.rb
+++ b/app/controllers/concerns/theming_concern.rb
@@ -10,6 +10,15 @@ module ThemingConcern
 
   private
 
+  def current_flavour
+    [current_user&.setting_flavour, Setting.flavour, 'glitch', 'vanilla'].find { |flavour| Themes.instance.flavours.include?(flavour) }
+  end
+
+  def current_skin
+    skins = Themes.instance.skins_for(current_flavour)
+    [current_user&.setting_skin, Setting.skin, 'default'].find { |skin| skins.include?(skin) }
+  end
+
   def valid_pack_data?(data, pack_name)
     data['pack'].is_a?(Hash) && [String, Hash].any? { |c| data['pack'][pack_name].is_a?(c) }
   end