GithubHelp home page GithubHelp logo

sebobo / shel.criticalcss Goto Github PK

View Code? Open in Web Editor NEW
10.0 4.0 3.0 83 KB

Allow adding and combining inline (scoped) styles in Neos CMS

License: GNU General Public License v3.0

PHP 99.91% CSS 0.09%
neos-cms inline-styles critical-css hacktoberfest

shel.criticalcss's Introduction

Adding and combining inline styles for critical CSS in Neos CMS

Latest Stable Version License Travis Build Status StyleCI

This package provides several helpers to allow adding inline styles to Fusion components in Neos CMS and combining them locally or into the head of a html document. The styles are automatically scoped by default and can be defined dynamically like any other Fusion object.

CSS classes are dynamically generated based on the hash of the defined styles.

This allows you to keep styles together with a component in one file and also be able to override them. A good use case for this is to define inline styles for your critical CSS that should be loaded instantly when the site is shown and defer loading other styles that are not needed immediately.

Use cases:

  • Define critical CSS that should be available for "above the fold" content.
  • Define dynamic CSS variables for themed websites.
  • Include CSS with reusable components.
  • Have a minimal set of CSS for each individual page.

Supported:

  • Scoped styles
  • Style nesting
  • Global styles with specific selectors
  • Automatic style merging into document head via http component
  • @media and @supports queries

This package doesn't require any specific browser features.

The inspiration for this package came from SvelteJS and JSS.

Table of contents

Installation

Run this in your site package:

composer require --no-update shel/critical-css

Then run composer update in your project root.

Usage

Adding inline styles

Given the following example component:

prototype(My.Site:Component.Blockquote) < prototype(Neos.Fusion:Component) {
    text = ''
    
    renderer = afx`
        <blockquote>{props.text}</blockquote>
    `
    
    @process.styles = Shel.CriticalCSS:Styles {
        font-size = '2em'
        font-family = 'Comic Sans'
        padding = '.5rem'
    }
}

The resulting HTML will look similar to this:

<style data-inline>.style--cd7c679e3d{font-size:2m;font-family:Comic Sans;padding:.5rem;}</style>
<blockquote class="style--cd7c679e3d">My text</blockquote>

This will already work but you will have a lot of style tags this way and possible duplicates.

This package automatically applies a "style collector" to the document which collects all these inline styles. So all style tags will first collected, then merged into one list, duplicates removed and inserted into the HTML head as one style tag.

Be careful when applying the styles not only to one tag but to a group of tags. Then it will automatically generate a wrapping tag similar to how the Augmenter in Fusion works.

Nesting styles

Again a similar example but with nested styles

prototype(My.Site:Component.Blockquote) < prototype(Neos.Fusion:Component) {
    text = ''
    link = ''
    
    renderer = afx`
        <blockquote>
            {props.text} 
            <a href={props.link}>Read more</a>
        </blockquote>
    `
    
    @process.styles = Shel.CriticalCSS:Styles {
        font-size = '2em'
        font-family = 'Comic Sans'
        padding = '.5rem'
        a {
            color = 'blue'
            text-decoration = 'underline'
        }
    }
}           

When nesting you can either use Neos.Fusion:DataStructure or simple nesting with braces like in the example.

The resulting HTML will look similar to this:

<style data-inline>.style--cd7c679e3d{font-size:2m;font-family:Comic Sans;padding:.5rem;}.style--cd7c679e3d a{color:blue;text-decoration:underline;}</style>
<blockquote class="style--cd7c679e3d">My text</blockquote>

Using multiple styles in one component

To style several parts of a component you can do the following:

prototype(My.Site:Component.Complex) < prototype(Neos.Fusion:Component) {
    headline = ''
    text = ''
    footer = ''
    
    renderer = afx`
        <section>
            <header>
                <Shel.CriticalCSS:Styles @path="@process.styles"
                    font-weight="bold"
                    color="black"
                />
                {props.headline}
            </header>
            
            <div>{props.text}</div>
            
            <footer>
                <Shel.CriticalCSS:Styles @path="@process.styles"
                    font-size="80%"
                    color="gray"
                />
                {props.footer}
            </footer>
        </section>
    `
    
    @process.styles = Shel.CriticalCSS:Styles {
        padding = '.5rem'
        div {
            margin = '1rem 0'
        }
    }
}    

This will result in three style tags with three different css classes. All of them will be picked up by the collector.

Using the shorthand Fusion helper

Somewhere in your package define the short prototype:

prototype(CSS:Style) < prototype(Shel.CriticalCSS:Styles)

(Note the needed colon: CSS:Style. Fusion doesn't mind, but afx would convert CssStyle to a Neos.Fusion:Tag. Afx needs a way to differentiate.)

Then you can write the previous example like this:

prototype(My.Site:Component.Complex) < prototype(Neos.Fusion:Component) {
    headline = ''
    text = ''
    footer = ''
    
    renderer = afx`
        <section>
            <header>
                <CSS:Style @path="@process.styles"
                    font-weight="bold"
                    color="black"
                />
                {props.headline}
            </header>
            
            <div>{props.text}</div>
            
            <footer>
                <CSS:Style @path="@process.styles"
                    font-size="80%"
                    color="gray"
                />
                {props.footer}
            </footer>
        </section>
    `
    
    @process.styles = CSS:Style {
        padding = '.5rem'   
        div {
            margin = '1rem 0'
        }
    }
}   

Modifying styles with props

This method allows you to modify styles easily by using props:

prototype(My.Site:Component.TextBanner) < prototype(Neos.Fusion:Component) {
    text = ''
    backgroundColor = '#4444ff'        
    
    renderer = afx`
        <div>
            <Shel.CriticalCSS:Styles @path="@process.styles"
                background-color={props.backgroundColor}
            />
            {props.text}
        </div>
    `
}   

Remember you can only access the props when the styles object is applied somewhere inside the renderer. You can do this either via [email protected] or like in the example code.

Usage with CSS variables

You can also easily define global or local CSS variables this way:

prototype(My.Site:Document.Page) < prototype(Neos.Neos:Page) {
    body {
        content {
            main = Neos.Neos:PrimaryContent {
                nodePath = 'main'
                
                @process.styles = Shel.CriticalCSS:Styles {
                    --theme-background = ${q(site).property('themeBackground')}
                    --theme-color = ${q(site).property('themeColor')}
                }
            }
        }
    }
}

And when you then have a nested component like this:

prototype(My.Site:Component.Blockquote) < prototype(Neos.Fusion:Component) {
    text = ''
    
    renderer = afx`
        <blockquote>{props.text}</blockquote>
    `
    
    @process.styles = Shel.CriticalCSS:Styles {
        color = 'var(--theme-color)'
    }
}

I can recommend to use my colorpicker for Neos CMS when allowing an editor to define a theme and then put those values into CSS variables.

Custom selectors

It's also possible to use custom selectors to target the html, body or all tags *:

prototype(Neos.Neos:Page) {
    body {                  
        @process.globalStyles = Neos.Fusion:Join {
            all = Shel.CriticalCSS:Styles {
                selector = '*'
                box-sizing = 'border-box'
            }
            body = Shel.CriticalCSS:Styles {
                selector = 'body'
                background-color = 'blue'
            }
        }
    }
}

Insert styles from a file

The package has a Fusion helper to insert styles inline from a file. Do scoping is done, but the style tag will be picked up by the style collector.

prototype(My.Site:Component.Test) < prototype(Neos.Fusion:Component) {
    text = ''
    
    renderer = afx`
        <Shel.CriticalCSS:LoadStyles path="resource://My.Site/Private/Fusion/Components/Test/style.css"/>        
        <div>{props.text}</div>
    `
}

Also works as process:

prototype(My.Site:Component.Test) < prototype(Neos.Fusion:Component) {
    text = ''
    
    renderer = afx`    
        <div>{props.text}</div>
    `
    
    @process.addStyles = Shel.CriticalCSS:LoadStyles {
        path="resource://My.Site/Private/Fusion/Components/Test/style.css"
    }    
}

Other examples

You can also take a look at the functional test fixtures to see the verified use cases.

Modifying the styles collector behaviour

By default the collector is applied as http middleware at the end of the request chain. It will merge all inline styles generated with this package into one style tag in the html head. Duplicates are removed during this process. You can disable this behaviour with this setting:

Shel:
    CriticalCSS:
        mergeStyles:
            enabled: false

Fusion based style collector

This package contains a second collection method via Fusion. The Shel.CriticalCSS:StyleCollector helper can be used in a similar way as process to merge all inline style tags into one. When doing this inside the DOM the style tag will be prepended wherever it is applied to. When applying it to the whole document, it will also merge the styles into the html head.

This method can be helpful in certain cases but has issues when the contained components have their own cache configurations. This is why the http component is preferred to solve this on the document level. But if for some reason you cannot use the default, this might help.

Limitations

Inserting new elements in the Neos UI

When working the backend the styles collector will not automatically pick up style blocks from newly inserted elements. This might cause some issues when the added elements are somehow treated with Javascript like in Sliders.

Caching

As explained in the styles collector section, the Fusion based collector has issues with cached components that have styles applied to them. This can result in styles missing from the document.

shel.criticalcss's People

Contributors

klfman avatar mhsdesign avatar sebobo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

shel.criticalcss's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.