mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 18:48:06 +01:00
f5c0c32edd
Conflicts: - `app/javascript/material-icons/400-24px/chat.svg`: Glitch-soc used this one but not upstream. Upstream pulled a presumably more up-to-date version of the file. Switched to upstream's version. - `app/views/layouts/application.html.haml`: Upstream removed use of font-awesome. I hope we are ready. - `app/views/layouts/embedded.html.haml`: Upstream removed use of font-awesome. I hope we are ready. - `app/views/layouts/error.html.haml`: Upstream removed use of font-awesome. I hope we are ready.
80 lines
1.9 KiB
Ruby
80 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'singleton'
|
|
require 'yaml'
|
|
|
|
class Themes
|
|
include Singleton
|
|
|
|
THEME_COLORS = {
|
|
dark: '#181820',
|
|
light: '#ffffff',
|
|
}.freeze
|
|
|
|
def initialize
|
|
@flavours = {}
|
|
|
|
Rails.root.glob('app/javascript/flavours/*/theme.yml') do |pathname|
|
|
data = YAML.load_file(pathname)
|
|
next unless data['pack_directory']
|
|
|
|
dir = pathname.dirname
|
|
name = dir.basename.to_s
|
|
locales = []
|
|
screenshots = []
|
|
|
|
if data['locales']
|
|
Dir.glob(File.join(dir, data['locales'], '*.{js,json}')) do |locale|
|
|
locale_name = File.basename(locale, File.extname(locale))
|
|
locales.push(locale_name) unless /defaultMessages|whitelist|index/.match?(locale_name)
|
|
end
|
|
end
|
|
|
|
if data['screenshot']
|
|
if data['screenshot'].is_a? Array
|
|
screenshots = data['screenshot']
|
|
else
|
|
screenshots.push(data['screenshot'])
|
|
end
|
|
end
|
|
|
|
data['name'] = name
|
|
data['locales'] = locales
|
|
data['screenshot'] = screenshots
|
|
data['skins'] = []
|
|
@flavours[name] = data
|
|
end
|
|
|
|
Rails.root.glob('app/javascript/skins/*/*') do |pathname|
|
|
ext = pathname.extname.to_s
|
|
skin = pathname.basename.to_s
|
|
name = pathname.dirname.basename.to_s
|
|
next unless @flavours[name]
|
|
|
|
if pathname.directory?
|
|
@flavours[name]['skins'] << skin if pathname.glob('{common,index,application}.{css,scss}').any?
|
|
elsif /^\.s?css$/i.match?(ext)
|
|
@flavours[name]['skins'] << pathname.basename(ext).to_s
|
|
end
|
|
end
|
|
end
|
|
|
|
def flavour(name)
|
|
@flavours[name]
|
|
end
|
|
|
|
def flavours
|
|
@flavours.keys
|
|
end
|
|
|
|
def skins_for(name)
|
|
skins = @flavours[name]['skins']
|
|
skins.include?('default') && skins.include?('mastodon-light') ? ['system'] + skins : skins
|
|
end
|
|
|
|
def flavours_and_skins
|
|
flavours.map do |flavour|
|
|
[flavour, skins_for(flavour).map { |skin| [flavour, skin] }]
|
|
end
|
|
end
|
|
end
|