Module: WebpackHelper
- Included in:
- Gitlab::GonHelper
- Defined in:
- app/helpers/webpack_helper.rb
Instance Method Summary collapse
- #webpack_bundle_tag(bundle) ⇒ Object
- #webpack_controller_bundle_tags ⇒ Object
- #webpack_entrypoint_paths(source, extension: nil, exclude_duplicates: true) ⇒ Object
- #webpack_public_host ⇒ Object
- #webpack_public_path ⇒ Object
Instance Method Details
#webpack_bundle_tag(bundle) ⇒ Object
4 5 6 |
# File 'app/helpers/webpack_helper.rb', line 4 def webpack_bundle_tag(bundle) javascript_include_tag(*webpack_entrypoint_paths(bundle)) end |
#webpack_controller_bundle_tags ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/helpers/webpack_helper.rb', line 8 def chunks = [] 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 until chunks.any? || route.empty? entrypoint = "pages.#{route.join('.')}" begin chunks = webpack_entrypoint_paths(entrypoint, extension: 'js') rescue Gitlab::Webpack::Manifest::AssetMissingError # no bundle exists for this path end route.pop end if chunks.empty? chunks = webpack_entrypoint_paths("default", extension: 'js') end javascript_include_tag(*chunks) end |
#webpack_entrypoint_paths(source, extension: nil, exclude_duplicates: true) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'app/helpers/webpack_helper.rb', line 36 def webpack_entrypoint_paths(source, extension: nil, exclude_duplicates: true) return "" unless source.present? paths = Gitlab::Webpack::Manifest.entrypoint_paths(source) if extension paths.select! { |p| p.ends_with? ".#{extension}" } end force_host = webpack_public_host if force_host paths.map! { |p| "#{force_host}#{p}" } end if exclude_duplicates @used_paths ||= [] new_paths = paths - @used_paths @used_paths += new_paths new_paths else paths end end |
#webpack_public_host ⇒ Object
59 60 61 62 63 64 65 66 67 68 |
# File 'app/helpers/webpack_helper.rb', line 59 def webpack_public_host 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' "#{protocol}://#{host}:#{port}" else ActionController::Base.asset_host.try(:chomp, '/') end end |
#webpack_public_path ⇒ Object
70 71 72 73 74 |
# File 'app/helpers/webpack_helper.rb', line 70 def webpack_public_path 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, '') end |