-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Engines support #484
base: main
Are you sure you want to change the base?
Changes from all commits
d4e1acf
495b521
65b9ecb
477454e
8c950aa
3361a27
284d66c
4f51cf9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,40 @@ def watch_command(always: false, poll: false, **kwargs) | |
def rails_css_compressor? | ||
defined?(Rails) && Rails&.application&.config&.assets&.css_compressor.present? | ||
end | ||
|
||
def engines_tailwindcss_roots | ||
return [] unless defined?(Rails) | ||
|
||
Rails::Engine.subclasses.select do |engine| | ||
begin | ||
spec = Gem::Specification.find_by_name(engine.engine_name) | ||
spec.dependencies.any? { |d| d.name == 'tailwindcss-rails' } | ||
rescue Gem::MissingSpecError | ||
false | ||
end | ||
end.map do |engine| | ||
[ | ||
Rails.root.join("app/assets/tailwind/#{engine.engine_name}/application.css"), | ||
engine.root.join("app/assets/tailwind/#{engine.engine_name}/application.css") | ||
].select(&:exist?).compact.first.to_s | ||
end.compact | ||
end | ||
|
||
def enhance_command(command) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't like this pattern of modifying the command string. I would prefer if def compile_command(input: application_css, debug: false, **kwargs)
debug = ENV["TAILWINDCSS_DEBUG"].present? if ENV.key?("TAILWINDCSS_DEBUG")
rails_root = defined?(Rails) ? Rails.root : Pathname.new(Dir.pwd)
command = [
Tailwindcss::Ruby.executable(**kwargs),
"-i", application_css,
"-o", rails_root.join("app/assets/builds/tailwind.css").to_s,
]
command << "--minify" unless (debug || rails_css_compressor?)
postcss_path = rails_root.join("postcss.config.js")
command += ["--postcss", postcss_path.to_s] if File.exist?(postcss_path)
command
end
def application_css
rails_root = defined?(Rails) ? Rails.root : Pathname.new(Dir.pwd)
file = Tempfile.new("tailwind.application.css")
engine_roots.each do |root|
file.puts "@import \"#{root}\";"
end
file.puts "\n@import \"#{rails_root.join('app/assets/tailwind/application.css')}\";"
file.close
file.path
end This way the complication of tempfile generation doesn't bleed into the rake tasks. |
||
engine_roots = Tailwindcss::Commands.engines_tailwindcss_roots | ||
if engine_roots.any? | ||
Tempfile.create('tailwind.css') do |file| | ||
file.write(engine_roots.map { |root| "@import \"#{root}\";" }.join("\n")) | ||
file.write("\n@import \"#{Rails.root.join('app/assets/tailwind/application.css')}\";\n") | ||
file.rewind | ||
transformed_command = command.dup | ||
transformed_command[2] = file.path | ||
yield transformed_command if block_given? | ||
end | ||
else | ||
yield command if block_given? | ||
end | ||
end | ||
end | ||
end | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is
Gem::Specification.find_by_name
guaranteed to return spec for the version of the gem that is loaded? If there are multiple versions installed on the system, could it return the spec from an earlier or later version?I've not seen this pattern of using an engine's dependencies to control behavior, and it feels very indirect/implicit. I'm very hesitant to use this approach.
Help me understand why we shouldn't use a railtie and ask engines to be explicit/imperative? The engine, in its railtie file, should explicitly do something like:
That would greatly simplify what we do in the gem.