Module: Hyperloop

Defined in:
lib/hyperloop/imports.rb,
lib/hyperloop/rail_tie.rb,
lib/hyperloop/on_client.rb,
lib/hyperloop/client_stubs.rb,
lib/hyperloop/client_readers.rb,
lib/hyperloop/config_settings.rb

Defined Under Namespace

Classes: Railtie

Class Method Summary collapse

Class Method Details

.cancel_import(value) ⇒ Object



35
36
37
# File 'lib/hyperloop/imports.rb', line 35

def cancel_import(value)
  import(nil, instead_of: value)
end

.client_guard(render_on_server, render_on_client) ⇒ Object



83
84
85
86
87
88
89
# File 'lib/hyperloop/imports.rb', line 83

def client_guard(render_on_server, render_on_client)
  if !render_on_server
    '# CLIENT ONLY'
  elsif !render_on_client
    '# SERVER ONLY'
  end
end

.client_reader(*args) ⇒ Object



12
13
14
15
16
17
# File 'lib/hyperloop/client_readers.rb', line 12

def client_reader(*args)
  # configuration.client_reader[:foo] = 12  initialize your own client value
  # configuration.client_reader :foo, :bar  make previous setting readable on client
  client_readers += [*args]
  client_reader_hash
end

.client_reader_hashObject



8
9
10
# File 'lib/hyperloop/client_readers.rb', line 8

def client_reader_hash
  @client_readers_hash ||= {}
end

.client_readersObject



4
5
6
# File 'lib/hyperloop/client_readers.rb', line 4

def client_readers
  @client_readers ||= []
end

.configuration {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:

  • _self (Hyperloop)

    the object that the method was called on



12
13
14
15
16
# File 'lib/hyperloop/config_settings.rb', line 12

def configuration
  reset_blocks.each(&:call)
  yield self
  initialized_blocks.each(&:call)
end

.define_setting(name, default = nil, &block) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/hyperloop/config_settings.rb', line 18

def define_setting(name, default = nil, &block)
  class_variable_set("@@#{name}", default)

  define_class_method "#{name}=" do |value|
    class_variable_set("@@#{name}", value)
    block.call value if block
    value
  end

  define_class_method name do
    class_variable_get("@@#{name}")
  end
end

.generate_directive(directive, to, file, render_on_server, render_on_client) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
# File 'lib/hyperloop/imports.rb', line 57

def generate_directive(directive, to, file, render_on_server, render_on_client)
  gem_path = File.expand_path('../', file).split('/')
  comp_path = Rails.root.join('app', 'hyperloop', to).to_s.split('/')
  while comp_path.first == gem_path.first do
    gem_path.shift
    comp_path.shift
  end
  r = "#{directive} '#{(['.'] + ['..'] * gem_path.length + comp_path).join('/')}' #{client_guard(render_on_server, render_on_client)}"
  puts r
  "puts \"#{r}\"; #{r}"
end

.generate_require_tree(path, render_on_server, render_on_client) ⇒ Object



69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/hyperloop/imports.rb', line 69

def generate_require_tree(path, render_on_server, render_on_client)
  base_name = Rails.root.join('app', path).to_s+'/'
  Dir.glob(Rails.root.join('app', path, '**', '*')).collect do |fname|
    fname = fname.gsub(/^#{base_name}/, '')
    fname = fname.gsub(/\.erb$/, '')
    if fname =~ /(\.js$)|(\.rb$)/
      fname = fname.gsub(/(\.js$)|(\.rb$)/, '')
      r = "require '#{fname}' #{client_guard(render_on_server, render_on_client)}"
      puts r
      "puts \"#{r}\"; #{r}"
    end
  end.compact.join("\n")
end

.generate_requires(mode, file) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/hyperloop/imports.rb', line 39

def generate_requires(mode, file)
  puts "***** generating requires for #{mode} - #{file}"
  import_list.collect do |value, render_on_server, render_on_client, kind|
    next unless value
    next if mode == :client && !render_on_client
    next if mode == :server && !render_on_server
    if kind == :tree
      generate_require_tree(value, render_on_server, render_on_client)
    elsif kind == :gem
      r = "require '#{value}' #{client_guard(render_on_server, render_on_client)}"
      puts r
      "puts \"#{r}\"; #{r}"
    else
      generate_directive(:require, value, file, render_on_server, render_on_client)
    end
  end.compact.join("\n")
end

.import(*args) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/hyperloop/imports.rb', line 7

def import(value, gem: nil, instead_of: nil, client_only: nil, server_only: nil, tree: nil)
  if instead_of
    current_spec = import_list.detect { |old_value, *_rest| instead_of == old_value }
    if current_spec
      current_spec[0] = value
    else
      raise [
        "Could not substitute import '#{instead_of}' with '#{value}'.  '#{instead_of}' not found.",
        'The following files are currently being imported:',
        *import_list.collect { |old_value, *_rest| old_value }
      ].join("\n")
    end
  elsif !import_list.detect { |current_value, *_rest| value == current_value }
    kind = if tree
             :tree
           else
             :gem
           end
    import_list << [value, !client_only, !server_only, kind]
  end
end

.import_listObject



3
4
5
# File 'lib/hyperloop/imports.rb', line 3

def import_list
  @import_list ||= []
end

.import_tree(*args) ⇒ Object



31
32
33
# File 'lib/hyperloop/imports.rb', line 31

def import_tree(value, instead_of: nil, client_only: nil, server_only: nil)
  import(value, instead_of: instead_of, client_only: client_only, server_only: server_only, tree: true)
end

.imports(*args) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/hyperloop/imports.rb', line 29

def import(value, gem: nil, instead_of: nil, client_only: nil, server_only: nil, tree: nil)
  if instead_of
    current_spec = import_list.detect { |old_value, *_rest| instead_of == old_value }
    if current_spec
      current_spec[0] = value
    else
      raise [
        "Could not substitute import '#{instead_of}' with '#{value}'.  '#{instead_of}' not found.",
        'The following files are currently being imported:',
        *import_list.collect { |old_value, *_rest| old_value }
      ].join("\n")
    end
  elsif !import_list.detect { |current_value, *_rest| value == current_value }
    kind = if tree
             :tree
           else
             :gem
           end
    import_list << [value, !client_only, !server_only, kind]
  end
end

.initialized_blocksObject



4
5
6
# File 'lib/hyperloop/config_settings.rb', line 4

def initialized_blocks
  @initialized_blocks ||= []
end

.on_client?Boolean

Returns:

  • (Boolean)


2
3
4
# File 'lib/hyperloop/on_client.rb', line 2

def self.on_client?
  !(`typeof Opal.global.document === 'undefined'`) if RUBY_ENGINE == 'opal'
end

.on_config_initialized(&block) ⇒ Object



37
38
39
# File 'lib/hyperloop/config_settings.rb', line 37

def on_config_initialized &block
  initialized_blocks << block
end

.on_config_reset(&block) ⇒ Object



33
34
35
# File 'lib/hyperloop/config_settings.rb', line 33

def on_config_reset &block
  reset_blocks << block
end

.reset_blocksObject



8
9
10
# File 'lib/hyperloop/config_settings.rb', line 8

def reset_blocks
  @reset_blocks ||= []
end