Module: TaxonNames::PaperCatalogHelper
- Defined in:
- app/helpers/taxon_names/paper_catalog_helper.rb
Overview
Helpers for rendering a paper catalog.
Constant Summary collapse
- OPTIONS =
{ nest_rank_headers: true, # in hanging_indents: false, # does nothing only_origin_sources: true, }.freeze
Instance Method Summary collapse
-
#paper_catalog_entry_item_tag(catalog_entry_item) ⇒ Object
may need reference_object.
-
#paper_catalog_li_tag(nomenclature_catalog_item, reference_taxon_name, target = :browse_nomenclature_task_path) ⇒ Object
TODO: Add depth, Markdown.
- #paper_distribution_row(entry_item) ⇒ Object
- #paper_header_prefix(taxon_name, options) ⇒ Object
-
#paper_history_author_year(taxon_name, citation) ⇒ String
The name, or citation author year, prioritized by original/new with punctuation.
-
#paper_history_author_year_tag(taxon_name) ⇒ Object
# @return [String, nil] # variably return the author year for taxon name in question # !! NO span, is used in comparison !!.
-
#paper_history_in_taxon_name(t, c, i) ⇒ Object
# @return [String, nil] # return the citation author/year if differeing from the taxon name author year.
-
#paper_history_other_name(catalog_item, reference_taxon_name) ⇒ String?
A parenthesized line item containing relationship and related name.
-
#paper_history_statuses(nomenclature_catalog_entry_item) ⇒ Object
# @return [String, nil] # A brief summary of the validity of the name (e.g. ‘Valid’) # …
-
#paper_history_subject_original_citation(catalog_item) ⇒ Object
# @return [String, nil] # the taxon name author year for the citation in question # if the same as the author/year for the catalog_item taxon name then this # only renders the pages in that citation.
- #paper_history_taxon_name(taxon_name, r, c, target = nil) ⇒ Object
-
#paper_history_type_material(entry_item) ⇒ Object
TODO: always displayed inline, consider target.
-
#paper_line_tag(nomenclature_catalog_entry_item, reference_taxon_name, target = :browse_nomenclature_task_path) ⇒ Object
TODO: rename reference_taxon_name.
-
#paper_repositories(entry_item) ⇒ Array
Of [acronym, name] pairs.
-
#recursive_catalog_tag(taxon_name, data = { body: '', sources: [], supplementary_distribution: ::Catalog::Distribution::Entry.new([]), repositories: [], options: OPTIONS}, depth = 0) ⇒ Hash
The body format is “chronological”, i.e.
-
#recursive_catalog_tag2(taxon_name, body = '', depth = 0) ⇒ Object
!! Unused Scaffold by by unique synonyms.
Instance Method Details
#paper_catalog_entry_item_tag(catalog_entry_item) ⇒ Object
may need reference_object
152 153 154 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 152 def paper_catalog_entry_item_tag(catalog_entry_item) # may need reference_object nomenclature_line_tag(catalog_entry_item, catalog_entry_item.base_object) # second param might be wrong! end |
#paper_catalog_li_tag(nomenclature_catalog_item, reference_taxon_name, target = :browse_nomenclature_task_path) ⇒ Object
TODO: Add depth, Markdown
157 158 159 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 157 def paper_catalog_li_tag(nomenclature_catalog_item, reference_taxon_name, target = :browse_nomenclature_task_path) paper_line_tag(nomenclature_catalog_item, reference_taxon_name, target) end |
#paper_distribution_row(entry_item) ⇒ Object
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 302 def paper_distribution_row(entry_item) o = case entry_item.object.class.name when 'TypeMaterial' entry_item.object.collection_object else entry_item.object end if o.dwc_occurrence [ '| ', o.dwc_occurrence.attributes.slice( 'kingdom', 'family', 'genus', 'specificEpithet', 'infraspecificEpithet', 'scientificName', 'scientificNameAuthorship', 'taxonRank', 'country', 'stateProvince', 'county', 'occurrenceStatus', ).values.join('| '), '| ', o.sources.collect{|s| (s)}.join('; ') ].join(' ') else "| Record not indexed: #{label_for(o)}" + (['|'] * 12).join end end |
#paper_header_prefix(taxon_name, options) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 71 def paper_header_prefix(taxon_name, ) r = nil if [:nest_rank_headers] if taxon_name.type == 'Combination' r = :combination elsif taxon_name.is_species_rank? r = :species elsif taxon_name.is_genus_rank? r = :genus elsif taxon_name.is_family_rank? r = :family end end case r when :species '===== ' when :genus '==== ' else # family, or nest rank is false '=== ' end end |
#paper_history_author_year(taxon_name, citation) ⇒ String
Returns the name, or citation author year, prioritized by original/new with punctuation.
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 207 def (taxon_name, citation) return 'Source is verbatim, requires parsing' if citation&.source&.type == 'Source::Verbatim' a = (taxon_name) return str = ' ' + a unless a.nil? # return nil if str.blank? # # if citation # a = history_author_year_tag(taxon_name) # b = source_author_year_tag(citation.source) # end # # s # if citation.blank? || a != b # content_tag(:span, ' ' + str, class: [:history_author_year]) # else # content_tag(:em, ' ') + link_to(content_tag(:span, str, title: citation.source.cached, class: 'history__pages'), send(:nomenclature_by_source_task_path, source_id: citation.source.id) ) # end # str.blank? ? nil : # content_tag(:span, ' ' + str, class: [:history_author_year]) end |
#paper_history_author_year_tag(taxon_name) ⇒ Object
# @return [String, nil]
# variably return the author year for taxon name in question
# !! NO span, is used in comparison !!
234 235 236 237 238 239 240 241 242 243 244 245 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 234 def (taxon_name) return nil if taxon_name.nil? || taxon_name..nil? body = case taxon_name.type when 'Combination' (taxon_name) when 'Protonym' (taxon_name) else 'HYBRID NOT YET HANDLED' end end |
#paper_history_in_taxon_name(t, c, i) ⇒ Object
# @return [String, nil]
# return the citation author/year if differeing from the taxon name author year
273 274 275 276 277 278 279 280 281 282 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 273 def paper_history_in_taxon_name(t, c, i) if c a = (t) # TODO: probably label b = (c.source) if a != b || i.from_relationship? ' in ' + b end end end |
#paper_history_other_name(catalog_item, reference_taxon_name) ⇒ String?
Returns a parenthesized line item containing relationship and related name.
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 286 def paper_history_other_name(catalog_item, reference_taxon_name) if catalog_item.from_relationship? other_str = nil if catalog_item.other_name == reference_taxon_name other_str = full_original_taxon_name_tag(catalog_item.other_name) else other_str = [ original_taxon_name_tag(catalog_item.other_name) || 'MISSING', ((catalog_item.other_name) || 'MISSING') ].join(' ') end " (#{catalog_item.object.subject_status_tag} #{other_str})".html_safe end end |
#paper_history_statuses(nomenclature_catalog_entry_item) ⇒ Object
# @return [String, nil]
# A brief summary of the validity of the name (e.g. 'Valid')
# ... think this has to be refined, it doesn't quite make sense to show multiple status per relationship
190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 190 def paper_history_statuses(nomenclature_catalog_entry_item) i = nomenclature_catalog_entry_item s = i.base_object.taxon_name_classifications_for_statuses return nil if (s.empty? || !i.is_first) # is_subsequent? return nil if i.from_relationship? (' (' + s.collect{|tnc| tnc.classification_label + (tnc.citations.load.any? ? (' in ' + citations_tag(tnc)).html_safe : '') }.join('; ') ).html_safe + ')' end |
#paper_history_subject_original_citation(catalog_item) ⇒ Object
# @return [String, nil]
# the taxon name author year for the citation in question
# if the same as the author/year for the catalog_item taxon name then this
# only renders the pages in that citation
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 251 def paper_history_subject_original_citation(catalog_item) return nil if !catalog_item.from_relationship? || catalog_item.object.subject_taxon_name.origin_citation.blank? return nil if catalog_item.from_relationship? t = catalog_item.object.subject_taxon_name c = t.origin_citation a = (t) b = (c.source) body = [ (a != b ? (c.source) : nil) #, #history_pages(c) ].compact.join.html_safe if body.present? ': ' + body end # content_tag(:span, body, class: :history__subject_original_citation) unless body.blank? end |
#paper_history_taxon_name(taxon_name, r, c, target = nil) ⇒ Object
183 184 185 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 183 def paper_history_taxon_name(taxon_name, r, c, target = nil) original_taxon_name_tag(taxon_name) end |
#paper_history_type_material(entry_item) ⇒ Object
TODO: always displayed inline, consider target
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 112 def paper_history_type_material(entry_item) return nil if entry_item.object_class != 'Protonym' || !entry_item.is_first # is_subsequent? # Species type if entry_item.object.is_species_rank? types = entry_item.object.get_primary_type if types.any? return types.collect{|t| type_material_catalog_label(t)}.join('. ') else return nil end else if type_taxon_name_relationship = entry_item.base_object&.type_taxon_name_relationship str = citations_tag(type_taxon_name_relationship) [ ' ' + type_taxon_name_relationship_label(entry_item.base_object.type_taxon_name_relationship), (type_taxon_name_relationship.citations&.load&.any? ? ' in ' : nil), str ].compact.join.html_safe else nil end end end |
#paper_line_tag(nomenclature_catalog_entry_item, reference_taxon_name, target = :browse_nomenclature_task_path) ⇒ Object
TODO: rename reference_taxon_name
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 162 def paper_line_tag(nomenclature_catalog_entry_item, reference_taxon_name, target = :browse_nomenclature_task_path) i = nomenclature_catalog_entry_item t = i.base_object c = i.citation r = reference_taxon_name [ paper_history_taxon_name(t, r, c, target), # the subject, or protonym (t, c), ## author year of the subject, or protonym paper_history_subject_original_citation(i), ## paper_history_other_name(i, r), # The TaxonNameRelaltionship paper_history_in_taxon_name(t, c, i), ## citation for related name paper_history_pages(c), ## pages for citation of related name paper_history_statuses(i), # TaxonNameClassification summary # history_citation_notes(c), # Notes on the citation paper_history_topics(c), # Topics on the citation # history_type_material(i), # TODO: could still be OK here ].compact.join.html_safe end |
#paper_repositories(entry_item) ⇒ Array
Returns of [acronym, name] pairs.
97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 97 def paper_repositories(entry_item) return nil if entry_item.object_class != 'Protonym' || !entry_item.is_first || !entry_item.object.is_species_rank? types = entry_item.object.get_primary_type repositories = [] if types.any? types.each do |t| if r = t.collection_object.repository repositories.push [r.acronym, r.name] end end end repositories.uniq end |
#recursive_catalog_tag(taxon_name, data = { body: '', sources: [], supplementary_distribution: ::Catalog::Distribution::Entry.new([]), repositories: [], options: OPTIONS}, depth = 0) ⇒ Hash
The body format is “chronological”, i.e. each citation
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 28 def recursive_catalog_tag(taxon_name, data = { body: '', sources: [], supplementary_distribution: ::Catalog::Distribution::Entry.new([]), repositories: [], options: OPTIONS}, depth = 0 ) data[:body] << [ paper_header_prefix(taxon_name, data[:options]), full_taxon_name_tag(taxon_name), "\n\n"].join cat = ::Catalog::Nomenclature::Entry.new(taxon_name) data[:sources].push(cat.sources) # type of primary name # if t = paper_history_type_material(c) # body << [depth_string, 'Type: ', t].join.html_safe + tag.br # end # synonymy cat.ordered_by_nomenclature_date.each do |c| data[:body] << [ paper_catalog_li_tag(c, cat.object, :browse_nomenclature_task_path), "\n\n"].join.html_safe if t = paper_history_type_material(c) data[:body] << ['[.type]**Type:** ', t, "\n\n"].join if r = paper_repositories(c) data[:repositories].push r end end end # distribution is only calculated for species level here!! d = paper_distribution_entry(taxon_name) if d && d.items.any? data[:body] << ['[.distribution]**Distribution:** ', d.to_s, "\n\n"].join data[:supplementary_distribution].items += d.items end data[:body] << "\n" taxon_name.children.that_is_valid.order(:cached).each do |t| recursive_catalog_tag(t, data, depth + 1) end data end |
#recursive_catalog_tag2(taxon_name, body = '', depth = 0) ⇒ Object
!! Unused Scaffold by by unique synonyms
139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'app/helpers/taxon_names/paper_catalog_helper.rb', line 139 def recursive_catalog_tag2(taxon_name, body = '', depth = 0) body << '== ' + full_taxon_name_tag(taxon_name) + '<br>'.html_safe taxon_name.children.that_is_valid.order(:cached).each do |t| t.children.that_is_invalid.order(:cached).each do |i| # body << [' ' * (depth + 3), '= '].join.html_safe + full_original_taxon_name_tag(i) + '<br>'.html_safe body << '=== ' + (full_original_taxon_name_tag(i) + "\n").html_safe end recursive_catalog_tag(t, body, depth + 1) end body.html_safe end |