osunyorg/admin

View on GitHub
app/models/communication/block/with_heading_ranks.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Communication::Block::WithHeadingRanks
  extend ActiveSupport::Concern

  DEFAULT_HEADING_LEVEL = 2 # h1 is the page title

  def heading_rank_self
    title.present? ? heading_rank_base : DEFAULT_HEADING_LEVEL
  end

  def heading_rank_children
    return false unless heading_children?
    heading_rank_self ? heading_rank_self + 1 : heading_rank_base
  end

  def heading_children?
    template.children && template.children.any?
  end

  protected

  def heading_rank_base
    block_title.present? ? block_title.heading_rank_self + 1 : DEFAULT_HEADING_LEVEL
  end

  # A block can belong to a title, meaning it is below the title
  def block_title
    return if template_title?
    about.blocks
          .template_title # We are looking for title blocks
          .where('position < ?', position) # Before this block
          .order(position: :desc)
          .limit(1)
          .first
  end
end