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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/birdel/com/com_actor.rb', line 3
def self.roll(component_ns)
app_path = Pathname.new("#{Dir.pwd}")
components_path = app_path.join("app", "components")
component_ns_camelized = component_ns.split("::").map(&:camelize).join("::")
component_name = component_ns_camelized.split("::").last
component_path = component_ns.split("::").join("/")
full_component_path = components_path.join(component_path.underscore)
variable_name = "css_class"
css_class = component_ns_camelized.underscore.gsub('_', '-').gsub('/', '--')
actor_name = "#{component_name}Actor"
files = [
{
name: "#{component_name.underscore}.rb",
content: "
class #{component_ns_camelized}::#{component_name} < ViewComponent::Base
include Birdel::Component
end
"
},
{ name: "#{component_name.underscore}.css", content: ".#{css_class}{}" },
{ name: "#{component_name.underscore}.js", content: "" },
{
name: "#{component_name.underscore}_controller.js",
content: "
import { #{actor_name} } from \"./#{component_name.underscore}_actor\";
import { Controller } from \"@hotwired/stimulus\";
export default class extends Controller {
connect() {}
}
" },
{
name: "#{component_name.underscore}_actor.js",
content: "
import { ActorBase } from \"birdeljs\"
export class #{actor_name} extends ActorBase {
constructor() {
console.log(\"#{actor_name}!\");
}
}
"},
{ name: "#{component_name.underscore}.html.erb", content: "<div class=\"<%= #{variable_name} %>\" data-controller=\"<%= #{variable_name} %>\">\n</div>" },
]
files.each do |file|
file_path = full_component_path.join(file[:name])
if file_path.exist?
puts "File already exists: #{file_path}".red
else
puts "Creating file: #{file_path}".yellow
file_path.dirname.mkpath
File.open(file_path, "w") do |f|
f.puts file[:content]
end
if file_path.exist?
puts "Done!".bold.green
else
puts "Failed".red
end
end
end
end
|