class Playbook::PbAdvancedTable::TableBody

def classname

def classname
  generate_classname("pb_advanced_table_body", "pb_table_tbody", separator: " ")
end

def render_row_and_children(row, column_definitions, current_depth, first_parent_child)

def render_row_and_children(row, column_definitions, current_depth, first_parent_child)
  output = ActiveSupport::SafeBuffer.new
  is_first_child_of_subrow = current_depth.positive? && first_parent_child && subrow_headers[current_depth - 1].present?
  output << pb_rails("advanced_table/table_subrow_header", props: { row: row, column_definitions: column_definitions, depth: current_depth, subrow_header: subrow_headers[current_depth - 1] }) if is_first_child_of_subrow && enable_toggle_expansion == "all"
  output << pb_rails("advanced_table/table_row", props: { id: id, row: row, column_definitions: column_definitions, depth: current_depth })
  if row[:children].present?
    output << content_tag(:div, class: "toggle-content", data: { advanced_table_content: row.object_id.to_s + id }) do
      row[:children].map do |child_row|
        render_row_and_children(child_row, column_definitions, current_depth + 1, row.children.first == child_row)
      end.join.html_safe
    end
  end
  output
end