Class: Roda::Component
- Inherits:
-
Object
show all
- Defined in:
- lib/roda/component.rb,
lib/roda/component/dom.rb,
lib/roda/component/faye.rb,
lib/roda/component/faye.rb,
lib/roda/component/form.rb,
lib/roda/component/events.rb,
lib/roda/component/version.rb,
lib/roda/component/instance.rb,
lib/roda/component/form/validations.rb
Defined Under Namespace
Classes: DOM, Events, Faye, Form, Instance
Constant Summary
collapse
- VERSION =
"0.1.39"
Class Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
-
#_initialize(scope = false) ⇒ Object
-
#cache ⇒ Object
-
#component(name, options = {}, &block) ⇒ Object
-
#component_opts ⇒ Object
-
#dom ⇒ Object
(also: #element)
-
#events ⇒ Object
-
#function(*args, &block) ⇒ Object
-
#get_value_for(field, data) ⇒ Object
-
#indifferent_params(params) ⇒ Object
Recursively process the request params and convert hashes to support indifferent access, leaving other values alone.
-
#inherited(subclass) ⇒ Object
-
#initialize(data = false) ⇒ Component
constructor
A new instance of Component.
-
#load_component(name, options = {}) ⇒ Object
-
#method_missing(method, *args, &block) ⇒ Object
-
#render(*args, &block) ⇒ Object
-
#render_fields(data, options = {}) ⇒ Object
-
#tmpl(name) ⇒ Object
Grab the template from the cache, use the nokogiri dom or create a jquery element for server side issue: can’t use the cached dom because duping doesn’t work.
-
#trigger(*args) ⇒ Object
Constructor Details
#initialize(data = false) ⇒ Component
Returns a new instance of Component.
89
90
|
# File 'lib/roda/component.rb', line 89
def initialize(data = false)
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
380
381
382
383
384
385
386
|
# File 'lib/roda/component.rb', line 380
def method_missing method, *args, &block
if server? && scope.respond_to?(method, true)
scope.send method, *args, &block
else
super
end
end
|
Class Attribute Details
Returns the value of attribute _name.
124
125
126
|
# File 'lib/roda/component.rb', line 124
def _name
@_name
end
|
Class Method Details
We need to save the oga dom and the raw html. the reason we ave the raw html is so that we can use it client side.
294
295
296
297
298
|
# File 'lib/roda/component.rb', line 294
def tmpl name, dom, remove = true
cache[:tmpl][name] = { dom: remove ? dom.remove : dom }
cache[:tmpl][name][:html] = cache[:tmpl][name][:dom].to_html
cache[:tmpl][name]
end
|
283
284
285
|
# File 'lib/roda/component.rb', line 283
def app
@_app ||= {}
end
|
267
268
269
270
271
272
273
274
275
|
# File 'lib/roda/component.rb', line 267
def cache
unless @_cache
@_cache ||= Roda::RodaCache.new
@_cache[:tmpl] = {}
@_cache[:server_methods] = []
end
@_cache
end
|
.comp_html(_html, &block) ⇒ Object
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
# File 'lib/roda/component.rb', line 219
def comp_html _html, &block
if server?
if _html.is_a? String
if _html[%r{\A./}]
cache[:html] = File.read _html
else
cache[:html] = File.read "#{component_opts[:path]}/#{_html}"
end
else
cache[:html] = yield
end
cache[:dom] = DOM.new(cache[:html])
end
end
|
.comp_name(_name = nil) ⇒ Object
208
209
210
211
212
213
214
215
216
|
# File 'lib/roda/component.rb', line 208
def comp_name(_name = nil)
return name_original unless _name
@_name = _name.to_s
if server?
component_opts[:class_name][@_name] = self.to_s
end
end
|
.comp_setup(&block) ⇒ Object
250
251
252
|
# File 'lib/roda/component.rb', line 250
def comp_setup &block
block.call cache[:dom] if server?
end
|
.component_opts ⇒ Object
298
299
300
301
302
303
304
|
# File 'lib/roda/component.rb', line 298
def component_opts
if client?
$component_opts
else
super
end
end
|
254
255
256
|
# File 'lib/roda/component.rb', line 254
def events
@_events ||= Events.new self, component_opts, false
end
|
.HTML(raw_html) ⇒ Object
235
236
237
238
239
240
241
242
243
244
245
246
247
|
# File 'lib/roda/component.rb', line 235
def HTML raw_html
if raw_html[/\A<!DOCTYPE/] || raw_html[/\A<html/]
Nokogiri::HTML(raw_html)
else
parsed_html = Nokogiri::HTML.fragment(raw_html)
if parsed_html.children.length >= 1
parsed_html.children.first
else
parsed_html
end
end
end
|
.method_missing(method, *args, &block) ⇒ Object
306
307
308
309
310
311
312
|
# File 'lib/roda/component.rb', line 306
def method_missing method, *args, &block
if server? && app.respond_to?(method, true)
app.send method, *args, &block
else
super
end
end
|
.new(*args, &block) ⇒ Object
126
127
128
129
130
131
132
|
# File 'lib/roda/component.rb', line 126
def new(*args, &block)
obj = self.allocate
obj.instance_variable_set :@_scope, args.shift
obj.send :initialize, *args, &block
obj._initialize
obj
end
|
.on(*args, &block) ⇒ Object
258
259
260
261
262
263
264
|
# File 'lib/roda/component.rb', line 258
def on *args, &block
if args.first.to_s != 'server'
events.on(*args, &block)
else
on_server(&block)
end
end
|
.on_server(&block) ⇒ Object
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
# File 'lib/roda/component.rb', line 142
def on_server &block
if server?
m = Module.new(&block)
yield
m.public_instance_methods(false).each do |meth|
alias_method :"original_#{meth}", :"#{meth}"
define_method "#{meth}" do |*args, &blk|
if blk
blk.call send("original_#{meth}", *args)
else
send("original_#{meth}", *args)
end
end
end
else
m = Module.new(&block)
m.public_instance_methods(false).each do |meth|
define_method "#{meth}" do |*args, &blk|
name = self.class._name
HTTP.post("/components/#{name}/call/#{meth}",
headers: {
'X-CSRF-TOKEN' => Element.find('meta[name=_csrf]').attr('content'),
'X-RODA-COMPONENT-ON-SERVER' => true
},
payload: args) do |response|
xhr = Native(response.xhr)
csrf = xhr.('NEW-CSRF')
Element.find('meta[name=_csrf]').attr 'content', csrf
res = JSON.from_object(`response`)
blk.call res[:body], res
end
true
end
end
include m
end
end
|
.set_app(app) ⇒ Object
278
279
280
|
# File 'lib/roda/component.rb', line 278
def set_app app
@_app = app.respond_to?(:new) ? app.new : app
end
|
We need to save the oga dom and the raw html. the reason we ave the raw html is so that we can use it client side.
295
296
297
298
299
|
# File 'lib/roda/component.rb', line 295
def tmpl name, dom, remove = true
cache[:tmpl][name] = { dom: remove ? dom.remove : dom }
cache[:tmpl][name][:html] = cache[:tmpl][name][:dom].to_html
cache[:tmpl][name]
end
|
.tmpl(name, dom, remove = true) ⇒ Object
We need to save the oga dom and the raw html. the reason we ave the raw html is so that we can use it client side.
289
290
291
292
293
|
# File 'lib/roda/component.rb', line 289
def tmpl name, dom, remove = true
cache[:tmpl][name] = { dom: remove ? dom.remove : dom }
cache[:tmpl][name][:html] = cache[:tmpl][name][:dom].to_html
cache[:tmpl][name]
end
|
Instance Method Details
#_initialize(scope = false) ⇒ Object
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
120
121
|
# File 'lib/roda/component.rb', line 92
def _initialize(scope = false)
@_scope = scope if scope
if client? && !$component_opts[:faye][:"#{self.class._name}"]
$component_opts[:faye][:"#{self.class._name}"] = true
$faye.subscribe "/components/#{self.class._name}" do |msg|
msg = Native(msg)
trigger :"#{msg[:type]}", msg['local'], msg unless $faye.public_id == msg[:public_id]
end
$faye.on 'transport:up' do
$faye.online = true
if $faye.disconnected
trigger :reconnect
else
trigger :connect
end
end
$faye.on 'transport:down' do
$faye.disconnected = true
$faye.online = false
trigger :disconnect
end
end
end
|
325
326
327
|
# File 'lib/roda/component.rb', line 325
def cache
@_cache ||= self.class.cache.dup
end
|
#component(name, options = {}, &block) ⇒ Object
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
# File 'lib/roda/component.rb', line 389
def component name, options = {}, &block
action = options.delete(:call)
trigger = options.delete(:trigger)
js = options.delete(:js)
args = options.delete(:args)
comp = load_component name, options
if trigger
if args
comp_response = comp.trigger trigger, *args
else
comp_response = comp.trigger trigger, options
end
elsif action
if comp.methods.include? action
comp_response = comp.send(action, options, &block)
else
fail "##{action} doesn't exist for #{comp.class}"
end
end
if trigger || action
comp_response
else
comp
end
end
|
#component_opts ⇒ Object
354
355
356
|
# File 'lib/roda/component.rb', line 354
def component_opts
self.class.component_opts
end
|
#dom ⇒ Object
Also known as:
element
333
334
335
336
337
338
339
340
|
# File 'lib/roda/component.rb', line 333
def dom
if server?
@_dom ||= DOM.new(cache[:dom].dom.to_html)
else
@_dom ||= DOM.new(Element)
end
end
|
329
330
331
|
# File 'lib/roda/component.rb', line 329
def events
@_events ||= Events.new self.class, component_opts, scope
end
|
#function(*args, &block) ⇒ Object
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
|
# File 'lib/roda/component.rb', line 362
def function *args, &block
args.any? && raise(ArgumentError, '`function` does not accept arguments')
block || raise(ArgumentError, 'block required')
proc do |*a|
a.map! {|x| Native(`x`)}
@this = Native(`this`)
%x{
var bs = block.$$s,
result;
block.$$s = null;
result = block.apply(self, a);
block.$$s = bs;
return result;
}
end
end
|
#get_value_for(field, data) ⇒ Object
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
# File 'lib/roda/component.rb', line 474
def get_value_for field, data
field = (field || '').split '.'
if field.length > 1
value = data.is_a?(Hash) ? data.to_obj : data
field.each_with_index do |f, i|
if (value.respond_to?('empty?') ? value.empty? : !value.present?)
value = ''
next
end
if (i+1) < field.length
begin
value = value.send(f)
rescue
value = nil
end
else
begin
value = value.respond_to?(:present) ? value.present("print_#{f}") : value.send(f)
rescue
value = nil
end
end
end
else
begin
value = data.respond_to?(:present) ? data.present("print_#{field.first}") : data.send(field.first)
rescue
value = nil
end
end
value
end
|
#indifferent_params(params) ⇒ Object
Recursively process the request params and convert hashes to support indifferent access, leaving other values alone.
516
517
518
|
# File 'lib/roda/component.rb', line 516
def indifferent_params(params)
params.indifferent
end
|
#inherited(subclass) ⇒ Object
135
136
137
138
139
|
# File 'lib/roda/component.rb', line 135
def inherited(subclass)
super
subclass.set_app app
end
|
#load_component(name, options = {}) ⇒ Object
423
424
425
|
# File 'lib/roda/component.rb', line 423
def load_component name, options = {}
component_opts[:class_name][name].split('::').inject(Object) {|o,c| o.const_get(c)}.new self, options
end
|
#render(*args, &block) ⇒ Object
520
521
522
|
# File 'lib/roda/component.rb', line 520
def render *args, &block
display *args, &block
end
|
#render_fields(data, options = {}) ⇒ Object
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
|
# File 'lib/roda/component.rb', line 427
def render_fields data, options = {}
data = data.is_a?(Hash) ? data.to_obj : data
l_dom = options[:dom] || dom
l_dom.find("[data-if]") do |field_dom|
value = get_value_for field_dom['data-if'], data
unless value.present?
field_dom.remove
end
end
l_dom.find("[data-unless]") do |field_dom|
value = get_value_for field_dom['data-unless'], data
if value.present?
field_dom.remove
end
end
l_dom.find("[data-field]") do |field_dom|
if field = field_dom['data-field']
value = get_value_for field, data
if !value.nil?
value = value.to_s
if value != value.upcase && !value.match(Roda::Component::Form::EMAIL)
field_value = value.titleize
else
field_value = value
end
field_value = 'No' if field_value == 'False'
field_value = 'Yes' if field_value == 'True'
field_dom.html = field_value
else
field_dom.html = ''
end
end
end
l_dom
end
|
#tmpl(name) ⇒ Object
Grab the template from the cache, use the nokogiri dom or create a jquery element for server side issue: can’t use the cached dom because duping doesn’t work.
346
347
348
349
350
351
352
|
# File 'lib/roda/component.rb', line 346
def tmpl name
if t = cache[:tmpl][name]
DOM.new t[:html]
else
false
end
end
|
#trigger(*args) ⇒ Object
358
359
360
|
# File 'lib/roda/component.rb', line 358
def trigger *args
events.trigger(*args)
end
|