2018-03-29 19:10:27 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
|
|
class React::ComponentGenerator < Rails::Generators::NamedBase
|
|
|
|
source_root File.expand_path('../templates', __FILE__)
|
|
|
|
|
|
|
|
def copy_file_to_component
|
2018-05-21 20:03:46 +00:00
|
|
|
template 'component.tsx.erb', File.join("javascripts/src/components", *(class_path + ["#{file_name.camelize}.tsx"]))
|
|
|
|
template 'component.spec.tsx.erb', File.join("javascripts/src/components", *(class_path + ["#{file_name.camelize}.spec.tsx"]))
|
2018-03-29 19:10:27 +00:00
|
|
|
end
|
|
|
|
end
|