Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit e94b1cd

Browse files
authored
Merge pull request #179 from ruby-hyperloop/hyper-react
hyper-react rename & various patches
2 parents 4f5ea84 + acbbe97 commit e94b1cd

File tree

10 files changed

+106
-50
lines changed

10 files changed

+106
-50
lines changed

README.md

+16-36
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
# Reactrb
1+
# hyper-react
22

33
[![Join the chat at https://gitter.im/reactrb/chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/reactrb/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4-
[![Build Status](https://travis-ci.org/reactrb/reactrb.svg?branch=master)](https://travis-ci.org/reactrb/reactrb)
4+
[![Build Status](https://travis-ci.org/ruby-hyperloop/reactrb.svg?branch=master)](https://travis-ci.org/reactrb/reactrb)
55
[![Code Climate](https://codeclimate.com/github/reactrb/reactrb/badges/gpa.svg)](https://codeclimate.com/github/reactrb/reactrb)
66
[![Gem Version](https://badge.fury.io/rb/reactrb.svg)](https://badge.fury.io/rb/reactrb)
77

8-
**Reactrb is an [Opal Ruby](http://opalrb.org) wrapper of
9-
[React.js library](http://facebook.github.io/reactrb/)**.
8+
**hyper-react is an [Opal Ruby](http://opalrb.org) wrapper of
9+
[React.js library](https://facebook.github.io/react)**.
1010

1111
It lets you write reactive UI components, with Ruby's elegance using the tried
1212
and true React.js engine. :heart:
1313

14-
Visit [** ruby-hyperloop.io**](http://ruby-hyperloop.io) for the full story.
14+
Visit [ruby-hyperloop.io](http://ruby-hyperloop.io) for the full story.
1515

16-
### Important: `react.rb` and `reactive-ruby` gems are **deprecated.** Please [read this!](#upgrading-to-reactrb)
16+
### Important: `react.rb`, `reactive-ruby` and `reactrb` gems are **deprecated.**. See [**UPGRADING**](UPGRADING.md) for details.
1717

1818
## Installation
1919

2020
Install the gem, or load the js library
2121

22-
1. Add `gem 'reactrb'` to your **Gemfile**
23-
2. Or `gem install reactrb`
24-
3. Or install (or load via cdn) from [reactrb-express.js](http://github.com/reactrb/reactrb-express)
22+
1. Add `gem 'hyper-react'` to your **Gemfile**
23+
2. Or `gem install hyper-react`
24+
3. Or install (or load via cdn) from [reactrb-express.js](http://github.com/ruby-hyperloop/reactrb-express)
2525

2626
For gem installation it is highly recommended to read the [getting started](http://ruby-hyperloop.io/get_started/) and [installation](http://ruby-hyperloop.io/installation/) guides at [ruby-hyperloop.io.](http://ruby-hyperloop.io)
2727

@@ -66,11 +66,11 @@ every(1) do
6666
end
6767
```
6868

69-
Reactrb components are *isomorphic* (or *univeral*) meaning they can run on the server as well as the client.
69+
hyper-react components are *isomorphic* (or *univeral*) meaning they can run on the server as well as the client.
7070

71-
Reactrb integrates well with Rails, Sinatra, and simple static sites, and can be added to existing web pages very easily.
71+
hyper-react integrates well with Rails, Sinatra, and simple static sites, and can be added to existing web pages very easily.
7272

73-
Under the hood the actual work is effeciently done by the [React.js](http://facebook.github.io/reactrb/) engine.
73+
Under the hood the actual work is effeciently done by the [React.js](https://facebook.github.io/react) engine.
7474

7575

7676
## Why ?
@@ -89,37 +89,17 @@ Under the hood the actual work is effeciently done by the [React.js](http://face
8989
+ [Github Issues](https://github.com/reactrb/reactrb/issues) for bugs, feature enhancements, etc.
9090

9191

92-
## Upgrading to Reactrb
93-
94-
The original gem `react.rb` was superceeded by `reactive-ruby`, which has had over 15,000 downloads. This name has now been superceeded by `reactrb` (see #144 for detailed discussion on why.)
95-
96-
Going forward the name `reactrb` will be used consistently as the organization name, the gem name, the domain name, the twitter handle, etc.
97-
98-
The first initial version of `reactrb` is 0.8.x.
99-
100-
It is very unlikely that there will be any more releases of the `reactive-ruby` gem, so users should upgrade to `reactrb`.
101-
102-
There are no syntactic or semantic breaking changes between `reactrb` v 0.8.x and
103-
previous versions, however the `reactrb` gem does *not* include the react-js source as previous versions did. This allows you to pick the react js source compatible with other gems and react js components you may be using.
104-
105-
Follow these steps to upgrade:
106-
107-
1. Replace `reactive-ruby` with `reactrb` both in **Gemfile** and any `require`s in your code.
108-
2. To include the React.js source, the suggested way is to add `require 'react/react-source'` before `require 'reactrb'`. This will use the copy of React.js source from `react-rails` gem.
109-
11092
## Roadmap
11193

112-
Upcoming will be an 0.9.x release which will deprecate a number of features and DSL elements. [click for detailed feature list](https://github.com/reactrb/reactrb/milestones/0.9.x)
113-
114-
Version 0.10.x **will not be** 100% backward compatible with 0.3.0 (`react.rb`) or 0.7.x (`reactive-ruby`) so its very important to begin your upgrade process now by switching to `reactrb` now.
94+
Version 0.10.x **will not be** 100% backward compatible with 0.3.0 (`react.rb`) or 0.7.x (`reactive-ruby`).
11595

11696
Please let us know either at [Gitter.im](https://gitter.im/reactrb/chat) or [via an issue](https://github.com/reactrb/reactrb/issues) if you have specific concerns with the upgrade from 0.3.0 to 0.10.x.
11797

11898
## Developing
11999

120100
`git clone` the project.
121101

122-
To play with some live examples, refer to https://github.com/reactrb/reactrb-examples.
102+
To play with some live examples, refer to https://github.com/ruby-hyperloop/reactrb-examples.
123103

124104
Note that these are very simple examples, for the purpose of showing how to configure the gem in various server environments. For more examples and information see [ruby-hyperloop.io.](http://ruby-hyperloop.io)
125105

@@ -132,10 +112,10 @@ Note that these are very simple examples, for the purpose of showing how to conf
132112
## Contributions
133113

134114
This project is still in early stage, so discussion, bug reports and PRs are
135-
really welcome :wink:.
115+
really welcome :wink:.
136116

137117

138118
## License
139119

140-
In short, Reactrb is available under the MIT license. See the LICENSE file for
120+
In short, hyper-react is available under the MIT license. See the LICENSE file for
141121
more info.

UPGRADING.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Upgrading to hyper-react from Reactrb
2+
3+
Follow these steps to upgrade:
4+
5+
1. Replace `reactrb` with `hyper-react` both in **Gemfile** and any `require`s in your code.
6+
2. To include the React.js source, the suggested way is to add `require 'react/react-source'` before `require 'hyper-react'`. This will use the copy of React.js source from `react-rails` gem.
7+
8+
## Upgrading to Reactrb
9+
10+
The original gem `react.rb` was superceeded by `reactive-ruby`, which has had over 15,000 downloads. This name has now been superceeded by `reactrb` (see #144 for detailed discussion on why.)
11+
12+
Going forward the name `reactrb` will be used consistently as the organization name, the gem name, the domain name, the twitter handle, etc.
13+
14+
The first initial version of `reactrb` is 0.8.x.
15+
16+
It is very unlikely that there will be any more releases of the `reactive-ruby` gem, so users should upgrade to `reactrb`.
17+
18+
There are no syntactic or semantic breaking changes between `reactrb` v 0.8.x and
19+
previous versions, however the `reactrb` gem does *not* include the react-js source as previous versions did. This allows you to pick the react js source compatible with other gems and react js components you may be using.
20+
21+
Follow these steps to upgrade:
22+
23+
1. Replace `reactive-ruby` with `reactrb` both in **Gemfile** and any `require`s in your code.
24+
2. To include the React.js source, the suggested way is to add `require 'react/react-source'` before `require 'reactrb'`. This will use the copy of React.js source from `react-rails` gem.

reactrb.gemspec hyper-react.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ $:.push File.expand_path('../lib/', __FILE__)
44
require 'reactive-ruby/version'
55

66
Gem::Specification.new do |s|
7-
s.name = 'reactrb'
7+
s.name = 'hyper-react'
88
s.version = React::VERSION
99

1010
s.authors = ['David Chang', 'Adam Jahn', 'Mitch VanDuyn']
1111
s.email = '[email protected]'
12-
s.homepage = 'http://reactrb.org'
12+
s.homepage = 'http://ruby-hyperloop.io/gems/reactrb/'
1313
s.summary = 'Opal Ruby wrapper of React.js library.'
1414
s.license = 'MIT'
1515
s.description = "Write React UI components in pure Ruby."
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
require 'opal'
22
require 'react/react-source'
3-
require 'reactrb'
3+
require 'hyper-react'
44
require_tree './components'

lib/generators/reactive_ruby/test_app/templates/test_application.rb.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require File.expand_path('../boot', __FILE__)
77
Bundler.require(*Rails.groups(assets: %w(development test)))
88

99
require 'opal-rails'
10-
require 'reactrb'
10+
require 'hyper-react'
1111

1212
<%= application_definition %>
1313
<% end %>

lib/reactrb.rb lib/hyper-react.rb

File renamed without changes.

lib/react/state.rb

+49-5
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,67 @@ class State
3939
class << self
4040
attr_reader :current_observer
4141

42+
def has_observers?(object, name)
43+
!observers_by_name[object][name].empty?
44+
end
45+
46+
def bulk_update
47+
saved_bulk_update_flag = @bulk_update_flag
48+
@bulk_update_flag = true
49+
yield
50+
ensure
51+
@bulk_update_flag = saved_bulk_update_flag
52+
end
53+
54+
def set_state2(object, name, value, updates, exclusions = nil)
55+
# set object's name state to value, tell all observers it has changed.
56+
# Observers must implement update_react_js_state
57+
object_needs_notification = object.respond_to? :update_react_js_state
58+
observers_by_name[object][name].dup.each do |observer|
59+
next if exclusions && exclusions.include?(observer)
60+
updates[observer] += [object, name, value]
61+
object_needs_notification = false if object == observer
62+
end
63+
updates[object] += [nil, name, value] if object_needs_notification
64+
end
65+
4266
def initialize_states(object, initial_values) # initialize objects' name/value pairs
4367
states[object].merge!(initial_values || {})
4468
end
4569

4670
def get_state(object, name, current_observer = @current_observer)
4771
# get current value of name for object, remember that the current object depends on this state,
4872
# current observer can be overriden with last param
49-
new_observers[current_observer][object] << name if current_observer && !new_observers[current_observer][object].include?(name)
73+
if current_observer && !new_observers[current_observer][object].include?(name)
74+
new_observers[current_observer][object] << name
75+
end
76+
if @delayed_updates && @delayed_updates[object][name]
77+
@delayed_updates[object][name][1] << current_observer
78+
end
5079
states[object][name]
5180
end
5281

53-
def set_state(object, name, value, wait_till_thread_completes = nil)
82+
def set_state(object, name, value, delay=nil)
5483
states[object][name] = value
55-
if wait_till_thread_completes
56-
notify_observers_after_thread_completes(object, name, value)
84+
if delay || @bulk_update_flag
85+
@delayed_updates ||= Hash.new { |h, k| h[k] = {} }
86+
@delayed_updates[object][name] = [value, Set.new]
87+
@delayed_updater ||= after(0.001) do
88+
delayed_updates = @delayed_updates
89+
@delayed_updates = Hash.new { |h, k| h[k] = {} } # could this be nil???
90+
@delayed_updater = nil
91+
updates = Hash.new { |hash, key| hash[key] = Array.new }
92+
delayed_updates.each do |object, name_hash|
93+
name_hash.each do |name, value_and_set|
94+
set_state2(object, name, value_and_set[0], updates, value_and_set[1])
95+
end
96+
end
97+
updates.each { |observer, args| observer.update_react_js_state(*args) }
98+
end
5799
elsif @rendering_level == 0
58-
notify_observers(object, name, value)
100+
updates = Hash.new { |hash, key| hash[key] = Array.new }
101+
set_state2(object, name, value, updates)
102+
updates.each { |observer, args| observer.update_react_js_state(*args) }
59103
end
60104
value
61105
end

lib/reactive-ruby/isomorphic_helpers.rb

+11-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,20 @@ def self.included(base)
66

77
if RUBY_ENGINE != 'opal'
88
def self.load_context(ctx, controller, name = nil)
9+
puts "************************** React Server Context Initialized #{name} *********************************************"
910
@context = Context.new("#{controller.object_id}-#{Time.now.to_i}", ctx, controller, name)
1011
end
1112
else
1213
def self.load_context(unique_id = nil, name = nil)
1314
# can be called on the client to force re-initialization for testing purposes
1415
if !unique_id || !@context || @context.unique_id != unique_id
16+
if on_opal_server?
17+
`console.history = []` rescue nil
18+
message = "************************ React Prerendering Context Initialized #{name} ***********************"
19+
else
20+
message = "************************ React Browser Context Initialized ****************************"
21+
end
22+
log(message)
1523
@context = Context.new(unique_id)
1624
end
1725
@context
@@ -65,10 +73,10 @@ def on_opal_client?
6573
self.class.on_opal_client?
6674
end
6775

68-
def self.prerender_footers
69-
footer = Context.prerender_footer_blocks.collect { |block| block.call }.join("\n")
76+
def self.prerender_footers(controller = nil)
77+
footer = Context.prerender_footer_blocks.collect { |block| block.call controller }.join("\n")
7078
if RUBY_ENGINE != 'opal'
71-
footer = (footer + "#{@context.send_to_opal(:prerender_footers)}") if @context
79+
footer = (footer + @context.send_to_opal(:prerender_footers).to_s) if @context
7280
footer = footer.html_safe
7381
end
7482
footer

lib/reactive-ruby/rails/component_mount.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def top_level_name
3939
end
4040

4141
def footers
42-
React::IsomorphicHelpers.prerender_footers #if options[:prerender]
42+
React::IsomorphicHelpers.prerender_footers(controller)
4343
end
4444
end
4545
end

spec/spec_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def ruby?
1616
if RUBY_ENGINE == 'opal'
1717
require File.expand_path('../vendor/jquery-2.2.4.min', __FILE__)
1818
require 'react/react-source'
19-
require 'reactrb'
19+
require 'hyper-react'
2020
require 'react/test/rspec'
2121

2222
require File.expand_path('../support/react/spec_helpers', __FILE__)

0 commit comments

Comments
 (0)