Module: OtusHelper

Defined in:
app/helpers/otus_helper.rb

Instance Method Summary collapse

Instance Method Details

#add_aggregate_geo_json(otu, target) ⇒ Object



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'app/helpers/otus_helper.rb', line 200

def add_aggregate_geo_json(otu, target)
  h = target

  if g = aggregate_geo_json(otu, h)
    t = {
      'id' => otu.id,
      'type' => 'Otu',
      'label' => label_for_otu(otu)
    }

    g['properties'] = {'aggregate': true}

    g['properties']['target'] = t
    h['features'].push g
  end

  h
end

#add_distribution_geo_json(otu, target) ⇒ Object



271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'app/helpers/otus_helper.rb', line 271

def add_distribution_geo_json(otu, target)
  h = target
  o = otu

  # internal target
  t = {
    'id' => o.id,
    'type' => 'Otu',
    'label' => label_for_otu(otu)
  }

  o.current_collection_objects.each do |c|
    if g = collection_object_to_geo_json_feature(c)
      g['properties']['target'] = t
      h['features'].push g
    end
  end

  o.asserted_distributions.each do |a|
    if g = asserted_distribution_to_geo_json_feature(a)
      g['properties']['target'] = t
      h['features'].push g
    end
  end

  o.type_materials.each do |e|
    if g = type_material_to_geo_json_feature(e)
      g['properties']['target'] = t
      h['features'].push g
    end
  end
  h
end

#aggregate_geo_json(otu, target, cached_map_type = 'CachedMapItem::WebLevel1') ⇒ Object

TODO: cleanup



235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'app/helpers/otus_helper.rb', line 235

def aggregate_geo_json(otu, target, cached_map_type = 'CachedMapItem::WebLevel1')
  h = target

  if gj = otu.cached_map_geo_json(cached_map_type)

   i =
     {
       **gj,
      # 'type' => gj['type'],  # 'Feature',

      'properties' => {
        'base' => {
          'type' => 'Otu',
          'id' => otu.id,
          'label' => label_for_otu(otu) },
  #     'shape' => {
  #       'type' => cached_map_type,
  #       'id' => 99999 }, # was nil
       'updated_at' => 'foo' # last updated at on CachedMapItem scope, possibly
      }
    }

   if gj.keys.include?('coordinates')
     i['coordinates'] = gj['coordinates'] # was 'coordinates' TODO: might not work
   elsif gj.keys.include?('geometries')
     i['geometries'] = gj['geometries'] # was 'coordinates' TODO: might not work
   end

    i

  else
    nil
  end

end

Stub a smart link to browse OTUs

Parameters:

  • object (an instance of TaxonName or Otu)

    if TaxonName is provided JS UI will disambiguate if more options are possible



61
62
63
64
65
# File 'app/helpers/otus_helper.rb', line 61

def browse_otu_link(object)
  return nil if object.nil?
  otu = object.metamorphosize
  (:div, '', 'data-taxon-name' => object_tag(otu), 'data-redirect' => 'true', 'data-id' => otu.id, 'data-klass' => object.class.base_class.name.to_s, 'data-otu-button' => 'true')
end

#label_for_otu(otu) ⇒ Object



10
11
12
13
14
15
# File 'app/helpers/otus_helper.rb', line 10

def label_for_otu(otu)
  return nil if otu.nil?
  [otu.name,
   label_for_taxon_name(otu.taxon_name)
  ].compact.join(': ')
end

#next_otus(otu) ⇒ Array

Returns of OTUs.

Returns:

  • (Array)

    of OTUs



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'app/helpers/otus_helper.rb', line 78

def next_otus(otu)
  if otu.taxon_name_id
    o = []
    t = otu.taxon_name.next_sibling
    unless t.nil?
      while o.empty?
        o = t&.otus.to_a
        break if t.nil?
        t = t.next_sibling
      end
    end
    o
  else
    Otu.where(project_id: otu.id).where('id > ?', otu.id).all
  end
end

#otu_autocomplete_selected_tag(otu) ⇒ String

Returns no HTML inside <input>.

Returns:

  • (String)

    no HTML inside <input>



38
39
40
41
42
43
# File 'app/helpers/otus_helper.rb', line 38

def otu_autocomplete_selected_tag(otu)
  return nil if otu.nil? || (otu.new_record? && !otu.changed?)
  [otu.name,
   Utilities::Strings.nil_wrap('[',taxon_name_autocomplete_selected_tag(otu.taxon_name), ']')&.html_safe
  ].compact.join(' ')
end

#otu_cached_map(otu, target, cached_map_type = 'CachedMapItem::WebLevel1', cache = true, force = false) ⇒ Object

NOT USED Caching the cached map



221
222
223
224
225
226
227
228
229
230
231
232
# File 'app/helpers/otus_helper.rb', line 221

def otu_cached_map(otu, target, cached_map_type = 'CachedMapItem::WebLevel1', cache = true, force = false)
  r = nil
  if force
    r = aggregate_geo_json(otu, target, cached_map_type)
  else
    # Check for map

    # TODO: extend with synced check
    if a = CachedMap.where(project_id: sessions_current_project_id).where(otu_id: otu.id, cached_map_type:  )
    end
  end
end

#otu_distribution(otu, children = true, cutoff = 200) ⇒ Object

TODO:

* make properties universal
  type: 'Model',
  id: id,
  label: <label>
  • merge origin_otu_id: id to reference coordinate OTUs

target:
  type: Otu
  label:
  id

base:   # one level above target (or one level below shape?!)
  type:
  id:

shape: # Either GeographicArea or Georeference
   type
   id

Returns:

  • Hash A GeoJSON collection of distribution data in x parts

    need a `to_geo_json` for each object
    
     :asserted_distributions
        with shape
        without shapes
     :collection_objects
          with georeferences
          with GeographicAreas
     :type material
          with georeferences
          with GeographicAreas
    


169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'app/helpers/otus_helper.rb', line 169

def otu_distribution(otu, children = true, cutoff = 200)
  return {} if otu.nil?
  otus = if children
           otu.coordinate_otus_with_children
         else
           Otu.coordinate_otus(otu.id)
         end

  h = {
    'type' => 'FeatureCollection',
    'features' => [],
    'properties' => {
      'target' => { # Top level target
        'id' => otu.id,
        'label' => label_for_otu(otu),
        'type' => 'Otu'
      }
    }
  }

  if otu.taxon_name && otu.taxon_name.is_protonym? && !otu.taxon_name.is_species_rank?
    add_aggregate_geo_json(otu, h)
  else
    otus.each do |o|
      add_distribution_geo_json(o, h)
    end
  end

  h
end

#otu_extended_autocomplete_tag(target) ⇒ Object

Used exclusively in /api/v1/otus/autocomplete



26
27
28
29
30
31
32
33
34
# File 'app/helpers/otus_helper.rb', line 26

def otu_extended_autocomplete_tag(target)
  if target.kind_of?(Otu)
    otu_tag(target)
  else # TaxonName
    a = [ tag.span( full_taxon_name_tag(target).html_safe, class: :otu_tag_taxon_name, title: target.id) ]
    a.push taxon_name_type_short_tag(target)
    tag.span( a.compact.join(' ').html_safe, class: :otu_tag )
  end
end


45
46
47
48
# File 'app/helpers/otus_helper.rb', line 45

def otu_link(otu)
  return nil if otu.nil?
  link_to(otu_tag_elements(otu).join(' ').html_safe, otu)
end

#otu_tag(otu) ⇒ Object



3
4
5
6
7
8
# File 'app/helpers/otus_helper.rb', line 3

def otu_tag(otu)
  return nil if otu.nil?
  a = otu_tag_elements(otu)
  a.push taxon_name_type_short_tag(otu.taxon_name)
  (:span, a.compact.join(' ').html_safe, class: :otu_tag)
end

#otu_tag_elements(otu) ⇒ Object



17
18
19
20
21
22
23
# File 'app/helpers/otus_helper.rb', line 17

def otu_tag_elements(otu)
  return nil if otu.nil?
  [
    ( otu.name ? (:span, otu.name, class: :otu_tag_otu_name, title: otu.id) : nil ),
    ( otu.taxon_name ? (:span, full_taxon_name_tag(otu.taxon_name).html_safe, class: :otu_tag_taxon_name, title: otu.taxon_name.id) : nil)
  ].compact
end


54
55
56
# File 'app/helpers/otus_helper.rb', line 54

def otus_link_list_tag(otus)
  otus.collect { |o| link_to(o.name, o) }.join(',')
end

#otus_radial(object) ⇒ Object



72
73
74
# File 'app/helpers/otus_helper.rb', line 72

def otus_radial(object)
  (:div, '', 'data-global-id' => object.to_global_id.to_s, 'data-otu-radial' => 'true')
end

#otus_radial_disambiguate(object) ⇒ Object



67
68
69
70
# File 'app/helpers/otus_helper.rb', line 67

def otus_radial_disambiguate(object)
  otu = object.metamorphosize
  (:div, '', 'data-taxon-name' => object_tag(otu), 'data-redirect' => 'false', 'data-id' => otu.id, 'data-klass' => object.class.base_class.name.to_s, 'data-otu-button' => 'true')
end

#otus_search_formObject



50
51
52
# File 'app/helpers/otus_helper.rb', line 50

def otus_search_form
  render('/otus/quick_search_form')
end

#parent_otus(otu) ⇒ Object



116
117
118
# File 'app/helpers/otus_helper.rb', line 116

def parent_otus(otu)
  otu.taxon_name&.parent&.otus&.all || []
end

#parents_by_nomenclature(otu) ⇒ Object

See also otus#ancestor_otu_ids ?



121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'app/helpers/otus_helper.rb', line 121

def parents_by_nomenclature(otu)
  above = [ ]
  if otu.taxon_name_id
    TaxonName.ancestors_of(otu.taxon_name)
      .select('taxon_names.*, taxon_name_hierarchies.generations')
      .that_is_valid.joins(:otus)
      .distinct
      .reorder('taxon_name_hierarchies.generations DESC, taxon_names.cached_valid_taxon_name_id').each do |t|
        above.push [t.cached, t.otus.to_a] # TODO: to_a vs. pluck
      end
  end
  above
end

#previous_otus(otu) ⇒ Array

Some OTUs don’t have TaxonName, skip along until we hit one.

Returns:

  • (Array)

    of OTUs



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'app/helpers/otus_helper.rb', line 99

def previous_otus(otu)
  if otu.taxon_name_id
    o = []
    t = otu.taxon_name.previous_sibling
    unless t.nil?
      while o.empty?
        o = t&.otus.to_a
        break if t.nil?
        t = t.previous_sibling
      end
    end
    o
  else
    Otu.where(project_id: otu.id).where('id < ?', otu.id).all
  end
end