Class: Page
Instance Attribute Summary collapse
-
#draw_cycle ⇒ Object
readonly
Returns the value of attribute draw_cycle.
-
#events ⇒ Object
readonly
Returns the value of attribute events.
-
#page ⇒ Object
readonly
Returns the value of attribute page.
-
#params ⇒ Object
readonly
Returns the value of attribute params.
-
#routes ⇒ Object
readonly
Returns the value of attribute routes.
-
#templates ⇒ Object
readonly
Returns the value of attribute templates.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
- #add_model(model_name) ⇒ Object
- #add_routes(&block) ⇒ Object
- #add_template(name, template, bindings) ⇒ Object
-
#binding_name ⇒ Object
We provide a binding_name, so we can bind events on the document.
- #channel ⇒ Object
- #flash ⇒ Object
-
#initialize ⇒ Page
constructor
A new instance of Page.
- #launch_console ⇒ Object
- #link_clicked(url = '', event = nil) ⇒ Object
-
#load_stored_page ⇒ Object
When the page is reloaded from the backend, we store the $page.page, so we can reload the page in the exact same state.
- #local_store ⇒ Object
- #start ⇒ Object
- #store ⇒ Object
- #tasks ⇒ Object
Constructor Details
#initialize ⇒ Page
Returns a new instance of Page.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/volt/page/page.rb', line 45 def initialize @model_classes = {} # Run the code to setup the page @page = ReactiveValue.new(Model.new) @url = ReactiveValue.new(URL.new) @params = @url.params @url_tracker = UrlTracker.new(self) @events = DocumentEvents.new @draw_cycle = DrawCycle.new if RUBY_PLATFORM == 'opal' # Setup escape binding for console %x{ $(document).keyup(function(e) { if (e.keyCode == 27) { Opal.gvars.page.$launch_console(); } }); $(document).on('click', 'a', function(event) { return Opal.gvars.page.$link_clicked($(this).attr('href'), event); }); } end end |
Instance Attribute Details
#draw_cycle ⇒ Object (readonly)
Returns the value of attribute draw_cycle.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def draw_cycle @draw_cycle end |
#events ⇒ Object (readonly)
Returns the value of attribute events.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def events @events end |
#page ⇒ Object (readonly)
Returns the value of attribute page.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def page @page end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def params @params end |
#routes ⇒ Object (readonly)
Returns the value of attribute routes.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def routes @routes end |
#templates ⇒ Object (readonly)
Returns the value of attribute templates.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def templates @templates end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
43 44 45 |
# File 'lib/volt/page/page.rb', line 43 def url @url end |
Instance Method Details
#add_model(model_name) ⇒ Object
137 138 139 140 141 |
# File 'lib/volt/page/page.rb', line 137 def add_model(model_name) # puts "ADD MODEL: #{model_name.inspect} - #{model_name.camelize.inspect}" @model_classes[["*", "_#{model_name}"]] = Object.const_get(model_name.camelize) end |
#add_routes(&block) ⇒ Object
150 151 152 153 |
# File 'lib/volt/page/page.rb', line 150 def add_routes(&block) @routes = Routes.new.define(&block) @url.cur.router = @routes end |
#add_template(name, template, bindings) ⇒ Object
143 144 145 146 147 148 |
# File 'lib/volt/page/page.rb', line 143 def add_template(name, template, bindings) # puts "Add Template: #{name}\n#{template.inspect}\n#{bindings.inspect}" @templates ||= {} @templates[name] = {'html' => template, 'bindings' => bindings} # puts "Add Template: #{name}" end |
#binding_name ⇒ Object
We provide a binding_name, so we can bind events on the document
115 116 117 |
# File 'lib/volt/page/page.rb', line 115 def binding_name 'page' end |
#channel ⇒ Object
123 124 125 126 127 128 129 130 131 |
# File 'lib/volt/page/page.rb', line 123 def channel @channel ||= begin if Volt.client? ReactiveValue.new(Channel.new) else ReactiveValue.new(ChannelStub.new) end end end |
#flash ⇒ Object
74 75 76 |
# File 'lib/volt/page/page.rb', line 74 def flash @flash ||= ReactiveValue.new(Model.new({}, persistor: Persistors::Flash)) end |
#launch_console ⇒ Object
119 120 121 |
# File 'lib/volt/page/page.rb', line 119 def launch_console puts "Launch Console" end |
#link_clicked(url = '', event = nil) ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/volt/page/page.rb', line 90 def link_clicked(url='', event=nil) # Skip when href == '' return false if url.blank? # Normalize url # Benchmark.bm(1) do if @url.parse(url) if event # Handled new url `event.stopPropagation();` end # Clear the flash flash.clear # return false to stop the event propigation return false end # end # Not stopping, process link normally return true end |
#load_stored_page ⇒ Object
When the page is reloaded from the backend, we store the $page.page, so we can reload the page in the exact same state. Speeds up development.
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/volt/page/page.rb', line 184 def load_stored_page if Volt.client? if `sessionStorage` page_obj_str = nil `page_obj_str = sessionStorage.getItem('___page');` `if (page_obj_str) {` `sessionStorage.removeItem('___page');` JSON.parse(page_obj_str).each_pair do |key, value| self.page.send(:"#{key}=", value) end `}` end end rescue => e puts "Unable to restore: #{e.inspect}" end |
#local_store ⇒ Object
82 83 84 |
# File 'lib/volt/page/page.rb', line 82 def local_store @local_store ||= ReactiveValue.new(Model.new({}, persistor: Persistors::LocalStore)) end |
#start ⇒ Object
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 |
# File 'lib/volt/page/page.rb', line 155 def start # Setup to render template Element.find('body').html = "<!-- $CONTENT --><!-- $/CONTENT -->" load_stored_page # Do the initial url params parse @url_tracker.url_updated(true) main_controller = MainController.new # Setup main page template TemplateRenderer.new(self, DomTarget.new, main_controller, 'CONTENT', 'main/main/main/body') # Setup title listener template title_target = AttributeTarget.new title_target.on('changed') do title = title_target.to_html # puts "SET TITLE: #{title.inspect}: #{title_target.inspect}" `document.title = title;` end TemplateRenderer.new(self, title_target, main_controller, "main", "main/main/main/title") # TODO: this dom ready should really happen in the template renderer main_controller.dom_ready if main_controller.respond_to?(:dom_ready) end |
#store ⇒ Object
78 79 80 |
# File 'lib/volt/page/page.rb', line 78 def store @store ||= ReactiveValue.new(Model.new({}, persistor: Persistors::StoreFactory.new(tasks))) end |