2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 17:10:30 +00:00
|
|
|
module RoutingHelper
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include Rails.application.routes.url_helpers
|
2016-09-04 12:04:26 +00:00
|
|
|
include ActionView::Helpers::AssetTagHelper
|
2018-01-04 14:36:55 +00:00
|
|
|
include Webpacker::Helper
|
2016-02-22 17:10:30 +00:00
|
|
|
|
|
|
|
included do
|
|
|
|
def default_url_options
|
|
|
|
ActionMailer::Base.default_url_options
|
|
|
|
end
|
|
|
|
end
|
2016-09-04 12:04:26 +00:00
|
|
|
|
2017-12-06 10:41:57 +00:00
|
|
|
def full_asset_url(source, **options)
|
2020-01-11 20:38:02 +00:00
|
|
|
source = ActionController::Base.helpers.asset_url(source, **options) unless use_storage?
|
2017-08-21 10:42:16 +00:00
|
|
|
|
|
|
|
URI.join(root_url, source).to_s
|
2016-09-04 12:04:26 +00:00
|
|
|
end
|
2017-09-05 21:17:06 +00:00
|
|
|
|
2018-01-04 14:36:55 +00:00
|
|
|
def full_pack_url(source, **options)
|
2020-01-11 20:38:02 +00:00
|
|
|
full_asset_url(asset_pack_path(source, **options))
|
2018-01-04 14:36:55 +00:00
|
|
|
end
|
|
|
|
|
2017-09-05 21:17:06 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def use_storage?
|
|
|
|
Rails.configuration.x.use_s3 || Rails.configuration.x.use_swift
|
|
|
|
end
|
2016-02-22 17:10:30 +00:00
|
|
|
end
|