I hereby claim:
- I am grebaldi on github.
- I am grebaldi (https://keybase.io/grebaldi) on keybase.
- I have a public key ASDsgGDIgp0zdpmcR66wsC8NpolZCzqrJQPTRtVYUQ6yRwo
To claim this, I am signing this object:
| <?php declare(strict_types=1); | |
| namespace Vendor\Site\Application\Helper; | |
| use Neos\Flow\Annotations as Flow; | |
| use Neos\Eel\ProtectedContextAwareInterface; | |
| use Neos\Media\Domain\Model\Asset; | |
| use Neos\Media\Domain\Repository\AssetRepository; | |
| /** | |
| * @Flow\Scope("singleton") |
| [email protected] = Neos.Fusion:Component { | |
| nodeType = 'Vendor.Site:ContentType' | |
| items = ${q(site).find('[instanceof ' + this.nodeType + ']').get()} | |
| renderer = Neos.Fusion:Collection { | |
| collection = ${props.items} | |
| itemRenderer = Neos.Fusion:Component { | |
| document = ${q(item).closest('[instanceof Neos.Neos:Document]').get(0)} | |
| title = ${q(this.document).property('title')} |
| prototype(Vendor.Site:MyComponent) < prototype(Neos.Fusion:Component) { | |
| [email protected] = Vendor.Site:DefaultValue { | |
| value = 'myValue' | |
| } | |
| } | |
| prototype(Vendor.Site:DefaultValue) { | |
| @if.noValueProvided = ${!value} | |
| } |
| /** | |
| * In Fusion | |
| */ | |
| foo = Neos.Fusion:Renderer { | |
| type = 'Vendor.Site:Foo' | |
| element { | |
| ...${myContextVariable} | |
| ...${myOtherContextvariable} | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| 'atom-text-editor[data-grammar="source typoscript2"]:not([mini])': | |
| 'tab': 'emmet:expand-abbreviation-with-tab' |
| import debugReasonForRendering from '@neos-project/debug-reason-for-rendering'; | |
| import shallowCompare from 'react-addons-shallow-compare'; | |
| @debugReasonForRendering | |
| shouldComponentUpdate(...args) { | |
| return shallowCompare(this, ...args); | |
| } |
| doctoc --gitlab --notitle --maxlevel 2 README.md |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <root> | |
| <site name="My Site" state="1" siteResourcesPackageKey="Vendor.SitePackage" siteNodeName="my-site"> | |
| <nodes formatVersion="2.0"> | |
| <node nodeName="my-site"> | |
| <variant | |
| workspace="live" | |
| nodeType="Vendor.SitePackage:Document.HomePage" | |
| sortingIndex="100" | |
| version="1" |
| #!/usr/bin/env sh | |
| node-sass Resources/Private/Sass/Main.scss | \ | |
| postcss --use autoprefixer | \ | |
| cleancss > \ | |
| Resources/Public/Styles/Main.css | |