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/lib | |
parent | 0cd5f2a61f60dcad51b2c8461fc705facd725075 (diff) | |
parent | ed7231947c618b7c7c471699a05da85c59afa824 (diff) |
Merge pull request #254 from glitch-soc/new-theme-ux
New flavour/skin UX
Diffstat (limited to 'app/lib')
-rw-r--r-- | app/lib/themes.rb | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/app/lib/themes.rb b/app/lib/themes.rb index 49e9ebbc3..55824a5c4 100644 --- a/app/lib/themes.rb +++ b/app/lib/themes.rb @@ -14,17 +14,27 @@ class Themes result = Hash.new Dir.glob(Rails.root.join('app', 'javascript', 'flavours', '*', 'theme.yml')) do |path| data = YAML.load_file(path) - name = File.basename(File.dirname(path)) + dir = File.dirname(path) + name = File.basename(dir) + locales = [] + screenshots = [] if data['locales'] - locales = [] - Dir.glob(File.join(File.dirname(path), data['locales'], '*.{js,json}')) do |locale| + Dir.glob(File.join(dir, data['locales'], '*.{js,json}')) do |locale| localeName = File.basename(locale, File.extname(locale)) locales.push(localeName) unless localeName.match(/defaultMessages|whitelist|index/) end - data['locales'] = locales + end + if data['screenshot'] + if data['screenshot'].is_a? Array + screenshots = data['screenshot'] + else + screenshots.push(data['screenshot']) + end end if data['pack'] data['name'] = name + data['locales'] = locales + data['screenshot'] = screenshots data['skin'] = { 'default' => [] } result[name] = data end |