Method: GraphQL::Client::ViewModule#load_module

Defined in:
lib/graphql/client/view_module.rb

#load_module(name) ⇒ Object

Internal: Initialize new module for constant name and load ERB statics.

name - String or Symbol constant name.

Examples

Views::Users.load_module(:Profile)
Views::Users::Profile.load_module(:Show)

Returns new Module implementing Loadable concern.

[View source]

98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/graphql/client/view_module.rb', line 98

def load_module(name)
  pathname = ActiveSupport::Inflector.underscore(name.to_s)
  path = Dir[File.join(load_path, "{#{pathname},_#{pathname}}{.*}")].map { |fn| File.expand_path(fn) }.first

  return if !path || File.extname(path) != ".erb"

  contents = File.read(path)
  query, lineno = ViewModule.extract_graphql_section(contents)
  return unless query

  mod = client.parse(query, path, lineno)
  mod.extend(ViewModule)
  mod.load_path = File.join(load_path, pathname)
  mod.source_path = path
  mod.client = client
  mod
end