Fix backend preview rendering for video CE
The ContentDataProcessor got a constructor argument. We migrated to proper DI to not care.
This commit is contained in:
parent
7d2b8e8b07
commit
def2aabcad
3 changed files with 30 additions and 33 deletions
|
@ -29,6 +29,14 @@ use TYPO3\CMS\Frontend\DataProcessing\FilesProcessor;
|
||||||
|
|
||||||
class Video extends StandardContentPreviewRenderer
|
class Video extends StandardContentPreviewRenderer
|
||||||
{
|
{
|
||||||
|
private ContentDataProcessor $contentDataProcessor;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
ContentDataProcessor $contentDataProcessor
|
||||||
|
) {
|
||||||
|
$this->contentDataProcessor = $contentDataProcessor;
|
||||||
|
}
|
||||||
|
|
||||||
public function renderPageModulePreviewContent(GridColumnItem $item): string
|
public function renderPageModulePreviewContent(GridColumnItem $item): string
|
||||||
{
|
{
|
||||||
$record = $item->getRecord();
|
$record = $item->getRecord();
|
||||||
|
@ -36,7 +44,7 @@ class Video extends StandardContentPreviewRenderer
|
||||||
$contentObjectRenderer = new ContentObjectRenderer();
|
$contentObjectRenderer = new ContentObjectRenderer();
|
||||||
$contentObjectRenderer->start($record, 'tt_content');
|
$contentObjectRenderer->start($record, 'tt_content');
|
||||||
|
|
||||||
$record = (new ContentDataProcessor())->process($contentObjectRenderer, [
|
$record = $this->contentDataProcessor->process($contentObjectRenderer, [
|
||||||
'dataProcessing.' => [
|
'dataProcessing.' => [
|
||||||
'10' => FilesProcessor::class,
|
'10' => FilesProcessor::class,
|
||||||
'10.' => [
|
'10.' => [
|
||||||
|
|
|
@ -21,6 +21,9 @@ services:
|
||||||
DanielSiepmann\DsSite\Frontend\RssFeed\XmlSitemapRenderer:
|
DanielSiepmann\DsSite\Frontend\RssFeed\XmlSitemapRenderer:
|
||||||
public: true
|
public: true
|
||||||
|
|
||||||
|
DanielSiepmann\DsSite\Backend\PreviewRenderer\Video:
|
||||||
|
public: true
|
||||||
|
|
||||||
DanielSiepmann\DsSite\Frontend\DataProcessing\CategoriesCounts:
|
DanielSiepmann\DsSite\Frontend\DataProcessing\CategoriesCounts:
|
||||||
public: true
|
public: true
|
||||||
arguments:
|
arguments:
|
||||||
|
|
|
@ -1,41 +1,27 @@
|
||||||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||||
xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
|
xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
|
||||||
data-namespace-typo3-fluid="true">
|
data-namespace-typo3-fluid="true">
|
||||||
<a href="{be:uri.editRecord(
|
<f:for each="{videos}" as="video">
|
||||||
uid: uid,
|
<figure>
|
||||||
table: 'tt_content'
|
<video controls {f:if(condition: video.properties.poster.publicUrl, then: 'poster="{video.properties.poster.publicUrl}"')}>
|
||||||
)}">
|
<source src="{video.publicUrl}" type="video/mp4">
|
||||||
<f:for each="{videos}" as="video">
|
</video>
|
||||||
<figure>
|
<figcaption>
|
||||||
<video controls preload="metadata">
|
<a href="{be:uri.editRecord(
|
||||||
<source src="/{video.publicUrl}" type="video/mp4">
|
uid: uid,
|
||||||
</video>
|
table: 'tt_content'
|
||||||
<figcaption>
|
)}">
|
||||||
<p>Video v{video.originalFile.uid}: {video.title}</p>
|
|
||||||
<p>
|
<p>
|
||||||
|
Video v{video.originalFile.uid}: {video.title}<br>
|
||||||
|
Size: {video.size -> f:format.bytes(decimals: 2)}
|
||||||
<f:if condition="{video.properties.youtube}">
|
<f:if condition="{video.properties.youtube}">
|
||||||
<f:then>
|
<br>
|
||||||
The Video is available on YouTube: <f:link.typolink parameter="https://www.youtube.com/watch?v=EZkwnqb-4vk" target="_blank">https://www.youtube.com/watch?v={video.properties.youtube}</f:link.typolink>.
|
YouTube: {video.properties.youtube}
|
||||||
</f:then>
|
|
||||||
<f:else>
|
|
||||||
The Video is not available on YouTube
|
|
||||||
</f:else>
|
|
||||||
</f:if>
|
</f:if>
|
||||||
</p>
|
</p>
|
||||||
<p>{video.description -> f:format.nl2br()}</p>
|
<p>{video.description -> f:format.nl2br()}</p>
|
||||||
|
</a>
|
||||||
<p>
|
</figcaption>
|
||||||
<f:if condition="{video.properties.poster}">
|
</figure>
|
||||||
<f:then>
|
</f:for>
|
||||||
<f:image image="{video.properties.poster}" height="210" width="375" />
|
|
||||||
</f:then>
|
|
||||||
<f:else>
|
|
||||||
No poster configured.
|
|
||||||
</f:else>
|
|
||||||
</f:if>
|
|
||||||
</p>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
</f:for>
|
|
||||||
</a>
|
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue