Class: Sudojs::Generators::ClassGenerator
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Rails::Generators::NamedBase
- Sudojs::Generators::ClassGenerator
show all
- Includes:
- Helpers
- Defined in:
- lib/generators/sudojs/class/class_generator.rb
Constant Summary
Constants included
from Helpers
Helpers::CFG
Instance Method Summary
collapse
Methods included from Helpers
#camelize, #css_extension, #html_extension, #js_extension, #pascalize, #skip_css?
Instance Method Details
#copy_class_template ⇒ Object
expand the template to <destination>
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# File 'lib/generators/sudojs/class/class_generator.rb', line 89
def copy_class_template
@path_to_object = namespace
if @is_application
js_path = @js_app_path
css_path = @css_app_path
else
js_path = "#{@js_dir || @js_path}/#{@c_name}"
css_path = "#{@css_views_path}/#{@c_name}"
unless skip_css?
ensure_cname_dir(js_path, css_path)
else
ensure_cname_dir(js_path)
end
end
if js_extension == '.js.coffee'
template 'class.coffee.erb', "#{js_path}/#{@a_name}.js.coffee"
else
template 'class.js.erb', "#{js_path}/#{@a_name}#{js_extension}"
end
unless skip_css?
create_file "#{css_path}/#{@a_name}#{css_extension}"
end
end
|
#create_or_modify_manifest ⇒ Object
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
# File 'lib/generators/sudojs/class/class_generator.rb', line 121
def create_or_modify_manifest
js_pre = '//= '
css_pre = ' *= '
if @is_application
req = "require views/application/#{@a_name}"
else
req = "require #{@js_dir || @js_path}/#{@c_name}/#{@a_name}"
end
filename = "app/assets/javascripts/manifests/#{@c_name}.js"
css_filename = "app/assets/stylesheets/manifests/#{@c_name}.css"
line = js_pre + req
css_line = css_pre + req + "\n"
if File.exist? filename
append_to_file filename, line
gsub_file filename, /^$\n/, ''
else
template 'manifest.js.erb', filename
gsub_file filename, /^$\n/, ''
end
unless skip_css?
if File.exist? css_filename
inject_into_file css_filename, css_line, :before => '*/'
gsub_file css_filename, /^$\n/, ''
else
template 'manifest.css.erb', css_filename
gsub_file css_filename, /^$\n/, ''
end
end
end
|
#modify_view_if_exists ⇒ Object
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
# File 'lib/generators/sudojs/class/class_generator.rb', line 158
def modify_view_if_exists
filename = "app/views/#{@c_name}/#{@a_name}#{html_extension}"
if File.exist? filename
if js_extension == '.js.coffee'
= '#'
else
= '//'
end
note = "#{comment} Optional invocation of your new Class.\n#{comment} Place this into a jQuery document ready block."
content = "\n#{note}\n#{comment} #{@path_to_object}.#{@a_camel} = new #{@path_to_object}.#{@a_pascal}(#{@args});"
append_to_file filename, content
end
end
|
#set_vars ⇒ Object
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'lib/generators/sudojs/class/class_generator.rb', line 15
def set_vars
@class_names = {
'Base' => '_.Base',
'Model' => '_.Model',
'Container' => '_.Container',
'DataView' => '_.DataView',
'View' => '_.View',
'ViewController' => '_.ViewController'
}
@js_app_path = 'app/assets/javascripts/views/application'
@css_app_path = 'app/assets/stylesheets/views/application'
@js_model_path = 'app/assets/javascripts/models'
@js_views_path = 'app/assets/javascripts/views'
@css_views_path = 'app/assets/stylesheets/views'
if options[:js_dir] != ''
@js_dir = "app/assets/javascripts/#{options[:js_dir]}"
else
@js_dir = nil
end
ary = route.split('#')
@c_name = ary[0]
@c_camel = camelize(@c_name)
@is_application = @c_name == 'application'
@a_name = ary[1]
@a_camel = camelize @a_name
@a_pascal = pascalize @a_name
@parent = @class_names[name] || name
case @parent
when '_.Base'
@args = 'data'
@js_path = @js_views_path
@js_req = 'views'
skip_css = true
namespace = 'lib'
when '_.Container'
@args = 'data'
@js_path = @js_views_path
@js_req = 'containers'
skip_css = true
namespace = 'lib.containers'
when '_.Model'
@args = 'data'
@js_path = @js_model_path
@js_req = 'models'
skip_css = true
namespace = 'lib.models'
when '_.View', '_.ViewController', 'DataView'
@args = 'el, data'
@js_path = @js_views_path
@js_req = 'views'
namespace = 'lib.views'
else
@args = '/* args */'
@js_path = @js_views_path
@js_req = 'views'
namespace = 'lib'
end
end
|