Refactor DiscourseSassImporter.

This commit is contained in:
Guo Xiang Tan 2016-04-19 14:58:03 +08:00
parent 95e0948fba
commit fb6e7c1e19
No known key found for this signature in database
GPG Key ID: 19C321C8952B0F72

View File

@ -37,21 +37,9 @@ class DiscourseSassImporter < Sass::Importers::Filesystem
def find(name, options)
if name == "category_backgrounds"
contents = ""
Category.where('background_url IS NOT NULL').each do |c|
contents << special_imports[name].call(c) if c.background_url.present?
end
return ::Sass::Engine.new(contents, options.merge(
filename: "#{name}.scss",
importer: self,
syntax: :scss
))
end
if special_imports.has_key? name
if name == "theme_variables"
case name
when "theme_variables"
contents = ""
if color_scheme = ColorScheme.enabled
ColorScheme.base_colors.each do |n, base_hex|
@ -63,12 +51,11 @@ class DiscourseSassImporter < Sass::Importers::Filesystem
contents << File.read(css_file)
end
end
::Sass::Engine.new(contents, options.merge(
filename: "#{name}.scss",
importer: self,
syntax: :scss
))
when "category_backgrounds"
contents = ""
Category.where('background_url IS NOT NULL').each do |c|
contents << special_imports[name].call(c) if c.background_url.present?
end
else
stylesheets = special_imports[name]
contents = ""
@ -80,13 +67,13 @@ class DiscourseSassImporter < Sass::Importers::Filesystem
end
depend_on(css_file)
end
end
::Sass::Engine.new(contents, options.merge(
filename: "#{name}.scss",
importer: self,
syntax: :scss
))
end
else
engine_from_path(name, root, options)
end