12345678910111213141516171819202122232425262728293031323334353637 |
- module Blazer
- module BaseHelper
- def title(title = nil)
- if title
- content_for(:title) { title }
- else
- content_for?(:title) ? content_for(:title) : nil
- end
- end
- def format_value(key, value)
- if value.is_a?(Integer) && !key.to_s.end_with?("id")
- number_with_delimiter(value)
- else
- value
- end
- end
- def blazer_maps?
- ENV["MAPBOX_ACCESS_TOKEN"].present?
- end
- JSON_ESCAPE = { '&' => '\u0026', '>' => '\u003e', '<' => '\u003c', "\u2028" => '\u2028', "\u2029" => '\u2029' }
- JSON_ESCAPE_REGEXP = /[\u2028\u2029&><]/u
- # Prior to version 4.1 of rails double quotes were inadventently removed in json_escape.
- # This adds the correct json_escape functionality to rails versions < 4.1
- def blazer_json_escape(s)
- if Rails::VERSION::STRING < "4.1"
- result = s.to_s.gsub(JSON_ESCAPE_REGEXP, JSON_ESCAPE)
- s.html_safe? ? result.html_safe : result
- else
- json_escape(s)
- end
- end
- end
- end
|