Module: Iqvoc::Configuration::Core::ClassMethods

Defined in:
lib/iqvoc/configuration/core.rb

Instance Method Summary collapse

Instance Method Details

#ability_classObject



170
171
172
# File 'lib/iqvoc/configuration/core.rb', line 170

def ability_class
  ability_class_name.constantize
end

#all_languagesObject

returns a list of all languages selectable for labels and/or notes



183
184
185
186
187
# File 'lib/iqvoc/configuration/core.rb', line 183

def all_languages
  (Iqvoc::Concept.pref_labeling_languages +
      Iqvoc::Concept.further_labeling_class_names.values.flatten +
      note_languages).compact.map(&:to_s).uniq
end

#change_note_classObject



158
159
160
# File 'lib/iqvoc/configuration/core.rb', line 158

def change_note_class
  change_note_class_name.constantize
end

#concept_modal_preview_enabled?Boolean

Returns:

  • (Boolean)


195
196
197
# File 'lib/iqvoc/configuration/core.rb', line 195

def concept_modal_preview_enabled?
  config['concept_modal_preview'] == true
end

#config(&block) ⇒ Object

************** instance configuration **************



149
150
151
152
153
154
155
156
# File 'lib/iqvoc/configuration/core.rb', line 149

def config(&block)
  cfg = Iqvoc::Configuration::InstanceConfiguration.instance
  if block
    block.call(cfg)
  else
    return cfg
  end
end

#engine?Boolean

Returns:

  • (Boolean)


199
200
201
# File 'lib/iqvoc/configuration/core.rb', line 199

def engine?
  Iqvoc.const_defined?(:Engine)
end

#first_level_classesObject



166
167
168
# File 'lib/iqvoc/configuration/core.rb', line 166

def first_level_classes
  self.first_level_class_configuration_modules.map { |mod| mod.send(:base_class) }
end

#host_versionObject



218
219
220
221
222
# File 'lib/iqvoc/configuration/core.rb', line 218

def host_version
  if Iqvoc.host_namespace
    Iqvoc.host_namespace::VERSION
  end
end

#note_languagesObject



178
179
180
# File 'lib/iqvoc/configuration/core.rb', line 178

def note_languages
  config['languages.notes']
end

#rootObject



203
204
205
206
207
208
209
# File 'lib/iqvoc/configuration/core.rb', line 203

def root
  if engine?
    Iqvoc::Engine.root
  else
    Rails.root
  end
end

#routing_constraintObject



211
212
213
214
215
216
# File 'lib/iqvoc/configuration/core.rb', line 211

def routing_constraint
  lambda do |params, req|
    langs = Iqvoc::Concept.pref_labeling_languages.join('|').presence || 'en'
    return params[:lang].to_s =~ /^#{langs}$/
  end
end

#searchable_classesObject



162
163
164
# File 'lib/iqvoc/configuration/core.rb', line 162

def searchable_classes
  searchable_class_names.keys.map(&:constantize)
end

#titleObject



174
175
176
# File 'lib/iqvoc/configuration/core.rb', line 174

def title
  config['title']
end

#title=(value) ⇒ Object

Deprecated.


190
191
192
193
# File 'lib/iqvoc/configuration/core.rb', line 190

def title=(value)
  ActiveSupport::Deprecation.warn 'title has been moved into instance configuration', caller
  self.config.register_setting('title', value)
end