2018-08-18 07:19:57 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-12 15:05:23 -04:00
|
|
|
module WebpackHelper
|
2018-05-03 12:59:03 -04:00
|
|
|
def webpack_bundle_tag(bundle)
|
2018-05-07 12:19:54 -04:00
|
|
|
javascript_include_tag(*webpack_entrypoint_paths(bundle))
|
2017-04-12 15:05:23 -04:00
|
|
|
end
|
|
|
|
|
2018-02-01 17:01:36 -05:00
|
|
|
def webpack_controller_bundle_tags
|
2018-04-27 14:00:00 -04:00
|
|
|
chunks = []
|
2018-02-01 17:01:36 -05:00
|
|
|
|
2018-02-02 19:14:24 -05:00
|
|
|
action = case controller.action_name
|
|
|
|
when 'create' then 'new'
|
|
|
|
when 'update' then 'edit'
|
|
|
|
else controller.action_name
|
|
|
|
end
|
|
|
|
|
|
|
|
route = [*controller.controller_path.split('/'), action].compact
|
|
|
|
|
2018-04-27 18:09:05 -04:00
|
|
|
until chunks.any? || route.empty?
|
|
|
|
entrypoint = "pages.#{route.join('.')}"
|
|
|
|
begin
|
2018-05-07 12:19:54 -04:00
|
|
|
chunks = webpack_entrypoint_paths(entrypoint, extension: 'js')
|
2018-04-27 18:09:05 -04:00
|
|
|
rescue Gitlab::Webpack::Manifest::AssetMissingError
|
|
|
|
# no bundle exists for this path
|
|
|
|
end
|
|
|
|
route.pop
|
|
|
|
end
|
|
|
|
|
|
|
|
if chunks.empty?
|
2018-05-07 12:19:54 -04:00
|
|
|
chunks = webpack_entrypoint_paths("default", extension: 'js')
|
2018-02-01 17:01:36 -05:00
|
|
|
end
|
|
|
|
|
2018-04-27 14:00:00 -04:00
|
|
|
javascript_include_tag(*chunks)
|
2018-02-01 17:01:36 -05:00
|
|
|
end
|
|
|
|
|
2018-05-07 12:19:54 -04:00
|
|
|
def webpack_entrypoint_paths(source, extension: nil, exclude_duplicates: true)
|
2017-04-12 15:05:23 -04:00
|
|
|
return "" unless source.present?
|
|
|
|
|
2018-04-26 16:12:39 -04:00
|
|
|
paths = Gitlab::Webpack::Manifest.entrypoint_paths(source)
|
2017-04-12 15:05:23 -04:00
|
|
|
if extension
|
2017-06-28 22:57:35 -04:00
|
|
|
paths.select! { |p| p.ends_with? ".#{extension}" }
|
2017-04-12 15:05:23 -04:00
|
|
|
end
|
|
|
|
|
2018-05-03 12:59:03 -04:00
|
|
|
force_host = webpack_public_host
|
|
|
|
if force_host
|
|
|
|
paths.map! { |p| "#{force_host}#{p}" }
|
2017-06-28 22:57:35 -04:00
|
|
|
end
|
|
|
|
|
2018-05-03 16:13:35 -04:00
|
|
|
if exclude_duplicates
|
|
|
|
@used_paths ||= []
|
|
|
|
new_paths = paths - @used_paths
|
|
|
|
@used_paths += new_paths
|
|
|
|
new_paths
|
|
|
|
else
|
|
|
|
paths
|
|
|
|
end
|
2017-06-28 22:57:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def webpack_public_host
|
2017-04-12 15:05:23 -04:00
|
|
|
if Rails.env.test? && Rails.configuration.webpack.dev_server.enabled
|
|
|
|
host = Rails.configuration.webpack.dev_server.host
|
|
|
|
port = Rails.configuration.webpack.dev_server.port
|
|
|
|
protocol = Rails.configuration.webpack.dev_server.https ? 'https' : 'http'
|
2017-06-28 22:57:35 -04:00
|
|
|
"#{protocol}://#{host}:#{port}"
|
|
|
|
else
|
|
|
|
ActionController::Base.asset_host.try(:chomp, '/')
|
2017-04-12 15:05:23 -04:00
|
|
|
end
|
2017-06-28 22:57:35 -04:00
|
|
|
end
|
2017-04-12 15:05:23 -04:00
|
|
|
|
2017-06-28 22:57:35 -04:00
|
|
|
def webpack_public_path
|
2017-07-28 13:49:07 -04:00
|
|
|
relative_path = Rails.application.config.relative_url_root
|
|
|
|
webpack_path = Rails.application.config.webpack.public_path
|
|
|
|
File.join(webpack_public_host.to_s, relative_path.to_s, webpack_path.to_s, '')
|
2017-04-12 15:05:23 -04:00
|
|
|
end
|
|
|
|
end
|