This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-09-25 19:24:32 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'singleton'
|
|
|
|
require 'yaml'
|
|
|
|
|
|
|
|
class Themes
|
|
|
|
include Singleton
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
result = Hash.new
|
|
|
|
Dir.glob(Rails.root.join('app', 'javascript', 'themes', '*', 'theme.yml')) do |path|
|
|
|
|
data = YAML.load_file(path)
|
2017-11-16 21:35:25 -08:00
|
|
|
name = File.basename(File.dirname(path))
|
|
|
|
if data['pack']
|
|
|
|
result[name] = data
|
2017-09-25 19:24:32 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
@conf = result
|
|
|
|
end
|
|
|
|
|
2017-11-16 21:35:25 -08:00
|
|
|
def get(name)
|
|
|
|
@conf[name]
|
|
|
|
end
|
|
|
|
|
2017-09-25 19:24:32 -07:00
|
|
|
def names
|
|
|
|
@conf.keys
|
|
|
|
end
|
|
|
|
end
|