discourse/lib/autospec/reload_css.rb

52 lines
1.3 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(/\.hbs$/)
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)/ }
2015-02-27 01:19:30 -05:00
# todo connect to dev instead?
ActiveRecord::Base.establish_connection
2015-06-22 00:35:11 -04:00
[:desktop, :mobile].each do |style|
s = DiscourseStylesheets.new(style)
s.compile
s.ensure_digestless_file
paths << "public" + s.stylesheet_relpath_no_digest
end
2015-02-27 01:19:30 -05:00
ActiveRecord::Base.clear_active_connections!
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)
2015-02-27 01:19:30 -05:00
p = p.sub(/\.sass\.erb/, "")
p = p.sub(/\.sass/, "")
p = p.sub(/\.scss/, "")
p = p.sub(/^app\/assets\/stylesheets/, "assets")
2015-06-22 00:35:11 -04:00
{ name: p, hash: hash || SecureRandom.hex }
end
message_bus.publish "/file-change", paths
end
end