This repository was archived by the owner on Oct 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathhyper-react.rb
52 lines (48 loc) · 1.56 KB
/
hyper-react.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
if RUBY_ENGINE == 'opal'
if `window.React === undefined || window.React.version === undefined`
raise [
"No React.js Available",
"",
"A global `React` must be defined before requiring 'reactrb'",
"",
"To USE THE BUILT-IN SOURCE: ",
" add 'require \"react/react-source\"' immediately before the 'require \"reactrb\" directive.",
"IF USING WEBPACK:",
" add 'react' to your webpack manifest."
].join("\n")
end
require 'react/hash'
require 'react/top_level'
require 'react/observable'
require 'react/validator'
require 'react/component'
require 'react/component/dsl_instance_methods'
require 'react/component/should_component_update'
require 'react/component/tags'
require 'react/component/base'
require 'react/element'
require 'react/event'
require 'react/api'
require 'react/rendering_context'
require 'react/state'
require 'react/object'
require 'reactive-ruby/isomorphic_helpers'
require 'rails-helpers/top_level_rails_component'
require 'reactive-ruby/version'
else
require 'opal'
# rubocop:disable Lint/HandleExceptions
begin
require 'opal-jquery'
rescue LoadError
end
# rubocop:enable Lint/HandleExceptions
require 'opal-activesupport'
require 'reactive-ruby/version'
require 'reactive-ruby/rails' if defined?(Rails)
require 'reactive-ruby/isomorphic_helpers'
require 'reactive-ruby/serializers'
Opal.append_path File.expand_path('../', __FILE__).untaint
Opal.append_path File.expand_path('../sources/', __FILE__).untaint
require "react/react-source"
end