12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- module Blazer
- module BaseHelper
- def blazer_title(title = nil)
- if title
- content_for(:title) { title }
- else
- content_for?(:title) ? content_for(:title) : nil
- end
- end
- BLAZER_URL_REGEX = /\Ahttps?:\/\/[\S]+\z/
- BLAZER_IMAGE_EXT = %w[png jpg jpeg gif]
- def blazer_format_value(key, value)
- if value.is_a?(Integer) && !key.to_s.end_with?("id")
- number_with_delimiter(value)
- elsif value =~ BLAZER_URL_REGEX
- # see if image or link
- if Blazer.images && (key.include?("image") || BLAZER_IMAGE_EXT.include?(value.split(".").last.split("?").first.try(:downcase)))
- link_to value, target: "_blank" do
- image_tag value, referrerpolicy: "no-referrer"
- end
- else
- link_to value, value, target: "_blank"
- end
- 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
|