netzbewegung/nb-headless-content-blocks
Composer 安装命令:
composer require netzbewegung/nb-headless-content-blocks
包简介
Connects together EXT:headless and EXT:content_block
README 文档
README
TYPO3 Extension EXT:nb_headless_content_blocks
Connects together EXT:headless (friendsoftypo3/headless) and EXT:content_blocks (friendsoftypo3/content-blocks)
TYPO3 Installation
Install extension using composer
composer require netzbewegung/nb_headless_content_blocks
and then, include Site Set "Headless Content Blocks", and you are ready to go.
Features
- Converts all complex objects into an array without extra configuration
- Richtext fields are automaticly converted via
parseFunc($value, null, '< lib.parseFunc_RTE') - Additional thumbnails can be created via headless.php per Content Block
- Support for EXT:container
Custom Configuration per Content Block Type
Create headless.php inside each Content Block.
your_extension/ContentBlocks/ContentElements/your-content-block-element/headless.php
<?php
use TYPO3\CMS\Fluid\ViewHelpers\Uri\ImageViewHelper;
$generateThumbnail = function (array $arguments): string {
if (array_key_exists('absolute', $arguments) === false) {
$arguments['absolute'] = true;
}
$imageViewHelper = new ImageViewHelper();
foreach ($imageViewHelper->prepareArguments() as $argumentKey => $argumentDefinition) {
if (array_key_exists($argumentKey, $arguments) === false) {
$arguments[$argumentKey] = $argumentDefinition->getDefaultValue();
}
}
$imageViewHelper->setArguments($arguments);
return $imageViewHelper->initializeArgumentsAndRender();
};
foreach ($data['items'] ?? [] as $itemKey => $item) {
if ($item['image']) {
$image = $item['image'];
$data['items'][$itemKey]['image']['thumbnails'] = [
'mobile' => $generateThumbnail(['src' => $image['id'], 'treatIdAsReference' => true, 'width' => 320]),
'desktop' => $generateThumbnail(['src' => $image['id'], 'treatIdAsReference' => true, 'width' => 800]),
];
}
}
return $data;
Additional Data via Sub DataProcessing
tt_content.vendor_yourcontentblockelement.fields.data.dataProcessing.10 {
dataProcessing {
10 = menu
10 {
levels = 2
as = navigation
}
}
}
Custom Configuration per FieldType/FieldName/TCA-Configuration in ArrayRecursiveToArray via PSR-14 Event
Create a PSR-14 Event Listener in your extension.
Use $event->setProcessedValue($yourModifiedValueForThisField) to handle the value for specific fields.
Any unhandled fields will fall back to the default processing.
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\EventListener;
use Netzbewegung\NbHeadlessContentBlocks\Event\ModifyArrayRecursiveToArrayEvent;
use TYPO3\CMS\Core\Attribute\AsEventListener;
#[AsEventListener()]
final class MyCustomListener {
public function __invoke(ModifyArrayRecursiveToArrayEvent $event): void {
// Example: Custom handling by field name (tt_content.tx_my_vendor_field_name)
if ($event->getKey() === 'tx_my_vendor_field_name') {
$value = $event->getValue();
// Do your custom processing here
$processedValue = strtoupper($value);
// $processedValue The value which is returned for this field in json response
$event->setProcessedValue($processedValue);
}
// Example: Custom handling for all text fields
if ($event->getTcaFieldDefinition()->fieldType instanceof \TYPO3\CMS\ContentBlocks\FieldType\TextFieldType) {
$value = $event->getValue();
// Do your custom processing here
$processedValue = strtoupper($value);
// $processedValue The value which is returned for this field in json response
$event->setProcessedValue($processedValue);
}
// Example: Custom handling for a specific field which have custom field type
if ($event->getTcaFieldDefinition()->fieldType instanceof \MyVendor\MyExtension\MyCustomFieldType) {
$value = $event->getValue();
// Do your custom processing here
$processedValue = strtoupper($value);
// $processedValue The value which is returned for this field in json response
$event->setProcessedValue($processedValue);
}
}
}
Custom Configuration for EXT:container (b13/container)
TypoScript Setup
left/right parallel to data
lib.content.select.where = colPos NOT IN (201, 202)
tt_content.b13_2_columns_container =< lib.contentElement
tt_content.b13_2_columns_container {
fields {
left = TEXT
left {
dataProcessing {
10 = nb-container-json
10 {
colPos = 201
as = left
}
}
}
right = TEXT
right {
dataProcessing {
10 = nb-container-json
10 {
colPos = 202
as = right
}
}
}
}
}
left/right inside data (via Sub DataProcessing)
lib.content.select.where = colPos NOT IN (201, 202)
tt_content.b13_2_columns_container.fields.data.dataProcessing.10 {
dataProcessing {
10 = nb-container-json
10 {
colPos = 201
as = left
}
20 = nb-container-json
20 {
colPos = 202
as = right
}
}
}
netzbewegung/nb-headless-content-blocks 适用场景与选型建议
netzbewegung/nb-headless-content-blocks 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.55k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2024 年 12 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「json」 「headless」 「typo3」 「content_block」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 netzbewegung/nb-headless-content-blocks 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 netzbewegung/nb-headless-content-blocks 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 netzbewegung/nb-headless-content-blocks 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Kinikit - PHP Application development framework MVC component
This extension provides integration with solr to output content from TYPO3 in JSON format.
Set Links with a specific language parameter
Instrument headless chrome/chromium instances from php5.6
ext-json wrapper with sane defaults
A package to cast json fields, each sub-keys is castable
统计信息
- 总下载量: 3.55k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 23
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2024-12-09