Shim Library to Use it as Own RequireJS Modules¶
Attention
Deprecated since version 12.0
The RequireJS project has been discontinued and was therefore replaced by native ECMAScript v6/v11 modules in TYPO3 v12.0. The infrastructure for configuration and loading of RequireJS modules is deprecated with v12.0 and will be removed in TYPO3 v13. See RequireJS to ES6 migration.
Not all javascript libraries are compatible with RequireJS. In the rarest cases, you can adjust the library code to be AMD or UMD compatible. So you need to configure RequireJS to accept the library.
In RequireJS you can use requirejs.
to shim a library. In
TYPO3 the RequireJS config will be defined in the Page
:
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Core\Utility\PathUtility;
use TYPO3\CMS\Core\Page\PageRenderer;
$pageRenderer = GeneralUtility::makeInstance(PageRenderer::class);
$pageRenderer->addRequireJsConfiguration(
[
'paths' => [
'jquery' => 'sysext/core/Resources/Public/JavaScript/Contrib/jquery/',
'plupload' => PathUtility::getPublicResourceWebPath(
'EXT:some_extension/node_modules/plupload/js/plupload.full.min'),
],
'shim' => [
'deps' => ['jquery'],
'plupload' => ['exports' => 'plupload'],
],
]
);
In this example we configure RequireJS to use plupload. The only dependency is jquery. We already have jquery in the TYPO3 Core extension.
After the shim and export of plupload it is usable in the dependency handling:
define([
'jquery',
'plupload'
], function($, plupload) {
'use strict';
});