Class: Ruflet::UI::Controls::RufletComponents::InterstitialAdControl
Constant Summary collapse
- WIRE =
"InterstitialAd".freeze
Constants inherited from Control
Control::HOST_EXPANDED_TYPES, Control::SCHEMA_METADATA_CACHE
Instance Attribute Summary
Attributes inherited from Control
#children, #id, #props, #runtime_page, #type, #wire_id
Instance Method Summary collapse
-
#initialize(id: nil, **props) ⇒ InterstitialAdControl
constructor
A new instance of InterstitialAdControl.
- #show(timeout: 10, on_result: nil) ⇒ Object
Methods inherited from Control
#attach_handler, #emit, generate_id, #has_handler?, #merge_props, #on, #to_patch
Constructor Details
#initialize(id: nil, **props) ⇒ InterstitialAdControl
Returns a new instance of InterstitialAdControl.
26 27 28 |
# File 'lib/ruflet_ui/ruflet/ui/controls/materials/ad_controls.rb', line 26 def initialize(id: nil, **props) super(type: "interstitial_ad", id: id, **props) end |
Instance Method Details
#show(timeout: 10, on_result: nil) ⇒ Object
30 31 32 |
# File 'lib/ruflet_ui/ruflet/ui/controls/materials/ad_controls.rb', line 30 def show(timeout: 10, on_result: nil) runtime_page&.invoke(self, "show", timeout: timeout, on_result: on_result) end |