39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
module ApplicationHelper
|
|
|
|
def home_page?
|
|
return false if user_signed_in?
|
|
# Using path because fullpath yields false negatives since it contains
|
|
# parameters too
|
|
request.path == '/'
|
|
end
|
|
|
|
def opendata_page?
|
|
request.path == '/opendata'
|
|
end
|
|
|
|
# if current path is /debates current_path_with_query_params(foo: 'bar') returns /debates?foo=bar
|
|
# notice: if query_params have a param which also exist in current path, it "overrides" (query_params is merged last)
|
|
def current_path_with_query_params(query_parameters)
|
|
url_for(request.query_parameters.merge(query_parameters))
|
|
end
|
|
|
|
def markdown(text)
|
|
# See https://github.com/vmg/redcarpet for options
|
|
render_options = {
|
|
filter_html: false,
|
|
hard_wrap: true,
|
|
link_attributes: { target: "_blank" }
|
|
}
|
|
renderer = Redcarpet::Render::HTML.new(render_options)
|
|
extensions = {
|
|
autolink: true,
|
|
fenced_code_blocks: true,
|
|
lax_spacing: true,
|
|
no_intra_emphasis: true,
|
|
strikethrough: true,
|
|
superscript: true
|
|
}
|
|
Redcarpet::Markdown.new(renderer, extensions).render(text).html_safe
|
|
end
|
|
end
|