discourse/lib/autospec/reload_css.rb

46 lines
1.1 KiB
Ruby
Raw Normal View History

module Autospec; end
2013-11-01 18:57:50 -04:00
class Autospec::ReloadCss
2013-11-01 18:57:50 -04:00
WATCHERS = {}
def self.watch(pattern, &blk)
2013-11-01 18:57:50 -04:00
WATCHERS[pattern] = blk
end
2013-11-01 18:57:50 -04:00
# css, scss, sass or handlebars
watch(/\.css$/)
2013-11-01 18:57:50 -04:00
watch(/\.ca?ss\.erb$/)
watch(/\.s[ac]ss$/)
watch(/\.handlebars$/)
def self.message_bus
MessageBus::Instance.new.tap do |bus|
bus.site_id_lookup do
2013-11-01 18:57:50 -04:00
# this is going to be dev the majority of the time
# if you have multisite configured in dev stuff may be different
"default"
end
end
end
def self.run_on_change(paths)
if paths.any? { |p| p =~ /\.(css|s[ac]ss)/ }
s = DiscourseStylesheets.new(:desktop) # TODO: what about mobile?
s.compile
paths << "public" + s.stylesheet_relpath_no_digest
end
paths.map! do |p|
hash = nil
2013-11-01 18:57:50 -04:00
fullpath = "#{Rails.root}/#{p}"
hash = Digest::MD5.hexdigest(File.read(fullpath)) if File.exists?(fullpath)
p = p.sub /\.sass\.erb/, ""
p = p.sub /\.sass/, ""
p = p.sub /\.scss/, ""
p = p.sub /^app\/assets\/stylesheets/, "assets"
2013-11-01 18:57:50 -04:00
{ name: p, hash: hash }
end
message_bus.publish "/file-change", paths
end
end