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.44"
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
91
|
# File 'lib/roda/component.rb', line 89
def initialize(data = false)
self
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
393
394
395
396
397
398
399
|
# File 'lib/roda/component.rb', line 393
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.
127
128
129
|
# File 'lib/roda/component.rb', line 127
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.
307
308
309
310
311
|
# File 'lib/roda/component.rb', line 307
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
|
296
297
298
|
# File 'lib/roda/component.rb', line 296
def app
@_app ||= {}
end
|
280
281
282
283
284
285
286
287
288
|
# File 'lib/roda/component.rb', line 280
def cache
unless @_cache
@_cache ||= Roda::RodaCache.new
@_cache[:tmpl] = {}
@_cache[:server_methods] = []
end
@_cache
end
|
.comp_html(_html, &block) ⇒ Object
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
# File 'lib/roda/component.rb', line 226
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
215
216
217
218
219
220
221
222
223
|
# File 'lib/roda/component.rb', line 215
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_require(*names) ⇒ Object
242
243
244
245
246
|
# File 'lib/roda/component.rb', line 242
def comp_require *names
@_comp_requires ||= []
names.each { |n| @_comp_requires << n}
@_comp_requires
end
|
.comp_requires ⇒ Object
137
138
139
|
# File 'lib/roda/component.rb', line 137
def comp_requires
(@_comp_requires ||= []).uniq
end
|
.comp_setup(&block) ⇒ Object
263
264
265
|
# File 'lib/roda/component.rb', line 263
def comp_setup &block
block.call cache[:dom] if server?
end
|
.component_opts ⇒ Object
311
312
313
314
315
316
317
|
# File 'lib/roda/component.rb', line 311
def component_opts
if client?
$component_opts
else
super
end
end
|
267
268
269
|
# File 'lib/roda/component.rb', line 267
def events
@_events ||= Events.new self, component_opts, false
end
|
.HTML(raw_html) ⇒ Object
248
249
250
251
252
253
254
255
256
257
258
259
260
|
# File 'lib/roda/component.rb', line 248
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
319
320
321
322
323
324
325
|
# File 'lib/roda/component.rb', line 319
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
129
130
131
132
133
134
135
|
# File 'lib/roda/component.rb', line 129
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
271
272
273
274
275
276
277
|
# File 'lib/roda/component.rb', line 271
def on *args, &block
if args.first.to_s != 'server'
events.on(*args, &block)
else
on_server(&block)
end
end
|
.on_server(&block) ⇒ Object
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
205
206
207
208
209
210
211
|
# File 'lib/roda/component.rb', line 149
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
291
292
293
|
# File 'lib/roda/component.rb', line 291
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.
308
309
310
311
312
|
# File 'lib/roda/component.rb', line 308
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.
302
303
304
305
306
|
# File 'lib/roda/component.rb', line 302
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
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
122
123
124
|
# File 'lib/roda/component.rb', line 93
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
self
end
end
|
338
339
340
|
# File 'lib/roda/component.rb', line 338
def cache
@_cache ||= self.class.cache.dup
end
|
#component(name, options = {}, &block) ⇒ Object
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
# File 'lib/roda/component.rb', line 402
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
367
368
369
|
# File 'lib/roda/component.rb', line 367
def component_opts
self.class.component_opts
end
|
#dom ⇒ Object
Also known as:
element
346
347
348
349
350
351
352
353
|
# File 'lib/roda/component.rb', line 346
def dom
if server?
@_dom ||= DOM.new(cache[:dom].dom.to_html)
else
@_dom ||= DOM.new(Element)
end
end
|
342
343
344
|
# File 'lib/roda/component.rb', line 342
def events
@_events ||= Events.new self.class, component_opts, scope
end
|
#function(*args, &block) ⇒ Object
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
# File 'lib/roda/component.rb', line 375
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
|
# File 'lib/roda/component.rb', line 488
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.
530
531
532
|
# File 'lib/roda/component.rb', line 530
def indifferent_params(params)
params.indifferent
end
|
#inherited(subclass) ⇒ Object
142
143
144
145
146
|
# File 'lib/roda/component.rb', line 142
def inherited(subclass)
super
subclass.set_app app
end
|
#load_component(name, options = {}) ⇒ Object
436
437
438
439
|
# File 'lib/roda/component.rb', line 436
def load_component name, options = {}
component_opts[:comp][name]
end
|
#render(*args, &block) ⇒ Object
534
535
536
|
# File 'lib/roda/component.rb', line 534
def render *args, &block
display *args, &block
end
|
#render_fields(data, options = {}) ⇒ Object
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
|
# File 'lib/roda/component.rb', line 441
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.
359
360
361
362
363
364
365
|
# File 'lib/roda/component.rb', line 359
def tmpl name
if t = cache[:tmpl][name]
DOM.new t[:html]
else
false
end
end
|
#trigger(*args) ⇒ Object
371
372
373
|
# File 'lib/roda/component.rb', line 371
def trigger *args
events.trigger(*args)
end
|