Class: ReactiveRecord::WhileLoading

Inherits:
Object
  • Object
show all
Includes:
Hyperloop::Component::Mixin, React::IsomorphicHelpers
Defined in:
lib/reactive_record/active_record/reactive_record/while_loading.rb

Overview

To notify React that something is loading use React::WhileLoading.loading! once everything is loaded then do React::WhileLoading.loaded_at message (typically a time stamp just for debug purposes)

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Hyperloop::Component::Mixin

#component_did_mount, #component_did_update, #original_component_did_mount, #original_component_did_update, #reactive_record_link_set_while_loading_container_class, #reactive_record_link_to_enclosing_while_loading_container

Class Method Details

.add_style_sheetObject



147
148
149
150
151
152
153
154
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 147

def add_style_sheet
  @style_sheet ||= %x{
    $('<style type="text/css">'+
      '  .reactive_record_is_loading > .reactive_record_show_when_loaded { display: none; }'+
      '  .reactive_record_is_loaded > .reactive_record_show_while_loading { display: none; }'+
      '</style>').appendTo("head")
  }
end

.get_next_while_loading_counterObject



86
87
88
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 86

def self.get_next_while_loading_counter
  @while_loading_counter += 1
end

.has_observers?Boolean

Returns:

  • (Boolean)


94
95
96
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 94

def self.has_observers?
  React::State.has_observers?(self, :loaded_at)
end

.loaded_at(loaded_at) ⇒ Object



128
129
130
131
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 128

def loaded_at(loaded_at)
  React::State.set_state(self, :loaded_at, loaded_at)
  @is_loading = false
end

.loading!Object



121
122
123
124
125
126
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 121

def loading!
  React::RenderingContext.waiting_on_resources = true
  React::State.get_state(self, :loaded_at)
  React::State.set_state(self, :quiet, false)
  @is_loading = true
end

.loading?Boolean

Returns:

  • (Boolean)


117
118
119
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 117

def loading?
  @is_loading
end

.page_loaded?Boolean

Returns:

  • (Boolean)


137
138
139
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 137

def page_loaded?
  React::State.get_state(self, :page_loaded)
end

.preload_css(css) ⇒ Object



90
91
92
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 90

def self.preload_css(css)
  @css_to_preload += "#{css}\n"
end

.quiet!Object



141
142
143
144
145
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 141

def quiet!
  React::State.set_state(self, :quiet, true)
  after(1) { React::State.set_state(self, :page_loaded, true) } unless on_opal_server? or @page_loaded
  @page_loaded = true
end

.quiet?Boolean

Returns:

  • (Boolean)


133
134
135
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 133

def quiet?
  React::State.get_state(self, :quiet)
end

Instance Method Details

#renderObject



181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/reactive_record/active_record/reactive_record/while_loading.rb', line 181

def render
  props = params.element_props.dup
  classes = [props[:class], props[:className], "reactive_record_while_loading_container_#{@uniq_id}"].compact.join(" ")
  props.merge!({
    "data-reactive_record_while_loading_container_id" => @uniq_id,
    "data-reactive_record_enclosing_while_loading_container_id" => @uniq_id,
    class: classes
  })
  React.create_element(params.element_type[0], props) do
    params.loaded_children + params.loading_children
  end.tap { |e| e.waiting_on_resources = params.loading }
end