Files
grecia/app/helpers/legislation_helper.rb
Javi Martín db97f9d08c Add and apply rubocop rules for empty lines
We were very inconsistent regarding these rules.

Personally I prefer no empty lines around blocks, clases, etc... as
recommended by the Ruby style guide [1], and they're the default values
in rubocop, so those are the settings I'm applying.

The exception is the `private` access modifier, since we were leaving
empty lines around it most of the time. That's the default rubocop rule
as well. Personally I don't have a strong preference about this one.


[1] https://rubystyle.guide/#empty-lines-around-bodies
2019-10-24 17:11:47 +02:00

51 lines
1.3 KiB
Ruby

module LegislationHelper
def format_date(date)
l(date, format: "%d %b %Y") if date
end
def format_date_for_calendar_form(date)
l(date, format: "%d/%m/%Y") if date
end
def new_legislation_proposal_link_text(process)
t("proposals.index.start_proposal")
end
def legislation_process_tabs(process)
{
"info" => edit_admin_legislation_process_path(process),
"homepage" => edit_admin_legislation_process_homepage_path(process),
"questions" => admin_legislation_process_questions_path(process),
"proposals" => admin_legislation_process_proposals_path(process),
"draft_versions" => admin_legislation_process_draft_versions_path(process),
"milestones" => admin_legislation_process_milestones_path(process)
}
end
def banner_color?
@process.background_color.present? && @process.font_color.present?
end
def default_bg_color
"#e7f2fc"
end
def default_font_color
"#222222"
end
def bg_color_or_default
@process.background_color.presence || default_bg_color
end
def font_color_or_default
@process.font_color.presence || default_font_color
end
def css_for_process_header
if banner_color?
"background: #{@process.background_color};color: #{@process.font_color};"
end
end
end