-
Notifications
You must be signed in to change notification settings - Fork 174
/
scaffold_generator.rb
35 lines (28 loc) · 1.05 KB
/
scaffold_generator.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require "rails/generators/erb/scaffold/scaffold_generator"
require "rails/generators/resource_helpers"
module Tailwindcss
module Generators
class ScaffoldGenerator < Erb::Generators::ScaffoldGenerator
include Rails::Generators::ResourceHelpers
source_root File.expand_path("templates", __dir__)
source_paths << "lib/templates/erb/scaffold"
argument :attributes, type: :array, default: [], banner: "field:type field:type"
def create_root_folder
empty_directory File.join("app/views", controller_file_path)
end
def copy_view_files
available_views.each do |view|
formats.each do |format|
filename = filename_with_extensions(view, format)
template filename, File.join("app/views", controller_file_path, filename)
end
end
template "partial.html.erb", File.join("app/views", controller_file_path, "_#{singular_name}.html.erb")
end
private
def available_views
%w(index edit show new _form)
end
end
end
end