Task #48383
closedEpic #55575: Streamline JavaScript Code in the TYPO3 Backend
RequireJS does not consider correct namespace prefix
0%
Description
My extension "mapping" uses these namespace prefixes in PHP "OliverHader\Mapping" (vendor, package).
However, the requireJS implementation in the PageRenderer ignores that and adds "TYPO3\CMS" as prefix.
The behaviour shall be the same as for PHP class files - the "\TYPO3\CMS" prefix is a special case for the Core only.
Updated by Daniel Siepmann over 10 years ago
The only thing I can implement at the moment is to remove the TYPO3 vender for external extensions. But I don't have any clue how to add the vendor for JS Files as it just exists inside PHP Files.
IF someone has an idea code it, or answer, so I can get into it.
Updated by Benni Mack over 9 years ago
- Assignee set to Benni Mack
- Target version set to 7.4 (Backend)
- Sprint Focus set to Stabilization Sprint
Updated by Mathias Brodala over 9 years ago
You can manually add your prefix with the PageRenderer
hook render-preProcess
like this:
$pageRenderer->addRequireJsConfiguration([ 'paths' => [ 'Vendor/Package' => PathUtility::getRelativePath(PATH_typo3, GeneralUtility::getFileAbsFileName('EXT:package/Resources/Public/JavaScript/')), ], ]);
Updated by Markus Klein over 9 years ago
- Status changed from New to Rejected
- Assignee deleted (
Benni Mack) - Target version deleted (
7.4 (Backend)) - Complexity changed from medium to hard
- Sprint Focus deleted (
Stabilization Sprint)
This is still private API of Core. To add you own modules you need to do it like this:
$fullJsPath = 'EXT:' . $this->extKey . '/Resources/Public/JavaScript/'; $fullJsPath = GeneralUtility::getFileAbsFileName($fullJsPath); $fullJsPath = PathUtility::getRelativePath(PATH_site, $fullJsPath); $fullJsPath = $tsfe->absRefPrefix . rtrim($fullJsPath, '/'); $pageRenderer->addRequireJsConfiguration([ 'paths' => [ 'Reelworx/MyExt' => $fullJsPath ] ]); $pageRenderer->loadRequireJsModule('Reelworx/MyExt/somemodule');
Making this API really versatile is a load of work and for sure no bug!
Updated by Benni Mack over 9 years ago
- Tracker changed from Bug to Task
- Status changed from Rejected to Accepted
- Target version set to 7.5
ok. but we should "do it right" for 7.5 then.
Updated by Benni Mack about 9 years ago
- Assignee set to Benni Mack
- Target version changed from 7.5 to 7 LTS
Updated by Frank Nägler about 9 years ago
@Benni Mack I think the solution from Markus is a good example how to do it.
I think we need no change here, the default namespace is TYPO3\CMS\EXTKEY... If I need or want another prefix, I can register my own.
We don't know the VENDOR prefix, I have no idea how to resolve this VENDOR automatic.
Updated by Benni Mack about 9 years ago
- Status changed from Accepted to Closed
Is fine for now, I think that's actually quite OK.