require "indefinite_article"
require "yaml"
require "scaffolding/file_manipulator"
require "scaffolding/class_names_transformer"
class Scaffolding::Transformer
attr_accessor :child, :parent, :parents, :class_names_transformer, :cli_options, :additional_steps, :namespace, :suppress_could_not_find
def update_models_abstract_class
end
def created_by_reference(created_by_index_name)
end
def approved_by_reference(approved_by_index_name)
end
def permit_parents
["Team"]
end
def last_joinable_parent
"Team"
end
def top_level_model?
parent == "Team" || no_parent?
end
# We write an explicit method here so we know we
# aren't handling `parent` in this situation as `nil`.
def no_parent?
parent == "None"
end
def update_action_models_abstract_class(targets_n)
end
def initialize(child, parents, cli_options = {})
self.child = child
self.parent = parents.first
self.parents = parents
self.namespace = cli_options["namespace"] || "account"
self.class_names_transformer = Scaffolding::ClassNamesTransformer.new(child, parent, namespace)
self.cli_options = cli_options
self.additional_steps = []
end
RUBY_NEW_FIELDS_PROCESSING_HOOK = "# 🚅 super scaffolding will insert processing for new fields above this line."
RUBY_NEW_ARRAYS_HOOK = "# 🚅 super scaffolding will insert new arrays above this line."
RUBY_NEW_FIELDS_HOOK = "# 🚅 super scaffolding will insert new fields above this line."
RUBY_ADDITIONAL_NEW_FIELDS_HOOK = "# 🚅 super scaffolding will also insert new fields above this line."
RUBY_EVEN_MORE_NEW_FIELDS_HOOK = "# 🚅 super scaffolding will additionally insert new fields above this line."
RUBY_NEW_API_VERSION_HOOK = "# 🚅 super scaffolding will insert new api versions above this line."
RUBY_FILES_HOOK = "# 🚅 super scaffolding will insert file-related logic above this line."
RUBY_FACTORY_SETUP_HOOK = "# 🚅 super scaffolding will insert factory setup in place of this line."
ERB_NEW_FIELDS_HOOK = "<%#{RUBY_NEW_FIELDS_HOOK} %>"
CONCERNS_HOOK = "# 🚅 add concerns above."
ATTR_ACCESSORS_HOOK = "# 🚅 add attribute accessors above."
BELONGS_TO_HOOK = "# 🚅 add belongs_to associations above."
HAS_MANY_HOOK = "# 🚅 add has_many associations above."
OAUTH_PROVIDERS_HOOK = "# 🚅 add oauth providers above."
HAS_ONE_HOOK = "# 🚅 add has_one associations above."
SCOPES_HOOK = "# 🚅 add scopes above."
VALIDATIONS_HOOK = "# 🚅 add validations above."
CALLBACKS_HOOK = "# 🚅 add callbacks above."
DELEGATIONS_HOOK = "# 🚅 add delegations above."
METHODS_HOOK = "# 🚅 add methods above."
def encode_double_replacement_fix(string)
string.chars.join("~!@BT@!~")
end
def decode_double_replacement_fix(string)
string.gsub("~!@BT@!~", "")
end
def transform_string(string)
[
# full class name plural.
"Scaffolding::AbsolutelyAbstract::CreativeConcepts",
"Scaffolding::CompletelyConcrete::TangibleThings",
"ScaffoldingAbsolutelyAbstractCreativeConcepts",
"ScaffoldingCompletelyConcreteTangibleThings",
"Scaffolding Absolutely Abstract Creative Concepts",
"Scaffolding Completely Concrete Tangible Things",
"Scaffolding/Absolutely Abstract/Creative Concepts",
"Scaffolding/Completely Concrete/Tangible Things",
"scaffolding/absolutely_abstract/creative_concepts",
"scaffolding/completely_concrete/tangible_things",
"scaffolding/completely_concrete/_tangible_things",
"scaffolding_absolutely_abstract_creative_concepts",
"scaffolding_completely_concrete_tangible_things",
"scaffolding-absolutely-abstract-creative-concepts",
"scaffolding-completely-concrete-tangible-things",
# full class name singular.
"Scaffolding::AbsolutelyAbstract::CreativeConcept",
"Scaffolding::CompletelyConcrete::TangibleThing",
"ScaffoldingAbsolutelyAbstractCreativeConcept",
"ScaffoldingCompletelyConcreteTangibleThing",
"Scaffolding Absolutely Abstract Creative Concept",
"Scaffolding Completely Concrete Tangible Thing",
"Scaffolding/Absolutely Abstract/Creative Concept",
"Scaffolding/Completely Concrete/Tangible Thing",
"scaffolding/absolutely_abstract/creative_concept",
"scaffolding/completely_concrete/tangible_thing",
"scaffolding_absolutely_abstract_creative_concept",
"scaffolding_completely_concrete_tangible_thing",
"scaffolding-absolutely-abstract-creative-concept",
"scaffolding-completely-concrete-tangible-thing",
"scaffolding.completely_concrete.tangible_things",
# class name in context plural.
"absolutely_abstract_creative_concepts",
"completely_concrete_tangible_things",
"absolutely_abstract/creative_concepts",
"completely_concrete/tangible_things",
"absolutely-abstract-creative-concepts",
"completely-concrete-tangible-things",
# class name in context singular.
"absolutely_abstract_creative_concept",
"completely_concrete_tangible_thing",
"absolutely_abstract/creative_concept",
"completely_concrete/tangible_thing",
"absolutely-abstract-creative-concept",
"completely-concrete-tangible-thing",
# just class name singular.
"creative_concepts",
"tangible_things",
"creative-concepts",
"tangible-things",
"Creative Concepts",
"Tangible Things",
"Creative concepts",
"Tangible things",
"creative concepts",
"tangible things",
# just class name plural.
"creative_concept",
"tangible_thing",
"creative-concept",
"tangible-thing",
"Creative Concept",
"Tangible Thing",
"Creative concept",
"Tangible thing",
"creative concept",
"tangible thing",
# Account namespace vs. others.
":account",
"/account/"
].each do |needle|
string = string.gsub(needle, encode_double_replacement_fix(class_names_transformer.replacement_for(needle)))
end
{
"/v1/" => "/#{BulletTrain::Api.current_version}/",
"::V1::" => "::#{BulletTrain::Api.current_version}::",
"_v1_" => "_#{BulletTrain::Api.current_version}_",
":v1," => ":#{BulletTrain::Api.current_version},"
}.each do |from, to|
string = string.gsub(from.upcase, encode_double_replacement_fix(to.upcase))
string = string.gsub(from.downcase, encode_double_replacement_fix(to.downcase))
end
decode_double_replacement_fix(string)
end
def resolve_template_path(file)
# Figure out the actual location of the file.
# Originally all the potential source files were in the repository alongside the application.
# Now the files could be provided by an included Ruby gem, so we allow those Ruby gems to register their base
# path and then we check them in order to see which template we should use.
BulletTrain::SuperScaffolding.template_paths.map do |base_path|
base_path = Pathname.new(base_path)
resolved_path = base_path.join(file).to_s
File.exist?(resolved_path) ? resolved_path : nil
end.compact.first || raise("Couldn't find the Super Scaffolding template for `#{file}` in any of the following locations:\n\n#{BulletTrain::SuperScaffolding.template_paths.join("\n")}")
end
def get_transformed_file_content(file)
transformed_file_content = []
skipping = false
gathering_lines_to_repeat = false
parents_to_repeat_for = []
gathered_lines_for_repeating = nil
File.open(resolve_template_path(file)).each_line do |line|
if line.include?("# 🚅 skip when scaffolding.")
next
end
if line.include?("# 🚅 skip this section if resource is nested directly under team.")
skipping = true if parent == "Team"
next
end
if line.include?("# 🚅 skip this section when scaffolding.")
skipping = true
next
end
if line.include?("# 🚅 stop any skipping we're doing now.")
skipping = false
next
end
if line.include?("# 🚅 for each child resource from team down to the resource we're scaffolding, repeat the following:")
gathering_lines_to_repeat = true
parents_to_repeat_for = ([child] + parents.dup).reverse
gathered_lines_for_repeating = []
next
end
if line.include?("# 🚅 stop repeating.")
gathering_lines_to_repeat = false
while parents_to_repeat_for.count > 1
current_parent = parents_to_repeat_for[0]
current_child = parents_to_repeat_for[1]
current_transformer = self.class.new(current_child, current_parent)
transformed_file_content << current_transformer.transform_string(gathered_lines_for_repeating.join)
parents_to_repeat_for.shift
end
next
end
if gathering_lines_to_repeat
gathered_lines_for_repeating << line
next
end
if skipping
next
end
# remove lines with 'remove in scaffolded files.'
unless line.include?("remove in scaffolded files.")
# only transform it if it doesn't have the lock emoji.
if line.include?("🔒")
# remove any comments that start with a lock.
line.gsub!(/\s+?#\s+🔒.*/, "")
else
line = transform_string(line)
end
transformed_file_content << line
end
end
transformed_file_content.join
end
def scaffold_file(file, overrides: false)
transformed_file_content = get_transformed_file_content(file)
transformed_file_name = transform_string(file)
# Remove `_overrides` from the file name if we're sourcing from a local override folder.
transformed_file_name.gsub!("_overrides", "") if overrides
transformed_directory_name = File.dirname(transformed_file_name)
unless File.directory?(transformed_directory_name)
FileUtils.mkdir_p(transformed_directory_name)
end
puts "Writing '#{transformed_file_name}'." unless silence_logs?
File.write(transformed_file_name, transformed_file_content.strip + "\n")
if transformed_file_name.split(".").last == "rb"
puts "Fixing Standard Ruby on '#{transformed_file_name}'." unless silence_logs?
# `standardrb --fix #{transformed_file_name} 2> /dev/null`
end
end
def scaffold_directory(directory)
transformed_directory_name = transform_string(directory)
begin
Dir.mkdir(transformed_directory_name)
rescue Errno::EEXIST => _
puts "The directory #{transformed_directory_name} already exists, skipping generation.".yellow
rescue Errno::ENOENT => _
puts "Proceeding to generate '#{transformed_directory_name}'."
end
Dir.foreach(resolve_template_path(directory)) do |file|
file = "#{directory}/#{file}"
next if file.match?("/_menu_item.html.erb") && !top_level_model?
unless File.directory?(resolve_template_path(file))
scaffold_file(file)
end
end
# Allow local developers to override just certain files of a directory.
override_path = begin
resolve_template_path(directory + "_overrides")
rescue RuntimeError
nil
end
if override_path
Dir.foreach(override_path) do |file|
file = "#{directory}_overrides/#{file}"
next if file.match?("/_menu_item.html.erb") && !top_level_model?
unless File.directory?(resolve_template_path(file))
scaffold_file(file, overrides: true)
end
end
end
end
def add_line_to_file(file, content, hook, options = {})
increase_indent = options[:increase_indent]
add_before = options[:add_before]
add_after = options[:add_after]
transformed_file_name = file
transformed_content = content
transform_hook = hook
begin
target_file_content = File.read(transformed_file_name)
rescue Errno::ENOENT => _
puts "Couldn't find '#{transformed_file_name}'".red unless suppress_could_not_find || options[:suppress_could_not_find]
return false
end
if target_file_content.include?(transformed_content)
puts "No need to update '#{transformed_file_name}'. It already has '#{transformed_content}'." unless silence_logs?
else
new_target_file_content = []
target_file_content.split("\n").each do |line|
if options[:exact_match] ? line == transform_hook : line.match(/#{Regexp.escape(transform_hook)}\s*$/)
if add_before
new_target_file_content << "#{line} #{add_before}"
else
unless options[:prepend]
new_target_file_content << line
end
end
line =~ /^(\s*).*#{Regexp.escape(transform_hook)}.*/
leading_whitespace = $1
incoming_leading_whitespace = nil
transformed_content.lines.each do |content_line|
content_line.rstrip
content_line =~ /^(\s*).*/
# this ignores empty lines.
# it accepts any amount of whitespace if we haven't seen any whitespace yet.
if content_line.present? && $1 && (incoming_leading_whitespace.nil? || $1.length < incoming_leading_whitespace.length)
incoming_leading_whitespace = $1
end
end
incoming_leading_whitespace ||= ""
transformed_content.lines.each do |content_line|
new_target_file_content << "#{leading_whitespace}#{" " if increase_indent}#{content_line.gsub(/^#{incoming_leading_whitespace}/, "").rstrip}".presence
end
new_target_file_content << "#{leading_whitespace}#{add_after}" if add_after
if options[:prepend]
new_target_file_content << line
end
else
new_target_file_content << line
end
end
puts "Updating '#{transformed_file_name}'." unless silence_logs?
File.write(transformed_file_name, new_target_file_content.join("\n").strip + "\n")
end
end
def scaffold_add_line_to_file(file, content, hook, options = {})
file = transform_string(file)
content = transform_string(content)
hook = transform_string(hook)
add_line_to_file(file, content, hook, options)
end
def scaffold_replace_line_in_file(file, content, in_place_of)
file = transform_string(file)
# we specifically don't transform the content, we assume a builder function created this content.
in_place_of = transform_string(in_place_of)
Scaffolding::FileManipulator.replace_line_in_file(file, content, in_place_of, suppress_could_not_find: suppress_could_not_find)
end
# if class_name isn't specified, we use `child`.
# if class_name is specified, then `child` is assumed to be a parent of `class_name`.
# returns an array with the ability line and a boolean indicating whether the ability line should be inserted among
# the abilities for admins only. (this happens when building an ability line for a resources that doesn't ultimately
# belong to a Team or a User.)
def build_ability_line(class_names = nil)
# e.g. ['Conversations::Message', 'Conversation']
if class_names
# e.g. 'Conversations::Message'
class_name = class_names.shift
# e.g. ['Conversation', 'Deliverable', 'Phase', 'Project', 'Team']
working_parents = class_names + [child] + parents
else
# e.g. 'Deliverable'
class_name = child
# e.g. ['Phase', 'Project', 'Team']
working_parents = parents.dup
end
case working_parents.last
when "User"
working_parents.pop
ability_line = "user_id: user.id"
when "Team"
working_parents.pop
ability_line = "team_id: user.team_ids"
else
# if a resources is specified that isn't ultimately owned by a team or a user, then only admins can manage it.
return ["can :manage, #{class_name}", true]
end
# e.g. ['Phase', 'Project']
while working_parents.any?
current_parent = working_parents.pop
current_transformer = Scaffolding::ClassNamesTransformer.new(working_parents.last || class_name, current_parent, namespace)
ability_line = "#{current_transformer.parent_variable_name_in_context}: {#{ability_line}}"
end
# e.g. "can :manage, Deliverable, phase: {project: {team_id: user.team_ids}}"
["can :manage, #{class_name}, #{ability_line}", false]
end
def build_conversation_ability_line
build_ability_line(["Conversations::Message", "Conversation"])
end
def add_scaffolding_hooks_to_model
before_scaffolding_hooks = <<~RUBY
#{CONCERNS_HOOK}
#{ATTR_ACCESSORS_HOOK}
RUBY
after_scaffolding_hooks = <<-RUBY
#{BELONGS_TO_HOOK}
#{HAS_MANY_HOOK}
#{HAS_ONE_HOOK}
#{SCOPES_HOOK}
#{VALIDATIONS_HOOK}
#{CALLBACKS_HOOK}
#{DELEGATIONS_HOOK}
#{METHODS_HOOK}
RUBY
# add scaffolding hooks to the model.
unless File.readlines(transform_string("./app/models/scaffolding/completely_concrete/tangible_thing.rb")).join.include?(CONCERNS_HOOK)
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", before_scaffolding_hooks, "ApplicationRecord", increase_indent: true)
end
unless File.readlines(transform_string("./app/models/scaffolding/completely_concrete/tangible_thing.rb")).join.include?(BELONGS_TO_HOOK)
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", after_scaffolding_hooks, "end", prepend: true, increase_indent: true, exact_match: true)
end
end
def add_ability_line_to_roles_yml(class_names = nil)
model_names = class_names || [child]
role_file = "./config/models/roles.yml"
model_names.each do |model_name|
Scaffolding::FileManipulator.add_line_to_yml_file(role_file, "#{model_name}: read", [:default, :models])
Scaffolding::FileManipulator.add_line_to_yml_file(role_file, "#{model_name}: manage", [:admin, :models])
end
end
def build_factory_setup
class_name = child
working_parents = parents.dup
current_parent = working_parents.pop
current_transformer = Scaffolding::Transformer.new(working_parents.last || class_name, [current_parent])
setup_lines = []
unless current_parent == "Team" || current_parent == "User"
setup_lines << current_transformer.transform_string("@absolutely_abstract_creative_concept = create(:scaffolding_absolutely_abstract_creative_concept)")
end
previous_assignment = current_transformer.transform_string("absolutely_abstract_creative_concept: @absolutely_abstract_creative_concept")
current_parent = working_parents.pop
while current_parent
current_transformer = Scaffolding::Transformer.new(working_parents.last || class_name, [current_parent])
setup_lines << current_transformer.transform_string("@absolutely_abstract_creative_concept = create(:scaffolding_absolutely_abstract_creative_concept, #{previous_assignment})")
previous_assignment = current_transformer.transform_string("absolutely_abstract_creative_concept: @absolutely_abstract_creative_concept")
current_parent = working_parents.pop
end
setup_lines << current_transformer.transform_string("@tangible_thing = build(:scaffolding_completely_concrete_tangible_thing, #{previous_assignment})")
setup_lines
end
def replace_in_file(file, before, after, target_regexp = nil)
puts "Replacing in '#{file}'." unless silence_logs?
if target_regexp.present?
target_file_content = ""
File.open(file).each_line do |l|
l.gsub!(before, after) if !!l.match(target_regexp)
target_file_content += l
end
else
target_file_content = File.read(file)
target_file_content.gsub!(before, after)
end
File.write(file, target_file_content)
end
def restart_server
# restart the server.
puts "Restarting the server so it picks up the new localization .yml file."
`./bin/rails restart`
end
def add_locale_helper_export_fix
namespaced_locale_export_hook = "# 🚅 super scaffolding will insert the export for the locale view helper here."
spacer = " "
indentation = spacer * 3
namespace_elements = child.underscore.pluralize.split("/")
last_element = namespace_elements.shift
lines_to_add = [last_element + ":"]
namespace_elements.map do |namespace_element|
lines_to_add << indentation + namespace_element + ":"
last_element = namespace_element
indentation += spacer
end
lines_to_add << lines_to_add.pop + " *#{last_element}"
scaffold_replace_line_in_file("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml", lines_to_add.join("\n"), namespaced_locale_export_hook)
end
def scaffold_new_breadcrumbs(child, parents)
scaffold_file("./app/views/account/scaffolding/completely_concrete/tangible_things/_breadcrumbs.html.erb")
puts
puts "Heads up! We're only able to generate the new breadcrumb views, so you'll have to edit `#{transform_string("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml")}` and add the label. You can look at `./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml` for an example of how to do this, but here's an example of what it should look like:".yellow
puts
puts transform_string("en:\n scaffolding/completely_concrete/tangible_things: &tangible_things\n label: &label Things\n breadcrumbs:\n label: *label").yellow
puts
end
def add_has_many_association
has_many_line = ["has_many :completely_concrete_tangible_things"]
# Specify the class name if the model is namespaced.
if child.match?("::")
has_many_line << "class_name: \"Scaffolding::CompletelyConcrete::TangibleThing\""
end
has_many_line << "dependent: :destroy"
# Specify the foreign key if the parent is namespaced.
if parent.match?("::")
has_many_line << "foreign_key: :absolutely_abstract_creative_concept_id"
# And if we need `foreign_key`, we should also specify `inverse_of`.
has_many_line << "inverse_of: :absolutely_abstract_creative_concept"
end
has_many_string = transform_string(has_many_line.join(", "))
add_line_to_file(transform_string("./app/models/scaffolding/absolutely_abstract/creative_concept.rb"), has_many_string, HAS_MANY_HOOK, prepend: true)
# Return the name of the has_many association.
has_many_string.split(",").first.split(":").last
end
def add_has_many_through_associations(has_many_through_transformer)
has_many_association = add_has_many_association
has_many_through_string = has_many_through_transformer.transform_string("has_many :completely_concrete_tangible_things, through: :$HAS_MANY_ASSOCIATION")
has_many_through_string.gsub!("$HAS_MANY_ASSOCIATION", has_many_association)
add_line_to_file(transform_string("./app/models/scaffolding/absolutely_abstract/creative_concept.rb"), has_many_through_string, HAS_MANY_HOOK, prepend: true)
end
def add_attributes_to_various_views(attributes, scaffolding_options = {})
sql_type_to_field_type_mapping = {
# 'binary' => '',
"boolean" => "options",
"date" => "date_field",
"datetime" => "date_and_time_field",
"decimal" => "text_field",
"float" => "text_field",
"integer" => "text_field",
"bigint" => "text_field",
# 'primary_key' => '',
# 'references' => '',
"string" => "text_field",
"text" => "text_area"
# 'time' => '',
# 'timestamp' => '',
}
# add attributes to various views.
attributes.each_with_index do |attribute, index|
first_table_cell = index == 0 && scaffolding_options[:type] == :crud
parts = attribute.split(":")
name = parts.shift
type = parts.join(":")
boolean_buttons = type == "boolean"
# extract any options they passed in with the field.
# will extract options declared with either [] or {}.
type, attribute_options = type.scan(/^(.*){(.*)}/).first || type
# create a hash of the options.
attribute_options = if attribute_options
attribute_options.split(",").map { |s|
option_name, option_value = s.split("=")
[option_name.to_sym, option_value || true]
}.to_h
else
{}
end
attribute_options[:label] ||= "label_string"
if sql_type_to_field_type_mapping[type]
type = sql_type_to_field_type_mapping[type]
end
is_id = name.match?(/_id$/)
is_ids = name.match?(/_ids$/)
# if this is the first attribute of a newly scaffolded model, that field is required.
unless type == "file_field"
is_required = attribute_options[:required] || (scaffolding_options[:type] == :crud && index == 0)
end
is_vanilla = attribute_options&.key?(:vanilla)
is_belongs_to = is_id && !is_vanilla
is_has_many = is_ids && !is_vanilla
is_multiple = attribute_options&.key?(:multiple) || is_has_many
is_association = is_belongs_to || is_has_many
# Sometimes we need all the magic of a `*_id` field, but without the scoping stuff.
# Possibly only ever used internally by `join-model`.
is_unscoped = attribute_options[:unscoped]
name_without_id = name.gsub(/_id$/, "")
name_without_ids = name.gsub(/_ids$/, "").pluralize
collection_name = is_ids ? name_without_ids : name_without_id.pluralize
# field on the show view.
attribute_partial ||= attribute_options[:attribute] || case type
when "trix_editor", "ckeditor"
"html"
when "buttons", "super_select", "options", "boolean"
if is_ids
"has_many"
elsif is_id
"belongs_to"
else
"option#{"s" if is_multiple}"
end
when "cloudinary_image"
attribute_options[:height] = 200
"image"
when "phone_field"
"phone_number"
when "date_field"
"date"
when "date_and_time_field"
"date_and_time"
when "email_field"
"email"
when "emoji_field"
"text"
when "color_picker"
"code"
when "text_field"
"text"
when "text_area"
"text"
when "file_field"
"file"
when "password_field"
"text"
else
raise "Invalid field type: #{type}."
end
cell_attributes = if boolean_buttons
' class="text-center"'
end
# e.g. from `person_id` to `person` or `person_ids` to `people`.
attribute_name = if is_ids
name_without_ids
elsif is_id
name_without_id
else
name
end
title_case = if is_ids
# user_ids should be 'Users'
name_without_ids.humanize.titlecase
elsif is_id
name_without_id.humanize.titlecase
else
name.humanize.titlecase
end
attribute_assignment = case type
when "text_field", "password_field", "text_area"
"'Alternative String Value'"
when "email_field"
"'another.email@test.com'"
when "phone_field"
"'+19053871234'"
when "color_picker"
"'#47E37F'"
end
# don't do table columns for certain types of fields and attribute partials
if ["trix_editor", "ckeditor", "text_area"].include?(type) || ["html", "has_many"].include?(attribute_partial)
cli_options["skip-table"] = true
end
if type == "none"
cli_options["skip-form"] = true
end
if attribute_partial == "none"
cli_options["skip-show"] = true
cli_options["skip-table"] = true
end
#
# MODEL VALIDATIONS
#
unless cli_options["skip-form"] || is_unscoped
file_name = "./app/models/scaffolding/completely_concrete/tangible_thing.rb"
if is_association
field_content = if attribute_options[:source]
<<~RUBY
def valid_#{collection_name}
#{attribute_options[:source]}
end
RUBY
else
add_additional_step :yellow, transform_string("You'll need to implement the `valid_#{collection_name}` method of `Scaffolding::CompletelyConcrete::TangibleThing` in `./app/models/scaffolding/completely_concrete/tangible_thing.rb`. This is the method that will be used to populate the `#{type}` field and also validate that users aren't trying to exploit multitenancy.")
<<~RUBY
def valid_#{collection_name}
raise "please review and implement `valid_#{collection_name}` in `app/models/scaffolding/completely_concrete/tangible_thing.rb`."
# please specify what objects should be considered valid for assigning to `#{name_without_id}`.
# the resulting code should probably look something like `team.#{collection_name}`.
end
RUBY
end
scaffold_add_line_to_file(file_name, field_content, METHODS_HOOK, prepend: true)
if is_belongs_to
scaffold_add_line_to_file(file_name, "validates :#{name_without_id}, scope: true", VALIDATIONS_HOOK, prepend: true)
end
# TODO we need to add a multitenancy check for has many associations.
end
end
#
# FORM FIELD
#
unless cli_options["skip-form"] || attribute_options[:readonly]
# add `has_rich_text` for trix editor fields.
if type == "trix_editor"
file_name = "./app/models/scaffolding/completely_concrete/tangible_thing.rb"
scaffold_add_line_to_file(file_name, "has_rich_text :#{name}", HAS_ONE_HOOK, prepend: true)
end
# field on the form.
field_attributes = {method: ":#{name}"}
field_options = {}
options = {}
if scaffolding_options[:type] == :crud && index == 0
field_options[:autofocus] = "true"
end
if is_id && type == "super_select"
options[:include_blank] = "t('.fields.#{name}.placeholder')"
# add_additional_step :yellow, transform_string("We've added a reference to a `placeholder` to the form for the select or super_select field, but unfortunately earlier versions of the scaffolded locales Yaml don't include a reference to `fields: *fields` under `form`. Please add it, otherwise your form won't be able to locate the appropriate placeholder label.")
end
if type == "color_picker"
field_options[:color_picker_options] = "t('#{child.pluralize.underscore}.fields.#{name}.options')"
end
# TODO: This feels incorrect.
# Should we adjust the partials to only use `{multiple: true}` or `html_options: {multiple_true}`?
if is_multiple
if type == "super_select"
field_options[:multiple] = "true"
else
field_attributes[:multiple] = "true"
end
end
valid_values = if is_id
"valid_#{name_without_id.pluralize}"
elsif is_ids
"valid_#{collection_name}"
end
# https://stackoverflow.com/questions/21582464/is-there-a-ruby-hashto-s-equivalent-for-the-new-hash-syntax
if field_options.any? || options.any?
field_options_key = if ["buttons", "super_select", "options"].include?(type)
if options.any?
field_attributes[:options] = "{" + field_options.map { |key, value| "#{key}: #{value}" }.join(", ") + "}"
end
:html_options
else
field_options.merge!(options)
:options
end
field_attributes[field_options_key] = "{" + field_options.map { |key, value| "#{key}: #{value}" }.join(", ") + "}"
end
if is_association
short = attribute_options[:class_name].underscore.split("/").last
case type
when "buttons", "options"
field_attributes["\n options"] = "@tangible_thing.#{valid_values}.map { |#{short}| [#{short}.id, #{short}.#{attribute_options[:label]}] }"
when "super_select"
field_attributes["\n choices"] = "@tangible_thing.#{valid_values}.map { |#{short}| [#{short}.#{attribute_options[:label]}, #{short}.id] }"
end
end
field_content = "<%= render 'shared/fields/#{type}'#{", " if field_attributes.any?}#{field_attributes.map { |key, value| "#{key}: #{value}" }.join(", ")} %>"
# TODO Add more of these from other packages?
is_core_model = ["Team", "User", "Membership"].include?(child)
scaffold_add_line_to_file("./app/views/account/scaffolding/completely_concrete/tangible_things/_form.html.erb", field_content, ERB_NEW_FIELDS_HOOK, prepend: true, suppress_could_not_find: is_core_model)
scaffold_add_line_to_file("./app/views/account/scaffolding/completely_concrete/tangible_things/_fields.html.erb", field_content, ERB_NEW_FIELDS_HOOK, prepend: true, suppress_could_not_find: !is_core_model)
end
#
# SHOW VIEW
#
unless cli_options["skip-show"]
if is_id
<<~ERB
<% if @tangible_thing.#{name_without_id} %>
<% end %>
ERB
elsif is_ids
<<~ERB
<% if @tangible_thing.#{collection_name}.any? %>
<% end %>
ERB
end
# this gets stripped and is one line, so indentation isn't a problem.
field_content = <<-ERB
<%= render 'shared/attributes/#{attribute_partial}', attribute: :#{attribute_name} %>
ERB
if type == "password_field"
field_content.gsub!(/\s%>/, ", options: { password: true } %>")
end
show_page_doesnt_exist = child == "User"
scaffold_add_line_to_file("./app/views/account/scaffolding/completely_concrete/tangible_things/show.html.erb", field_content.strip, ERB_NEW_FIELDS_HOOK, prepend: true, suppress_could_not_find: show_page_doesnt_exist)
end
#
# INDEX TABLE
#
unless cli_options["skip-table"]
# table header.
field_content = "<%= t('.fields.#{attribute_name}.heading') %> | "
unless ["Team", "User"].include?(child)
scaffold_add_line_to_file("./app/views/account/scaffolding/completely_concrete/tangible_things/_index.html.erb", field_content, "<%# 🚅 super scaffolding will insert new field headers above this line. %>", prepend: true)
end
# If these strings are the same, we get duplicate variable names in the _index.html.erb partial,
# so we account for that here. Run the Super Scaffolding test setup script and check the index partial
# of models with namespaced parents for reference (i.e. - Objective, Projects::Step).
transformed_abstract_str = transform_string("absolutely_abstract_creative_concept")
transformed_concept_str = transform_string("creative_concept")
transformed_file_name = transform_string("./app/views/account/scaffolding/completely_concrete/tangible_things/_index.html.erb")
if (transformed_abstract_str == transformed_concept_str) && File.exist?(transformed_file_name)
replace_in_file(
transformed_file_name,
"#{transformed_abstract_str} = @#{transformed_abstract_str} || @#{transformed_concept_str}",
"#{transformed_abstract_str} = @#{transformed_concept_str}"
)
end
table_cell_options = []
if first_table_cell
table_cell_options << "url: [:account, tangible_thing]"
end
# this gets stripped and is one line, so indentation isn't a problem.
field_content = <<-ERB
<%= render 'shared/attributes/#{attribute_partial}', attribute: :#{attribute_name}#{", #{table_cell_options.join(", ")}" if table_cell_options.any?} %> |
ERB
if type == "password_field"
field_content.gsub!(/\s%>/, ", options: { password: true } %>")
end
unless ["Team", "User"].include?(child)
scaffold_add_line_to_file("./app/views/account/scaffolding/completely_concrete/tangible_things/_tangible_thing.html.erb", field_content.strip, ERB_NEW_FIELDS_HOOK, prepend: true)
end
end
#
# LOCALIZATIONS
#
unless cli_options["skip-locales"]
yaml_template = <<~YAML
<%= name %>: <% if is_association %>&<%= attribute_name %><% end %>
_: {name} #{title_case}
label: *#{name}
heading: *#{name}
<% if type == "super_select" %>
<% if is_required %>
placeholder: Select <% title_case.with_indefinite_article %>
<% else %>
placeholder: None
<% end %>
<% end %>
<% if boolean_buttons %>
options:
yes: "Yes"
no: "No"
<% elsif ["buttons", "super_select", "options"].include?(type) && !is_association %>
options:
one: One
two: Two
three: Three
<% end %>
<% if type == "color_picker" %>
options:
- '#9C73D2'
- '#48CDFE'
- '#53F3ED'
- '#47E37F'
- '#F2593D'
- '#F68421'
- '#F9DE00'
- '#929292'
<% end %>
<% if is_association %>
<%= attribute_name %>: *<%= attribute_name %>
<% end %>
YAML
field_content = ERB.new(yaml_template).result(binding).lines.select(&:present?).join
scaffold_add_line_to_file("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml", field_content, RUBY_NEW_FIELDS_HOOK, prepend: true)
# active record's field label.
scaffold_add_line_to_file("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml", "#{name}: *#{name}", "# 🚅 super scaffolding will insert new activerecord attributes above this line.", prepend: true)
end
#
# STRONG PARAMETERS
#
unless cli_options["skip-form"] || attribute_options[:readonly]
# add attributes to strong params.
[
"./app/controllers/account/scaffolding/completely_concrete/tangible_things_controller.rb",
"./app/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller.rb"
].each do |file|
if is_ids || is_multiple
scaffold_add_line_to_file(file, "#{name}: [],", RUBY_NEW_ARRAYS_HOOK, prepend: true)
else
scaffold_add_line_to_file(file, ":#{name},", RUBY_NEW_FIELDS_HOOK, prepend: true)
if type == "file_field"
scaffold_add_line_to_file(file, ":#{name}_removal,", RUBY_NEW_FIELDS_HOOK, prepend: true)
end
end
end
special_processing = case type
when "date_field"
"assign_date(strong_params, :#{name})"
when "date_and_time_field"
"assign_date_and_time(strong_params, :#{name})"
when "buttons"
if boolean_buttons
"assign_boolean(strong_params, :#{name})"
elsif is_multiple
"assign_checkboxes(strong_params, :#{name})"
end
when "options"
if is_multiple
"assign_checkboxes(strong_params, :#{name})"
end
when "super_select"
if boolean_buttons
"assign_boolean(strong_params, :#{name})"
elsif is_multiple
"assign_select_options(strong_params, :#{name})"
end
end
scaffold_add_line_to_file("./app/controllers/account/scaffolding/completely_concrete/tangible_things_controller.rb", special_processing, RUBY_NEW_FIELDS_PROCESSING_HOOK, prepend: true) if special_processing
end
#
# API SERIALIZER
#
unless cli_options["skip-api"]
# TODO The serializers can't handle these `has_rich_text` attributes.
unless type == "trix_editor"
unless type == "file_field"
scaffold_add_line_to_file("./app/views/api/v1/scaffolding/completely_concrete/tangible_things/_tangible_thing.json.jbuilder", ":#{name},", RUBY_NEW_FIELDS_HOOK, prepend: true, suppress_could_not_find: true)
end
assertion = case type
when "date_field"
"assert_equal_or_nil Date.parse(tangible_thing_data['#{name}']), tangible_thing.#{name}"
when "date_and_time_field"
"assert_equal_or_nil DateTime.parse(tangible_thing_data['#{name}']), tangible_thing.#{name}"
when "file_field"
"assert_equal tangible_thing_data['#{name}'], rails_blob_path(@tangible_thing.#{name}) unless controller.action_name == 'create'"
else
"assert_equal_or_nil tangible_thing_data['#{name}'], tangible_thing.#{name}"
end
scaffold_add_line_to_file("./test/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller_test.rb", assertion, RUBY_NEW_FIELDS_HOOK, prepend: true)
end
# File fields are handled in a specific way when using the jsonapi-serializer.
if type == "file_field"
scaffold_add_line_to_file("./app/views/api/v1/scaffolding/completely_concrete/tangible_things/_tangible_thing.json.jbuilder", "json.#{name} url_for(tangible_thing.#{name}) if tangible_thing.#{name}.attached?", RUBY_FILES_HOOK, prepend: true, suppress_could_not_find: true)
# We also want to make sure we attach the dummy file in the API test on setup
file_name = "./test/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller_test.rb"
content = <<~RUBY
@#{child.underscore}.#{name} = Rack::Test::UploadedFile.new("test/support/foo.txt")
@another_#{child.underscore}.#{name} = Rack::Test::UploadedFile.new("test/support/foo.txt")
RUBY
scaffold_add_line_to_file(file_name, content, RUBY_FILES_HOOK, prepend: true)
end
if attribute_assignment
unless attribute_options[:readonly]
scaffold_add_line_to_file("./test/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller_test.rb", "#{name}: #{attribute_assignment},", RUBY_ADDITIONAL_NEW_FIELDS_HOOK, prepend: true)
scaffold_add_line_to_file("./test/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller_test.rb", "assert_equal @tangible_thing.#{name}, #{attribute_assignment}", RUBY_EVEN_MORE_NEW_FIELDS_HOOK, prepend: true)
end
end
end
#
# OPENAPI DOCUMENTS
#
unless cli_options["skip-api"]
# We always want to suppress this error for this file, since it doesn't exist by default. We reset this below.
suppress_could_not_find_state = suppress_could_not_find
self.suppress_could_not_find = true
# It's OK that this won't be found most of the time.
scaffold_add_line_to_file(
"./app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_components.yaml.erb",
"<%= attribute :#{name} %>",
"<%# 🚅 super scaffolding will insert new attributes above this line. %>",
prepend: true
)
# It's OK that this won't be found most of the time.
scaffold_add_line_to_file(
"./app/views/api/v1/open_api/scaffolding/completely_concrete/tangible_things/_components.yaml.erb",
"<%= parameter :#{name} %>",
"<%# 🚅 super scaffolding will insert new parameter above this line. %>",
prepend: true
)
self.suppress_could_not_find = suppress_could_not_find_state
end
#
# MODEL ASSOCATIONS
#
unless cli_options["skip-model"]
if is_belongs_to
unless attribute_options[:class_name]
attribute_options[:class_name] = name_without_id.classify
end
file_name = "app/models/#{attribute_options[:class_name].underscore}.rb"
unless File.exist?(file_name)
raise "You'll need to specify a `class_name` option for `#{name}` because there is no `#{attribute_options[:class_name].classify}` model defined in `#{file_name}`. Try again with `#{name}:#{type}[class_name=SomeClassName]`."
end
modified_migration = false
# find the database migration that defines this relationship.
expected_reference = "add_reference :#{class_names_transformer.table_name}, :#{name_without_id}"
migration_file_name = `grep "#{expected_reference}" db/migrate/*`.split(":").first
# if that didn't work, see if we can find a creation of the reference when the table was created.
unless migration_file_name
confirmation_reference = "create_table :#{class_names_transformer.table_name}"
confirmation_migration_file_name = `grep "#{confirmation_reference}" db/migrate/*`.split(":").first
fallback_reference = "t.references :#{name_without_id}"
fallback_migration_file_name = `grep "#{fallback_reference}" db/migrate/* | grep #{confirmation_migration_file_name}`.split(":").first
if fallback_migration_file_name == confirmation_migration_file_name
migration_file_name = fallback_migration_file_name
end
end
unless is_required
if migration_file_name
replace_in_file(migration_file_name, ":#{name_without_id}, null: false", ":#{name_without_id}, null: true")
modified_migration = true
else
add_additional_step :yellow, "We would have expected there to be a migration that defined `#{expected_reference}`, but we didn't find one. Where was the reference added to this model? It's _probably_ the original creation of the table, but we couldn't find that either. Either way, you need to rollback, change 'null: false' to 'null: true' for this column, and re-run the migration (unless, of course, that attribute _is_ required, then you need to add a validation on the model)."
end
end
class_name_matches = name_without_id.tableize == attribute_options[:class_name].tableize.tr("/", "_")
# but also, if namespaces are involved, just don't...
if attribute_options[:class_name].include?("::")
class_name_matches = false
end
# unless the table name matches the association name.
unless class_name_matches
if migration_file_name
# There are two forms this association creation can take.
replace_in_file(migration_file_name, "foreign_key: true", "foreign_key: {to_table: \"#{attribute_options[:class_name].tableize.tr("/", "_")}\"}", /t\.references :#{name_without_id}/)
replace_in_file(migration_file_name, "foreign_key: true", "foreign_key: {to_table: \"#{attribute_options[:class_name].tableize.tr("/", "_")}\"}", /add_reference :#{child.underscore.pluralize.tr("/", "_")}, :#{name_without_id}/)
# TODO also solve the 60 character long index limitation.
modified_migration = true
else
add_additional_step :yellow, "We would have expected there to be a migration that defined `#{expected_reference}`, but we didn't find one. Where was the reference added to this model? It's _probably_ the original creation of the table. Either way, you need to rollback, change \"foreign_key: true\" to \"foreign_key: {to_table: '#{attribute_options[:class_name].tableize.tr("/", "_")}'}\" for this column, and re-run the migration."
end
end
optional_line = ", optional: true" unless is_required
# if the `belongs_to` is already there from `rails g model`..
scaffold_replace_line_in_file(
"./app/models/scaffolding/completely_concrete/tangible_thing.rb",
class_name_matches ?
"belongs_to :#{name_without_id}#{optional_line}" :
"belongs_to :#{name_without_id}, class_name: \"#{attribute_options[:class_name]}\"#{optional_line}",
"belongs_to :#{name_without_id}"
)
# if it wasn't there, the replace will not have done anything, so we insert it entirely.
# however, this won't do anything if the association is already there.
scaffold_add_line_to_file(
"./app/models/scaffolding/completely_concrete/tangible_thing.rb",
class_name_matches ?
"belongs_to :#{name_without_id}#{optional_line}" :
"belongs_to :#{name_without_id}, class_name: \"#{attribute_options[:class_name]}\"#{optional_line}",
BELONGS_TO_HOOK,
prepend: true
)
if modified_migration
add_additional_step :yellow, "If you've already run the migration in `#{migration_file_name}`, you'll need to roll back and run it again."
end
end
# Add `default: false` to boolean migrations.
if boolean_buttons
confirmation_reference = "create_table :#{class_names_transformer.table_name}"
confirmation_migration_file_name = `grep "#{confirmation_reference}" db/migrate/*`.split(":").first
old_line, new_line = nil
File.open(confirmation_migration_file_name) do |migration_file|
old_lines = migration_file.readlines
old_lines.each do |line|
target_attribute = line.match?(/\s*t\.boolean :#{name}/)
if target_attribute
old_line = line
new_line = "#{old_line.chomp}, default: false\n"
end
end
end
replace_in_file(confirmation_migration_file_name, old_line, new_line)
end
end
#
# MODEL HOOKS
#
unless cli_options["skip-model"]
if is_required && !is_belongs_to
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "validates :#{name}, presence: true", VALIDATIONS_HOOK, prepend: true)
end
case type
when "file_field"
remove_file_methods =
<<~RUBY
def #{name}_removal?
#{name}_removal.present?
end
def remove_#{name}
#{name}.purge
end
RUBY
# Generating a model with an `attachment(s)` data type (i.e. - `rails g ModelName file:attachment`)
# adds `has_one_attached` or `has_many_attached` to our model, just not directly above the
# HAS_ONE_HOOK or the HAS_MANY_HOOK. We move the string here so it's scaffolded above the proper hook.
model_file_path = transform_string("./app/models/scaffolding/completely_concrete/tangible_thing.rb")
model_contents = File.readlines(model_file_path)
reflection_declaration = is_multiple ? "has_many_attached :#{name}" : "has_one_attached :#{name}"
# Save the file without the hook so we can write it via the `scaffold_add_line_to_file` method below.
model_without_attached_hook = model_contents.reject.each { |line| line.include?(reflection_declaration) }
File.open(model_file_path, "w") do |f|
model_without_attached_hook.each { |line| f.write(line) }
end
hook_type = is_multiple ? HAS_MANY_HOOK : HAS_ONE_HOOK
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", reflection_declaration, hook_type, prepend: true)
# TODO: We may need to edit these depending on how we save multiple files.
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "attr_accessor :#{name}_removal", ATTR_ACCESSORS_HOOK, prepend: true)
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", remove_file_methods, METHODS_HOOK, prepend: true)
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "after_validation :remove_#{name}, if: :#{name}_removal?", CALLBACKS_HOOK, prepend: true)
when "trix_editor"
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "has_rich_text :#{name}", HAS_ONE_HOOK, prepend: true)
when "buttons"
if boolean_buttons
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "validates :#{name}, inclusion: [true, false]", VALIDATIONS_HOOK, prepend: true)
end
end
end
end
end
def add_additional_step(color, message)
additional_steps.push [color, message]
end
def scaffold_crud(attributes)
if cli_options["only-index"]
cli_options["skip-table"] = false
cli_options["skip-views"] = true
cli_options["skip-controller"] = true
cli_options["skip-form"] = true
cli_options["skip-show"] = true
cli_options["skip-form"] = true
cli_options["skip-api"] = true
cli_options["skip-model"] = true
cli_options["skip-parent"] = true
cli_options["skip-locales"] = true
cli_options["skip-routes"] = true
end
if cli_options["namespace"]
cli_options["skip-api"] = true
cli_options["skip-model"] = true
cli_options["skip-locales"] = true
end
# TODO fix this. we can do this better.
files = if cli_options["only-index"]
[
"./app/views/account/scaffolding/completely_concrete/tangible_things/_index.html.erb",
"./app/views/account/scaffolding/completely_concrete/tangible_things/index.html.erb",
"./app/views/account/scaffolding/completely_concrete/tangible_things/_tangible_thing.html.erb"
]
else
# copy a ton of files over and do the appropriate string replace.
[
"./app/controllers/account/scaffolding/completely_concrete/tangible_things_controller.rb",
"./app/views/account/scaffolding/completely_concrete/tangible_things",
"./app/views/api/v1/scaffolding/completely_concrete/tangible_things",
("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml" unless cli_options["skip-locales"]),
("./app/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller.rb" unless cli_options["skip-api"]),
("./test/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller_test.rb" unless cli_options["skip-api"])
# "./app/filters/scaffolding/completely_concrete/tangible_things_filter.rb"
].compact
end
files.each do |name|
if File.directory?(resolve_template_path(name))
scaffold_directory(name)
else
scaffold_file(name)
end
end
unless cli_options["skip-model"]
# find the database migration that defines this relationship.
migration_file_name = `grep "create_table :#{class_names_transformer.table_name} do |t|" db/migrate/*`.split(":").first
unless migration_file_name.present?
raise "No migration file seems to exist for creating the table `#{class_names_transformer.table_name}`.\n" \
"Please run the following command first and try Super Scaffolding again:\n" \
"rails generate model #{child} #{parent.downcase!}:references #{attributes.join(" ")}"
end
# if needed, update the reference to the parent class name in the create_table migration
current_transformer = Scaffolding::ClassNamesTransformer.new(child, parent, namespace)
unless current_transformer.parent_variable_name_in_context.pluralize == current_transformer.parent_table_name
replace_in_file(migration_file_name, "foreign_key: true", "foreign_key: {to_table: '#{current_transformer.parent_table_name}'}")
end
# update the factory generated by `rails g`.
content = if transform_string(":absolutely_abstract_creative_concept") == transform_string(":scaffolding_absolutely_abstract_creative_concept")
transform_string("association :absolutely_abstract_creative_concept")
else
transform_string("association :absolutely_abstract_creative_concept, factory: :scaffolding_absolutely_abstract_creative_concept")
end
scaffold_replace_line_in_file("./test/factories/scaffolding/completely_concrete/tangible_things.rb", content, "absolutely_abstract_creative_concept { nil }")
add_has_many_association
if class_names_transformer.belongs_to_needs_class_definition?
scaffold_replace_line_in_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", transform_string("belongs_to :absolutely_abstract_creative_concept, class_name: \"Scaffolding::AbsolutelyAbstract::CreativeConcept\"\n"), transform_string("belongs_to :absolutely_abstract_creative_concept\n"))
end
update_models_abstract_class
# add user permissions.
add_ability_line_to_roles_yml
end
# Add factory setup in API controller test.
unless cli_options["skip-api"]
test_name = transform_string("./test/controllers/api/v1/scaffolding/completely_concrete/tangible_things_controller_test.rb")
test_lines = File.open(test_name).readlines
# Shift contents of controller test after skipping `unless scaffolding_things_disabled?` block.
class_block_index = Scaffolding::FileManipulator.find(test_lines, "class #{transform_string("Api::V1::Scaffolding::CompletelyConcrete::TangibleThingsControllerTest")}")
new_lines = Scaffolding::BlockManipulator.shift_block(lines: test_lines, block_start: test_lines[class_block_index], shift_contents_only: true)
Scaffolding::FileManipulator.write(test_name, new_lines)
# Ensure variables built with factories are indented properly.
factory_hook_index = Scaffolding::FileManipulator.find(new_lines, RUBY_FACTORY_SETUP_HOOK)
factory_hook_indentation = Scaffolding::BlockManipulator.indentation_of(factory_hook_index, new_lines)
indented_factory_lines = build_factory_setup.map { |line| "#{factory_hook_indentation}#{line}\n" }
scaffold_replace_line_in_file(test_name, indented_factory_lines.join, new_lines[factory_hook_index])
end
# add children to the show page of their parent.
unless cli_options["skip-parent"] || parent == "None"
scaffold_add_line_to_file(
"./app/views/account/scaffolding/absolutely_abstract/creative_concepts/show.html.erb",
"<%= render 'account/scaffolding/completely_concrete/tangible_things/index', tangible_things: @creative_concept.completely_concrete_tangible_things, hide_back: true %>",
"<%# 🚅 super scaffolding will insert new children above this line. %>",
prepend: true
)
end
unless cli_options["skip-api"]
# add children to the show page of their parent.
scaffold_add_line_to_file(
"./app/views/api/#{BulletTrain::Api.current_version}/open_api/index.yaml.erb",
"<%= automatic_components_for Scaffolding::CompletelyConcrete::TangibleThing %>",
"<%# 🚅 super scaffolding will insert new components above this line. %>",
prepend: true
)
# add children to the show page of their parent.
scaffold_add_line_to_file(
"./app/views/api/#{BulletTrain::Api.current_version}/open_api/index.yaml.erb",
"<%= automatic_paths_for Scaffolding::CompletelyConcrete::TangibleThing, Scaffolding::AbsolutelyAbstract::CreativeConcept %>",
"<%# 🚅 super scaffolding will insert new paths above this line. %>",
prepend: true
)
end
unless cli_options["skip-model"]
add_scaffolding_hooks_to_model
end
#
# DELEGATIONS
#
unless cli_options["skip-model"]
if ["Team", "User"].include?(parents.last) && parent != parents.last
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "has_one :#{parents.last.underscore}, through: :absolutely_abstract_creative_concept", HAS_ONE_HOOK, prepend: true)
end
end
add_attributes_to_various_views(attributes, type: :crud)
unless cli_options["skip-locales"]
add_locale_helper_export_fix
end
# add sortability.
if cli_options["sortable"]
unless cli_options["skip-model"]
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "def collection\n absolutely_abstract_creative_concept.completely_concrete_tangible_things\nend\n\n", METHODS_HOOK, prepend: true)
scaffold_add_line_to_file("./app/models/scaffolding/completely_concrete/tangible_thing.rb", "include Sortable\n", CONCERNS_HOOK, prepend: true)
end
unless cli_options["skip-table"]
scaffold_replace_line_in_file("./app/views/account/scaffolding/completely_concrete/tangible_things/_index.html.erb", transform_string("\">"), "")
end
unless cli_options["skip-controller"]
scaffold_add_line_to_file("./app/controllers/account/scaffolding/completely_concrete/tangible_things_controller.rb", "include SortableActions\n", "Account::ApplicationController", increase_indent: true)
end
end
# titleize the localization file.
unless cli_options["skip-locales"]
replace_in_file(transform_string("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml"), child, child.underscore.humanize.titleize)
end
# apply routes.
unless cli_options["skip-routes"]
routes_namespace = cli_options["namespace"] || "account"
begin
routes_path = if routes_namespace == "account"
"config/routes.rb"
else
"config/routes/#{routes_namespace}.rb"
end
routes_manipulator = Scaffolding::RoutesFileManipulator.new(routes_path, child, parent, cli_options)
rescue Errno::ENOENT => _
puts "Creating '#{routes_path}'.".green
unless File.directory?("config/routes")
FileUtils.mkdir_p("config/routes")
end
File.write(routes_path, <<~RUBY)
collection_actions = [:index, :new, :create]
# 🚅 Don't remove this block, it will break Super Scaffolding.
begin
namespace :#{routes_namespace} do
shallow do
resources :teams do
end
end
end
end
RUBY
retry
end
begin
routes_manipulator.apply([routes_namespace])
Scaffolding::FileManipulator.write(routes_path, routes_manipulator.lines)
rescue => _
add_additional_step :red, "We weren't able to automatically add your `#{routes_namespace}` routes for you. In theory this should be very rare, so if you could reach out on Slack, you could probably provide context that will help us fix whatever the problem was. In the meantime, to add the routes manually, we've got a guide at https://blog.bullettrain.co/nested-namespaced-rails-routing-examples/ ."
end
# If we're using a custom namespace, we have to make sure the newly
# scaffolded routes are drawn in the `config/routes.rb` and API routes files.
if cli_options["namespace"]
draw_line = "draw \"#{routes_namespace}\""
[
"config/routes.rb",
"config/routes/api/#{BulletTrain::Api.current_version}.rb"
].each do |routes_file|
original_lines = File.readlines(routes_file)
# Define which line we want to place the draw line under in the original routes files.
insert_line = if routes_file.match?("api")
draw_line = " #{draw_line}" # Add necessary indentation.
"namespace :v1 do"
else
"draw \"sidekiq\""
end
new_lines = Scaffolding::BlockManipulator.insert(draw_line, lines: original_lines, within: insert_line)
Scaffolding::FileManipulator.write(routes_file, new_lines)
end
end
unless cli_options["skip-api"]
begin
api_routes_manipulator = Scaffolding::RoutesFileManipulator.new("config/routes/api/#{BulletTrain::Api.current_version}.rb", child, parent, cli_options)
api_routes_manipulator.apply([BulletTrain::Api.current_version.to_sym])
Scaffolding::FileManipulator.write("config/routes/api/#{BulletTrain::Api.current_version}.rb", api_routes_manipulator.lines)
rescue => _
add_additional_step :red, "We weren't able to automatically add your `api/#{BulletTrain::Api.current_version}` routes for you. In theory this should be very rare, so if you could reach out on Slack, you could probably provide context that will help us fix whatever the problem was. In the meantime, to add the routes manually, we've got a guide at https://blog.bullettrain.co/nested-namespaced-rails-routing-examples/ ."
end
end
end
unless cli_options["skip-parent"]
if top_level_model?
icon_name = nil
if cli_options["sidebar"].present?
icon_name = cli_options["sidebar"]
else
puts ""
puts "Hey, models that are scoped directly off of a Team (or nothing) are eligible to be added to the sidebar."
puts "Do you want to add this resource to the sidebar menu? (y/N)"
response = $stdin.gets.chomp
if response.downcase[0] == "y"
puts ""
puts "OK, great! Let's do this! By default these menu items appear as a #{font_awesome? ? "puzzle piece" : "gift icon"},"
puts "but after you hit enter I'll open #{font_awesome? ? "two different pages" : "a page"} where you can view other icon options."
puts "When you find one you like, hover your mouse over it and then come back here and"
puts "enter the name of the icon you want to use."
puts "(Or hit enter when choosing to skip this step.)"
$stdin.gets.chomp
if TerminalCommands.can_open?
TerminalCommands.open_file_or_link("https://themify.me/themify-icons")
if font_awesome?
TerminalCommands.open_file_or_link("https://fontawesome.com/icons?d=gallery&s=light")
end
else
puts "Sorry! We can't open these URLs automatically on your platform, but you can visit them manually:"
puts ""
puts " https://themify.me/themify-icons"
if font_awesome?
puts " https://fontawesome.com/icons?d=gallery&s=light"
end
puts ""
end
puts ""
loop do
puts "Did you find an icon you wanted to use?"
puts "Enter the full CSS class here (e.g. 'ti ti-world'#{" or 'fal fa-puzzle-piece'" if font_awesome?}) or hit enter to just use the #{font_awesome? ? "puzzle piece" : "gift icon"}:"
icon_name = $stdin.gets.chomp
unless icon_name.match?(/ti\s.*/) || icon_name.match?(/fal\s.*/) || icon_name.strip.empty?
puts ""
puts "Please enter the full CSS class or hit enter."
next
end
break
end
puts ""
unless icon_name.length > 0 || icon_name.downcase == "y"
icon_name = "fal fa-puzzle-piece ti ti-gift"
end
end
end
if icon_name.present?
replace_in_file(transform_string("./config/locales/en/scaffolding/completely_concrete/tangible_things.en.yml"), "fal fa-puzzle-piece", icon_name)
scaffold_add_line_to_file("./app/views/account/shared/_menu.html.erb", "<%= render 'account/scaffolding/completely_concrete/tangible_things/menu_item' %>", "<% # added by super scaffolding. %>")
end
end
end
add_additional_step :yellow, transform_string("If you would like the table view you've just generated to reactively update when a Tangible Thing is updated on the server, please edit `app/models/scaffolding/absolutely_abstract/creative_concept.rb`, locate the `has_many :completely_concrete_tangible_things`, and add `enable_updates: true` to it.")
restart_server unless ENV["CI"].present?
end
end