Class: Dommy::ProgressEvent
Overview
‘ProgressEvent` — fired during long-running operations (XHR, fetch upload/download progress). Carries `loaded` / `total` / `lengthComputable`.
Constant Summary
Constants inherited from Event
Instance Attribute Summary
Attributes inherited from Event
Instance Method Summary collapse
- #__js_get__(key) ⇒ Object
-
#initialize(type, init = nil) ⇒ ProgressEvent
constructor
A new instance of ProgressEvent.
Methods inherited from Event
#__internal_prepare_for_dispatch__, #__internal_record_path__, #__internal_set_current_target__, #__js_call__, #__js_method_names__, #__js_set__, #bubbles?, #default_prevented?, #immediate_propagation_stopped?, #init_event, #propagation_stopped?
Constructor Details
#initialize(type, init = nil) ⇒ ProgressEvent
Returns a new instance of ProgressEvent.
541 542 543 544 545 546 |
# File 'lib/dommy/event.rb', line 541 def initialize(type, init = nil) super @loaded = (read_init(init, "loaded") || 0).to_i @total = (read_init(init, "total") || 0).to_i @length_computable = !!read_init(init, "lengthComputable") end |
Instance Method Details
#__js_get__(key) ⇒ Object
548 549 550 551 552 553 554 555 556 557 558 559 |
# File 'lib/dommy/event.rb', line 548 def __js_get__(key) case key when "loaded" @loaded when "total" @total when "lengthComputable" @length_computable else super end end |