maxencebeno / webpack-encore-bundle
Integration with your Symfony app & Webpack Encore!
Installs: 69
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 83
Type:symfony-bundle
Requires
- php: ^7.1.3
- symfony/asset: ^3.4 || ^4.0 || ^5.0
- symfony/config: ^3.4 || ^4.0 || ^5.0
- symfony/dependency-injection: ^3.4 || ^4.0 || ^5.0
- symfony/http-kernel: ^3.4 || ^4.0 || ^5.0
- symfony/service-contracts: ^1.0 || ^2.0
Requires (Dev)
- symfony/framework-bundle: ^3.4 || ^4.0 || ^5.0
- symfony/phpunit-bridge: ^4.3.5 || ^5.0
- symfony/twig-bundle: ^3.4 || ^4.0 || ^5.0
- symfony/web-link: ^3.4 || ^4.0 || ^5.0
This package is auto-updated.
Last update: 2024-11-22 22:39:51 UTC
README
This bundle allows you to use the splitEntryChunks()
feature
from Webpack Encore
by reading an entrypoints.json
file and helping you render all of
the dynamic script
and link
tags needed.
Install the bundle with:
composer require symfony/webpack-encore-bundle
Configuration
If you're using Symfony Flex, you're done! The recipe will
pre-configure everything you need in the config/packages/webpack_encore.yaml
file:
# config/packages/webpack_encore.yaml webpack_encore: # The path where Encore is building the assets - i.e. Encore.setOutputPath() output_path: '%kernel.project_dir%/public/build' # If multiple builds are defined (as shown below), you can disable the default build: # output_path: false # if using Encore.enableIntegrityHashes() and need the crossorigin attribute (default: false, or use 'anonymous' or 'use-credentials') # crossorigin: 'anonymous' # preload all rendered script and link tags automatically via the http2 Link header # preload: true # Throw an exception if the entrypoints.json file is missing or an entry is missing from the data # strict_mode: false # if you have multiple builds: # builds: # pass "frontend" as the 3rg arg to the Twig functions # {{ encore_entry_script_tags('entry1', null, 'frontend') }} # frontend: '%kernel.project_dir%/public/frontend/build' # Cache the entrypoints.json (rebuild Symfony's cache when entrypoints.json changes) # Available in version 1.2 # Put in config/packages/prod/webpack_encore.yaml # cache: true
Usage
The "Split Chunks" functionality in Webpack Encore is enabled by default with the recipe if you install this bundle using Symfony Flex. Otherwise, enable it manually:
// webpack.config.js
// ...
.setOutputPath('public/build/')
.setPublicPath('/build')
.setManifestKeyPrefix('build/')
.addEntry('entry1', './assets/some_file.js')
+ .splitEntryChunks()
// ...
When you enable splitEntryChunks()
, instead of just needing 1 script tag
for entry1.js
and 1 link tag for entry1.css
, you may now need multiple
script and link tags. This is because Webpack "splits" your files
into smaller pieces for greater optimization.
To help with this, Encore writes an entrypoints.json
file that contains
all of the files needed for each "entry".
For example, to render all of the script
and link
tags for a specific
"entry" (e.g. entry1
), you can:
{# any template or base layout where you need to include a JavaScript entry #} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('entry1') }} {% endblock %} {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('entry1') }} {% endblock %}
Assuming that entry1
required two files to be included - build/vendor~entry1~entry2.js
and build/entry1.js
, then encore_entry_script_tags()
is equivalent to:
<script src="{{ asset('build/vendor~entry1~entry2.js') }}"></script> <script src="{{ asset('build/entry1.js') }}"></script>
If you want more control, you can use the encore_entry_js_files()
and
encore_entry_css_files()
methods to get the list of files needed, then
loop and create the script
and link
tags manually.
Rendering Multiple Times in a Request (e.g. to Generate a PDF)
When you render your script or link tags, the bundle is smart enough
not to repeat the same JavaScript or CSS file within the same request.
This prevents you from having duplicate <link>
or <script>
tags
if you render multiple entries that both rely on the same file.
In some cases, however, you may want to render the script & link tags for the same entry multiple times in a request. For example, if you render multiple Twig templates to create multiple PDF files during a single request.
In that case, before each render, you'll need to "reset" the internal cache so that the bundle re-renders CSS or JS files that it previously rendered. For example, in a controller:
// src/Controller/SomeController.php use Symfony\WebpackEncoreBundle\Asset\EntrypointLookupInterface; class SomeController { public function index(EntrypointLookupInterface $entrypointLookup) { $entrypointLookup->reset(); // render a template $entrypointLookup->reset(); // render another template // ... } }
If you have multiple builds, you can also autowire
Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollectionInterface
and use it to get the EntrypointLookupInterface
object for any build.