c1 / c1-svg-viewhelpers
SVG viewhelpers - include SVGs as symbol files in TYPO3
Installs: 525
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 1
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^11 || ^12
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- helmich/typo3-typoscript-lint: 3.1.0
- nimut/testing-framework: ^6.0.1
- phpspec/prophecy: ^1.16
- phpstan/phpstan: ^1.8
- phpunit/phpunit: ^8.5.22
- roave/security-advisories: dev-master
- saschaegerer/phpstan-typo3: ^1.1
- typo3/tailor: ^1.4
This package is auto-updated.
Last update: 2024-12-06 20:04:29 UTC
README
SVG related ViewHelpers for TYPO3 Fluid.
Installation
via composer:
composer req c1/c1-svg-viewhelpers
Configuration
- Include the static TypoScript setup and constants
- Create a symbols file and CSS (or SCSS or LESS) classes, see below
- Include the generated S(CSS) or LESS files
- Configure the presets in the TypoScript constants and or setup, i.e. set plugin.tx_c1svgviewhelpers.settings.svg.symbol.presets.default to point to the generated symbol file and add more preset keys if needed. For convenience you should always keep the default key which allows you to use the svgvh:symbol viewhelper without providing the symbolFile argument.
- Add basic CSS for the icons to properly display. E.g. if your icons are prefixed with .icon-default:
.icon-default { display: inline-block; >svg { width: 100%; height: 100%; } }
ViewHelpers
svgvh:symbol
Renders an icon from an SVG symbol file. The icon is wrapped in a span tag as SVG with an xlink:href attribute referencing an external SVG symbols file.
Using an SVG symbols file has some benefits, e.g.
- the symbol file is cacheable by the browser
- only one HTTP request for all icons in one symbol file
- the icons can be styled using CSS, see note below (but manipulation of the SVG with JavaScript is NOT possible)
See below for more information about SVG symbol files and how to generate them.
Usage
<svgvh:symbol identifier='icon-id' />
will output something like:
<span class="icon-default icon-default-icon-id icon-default-icon-id-dims"> <svg role="graphics-symbol"> <use xlink:href="/path/to/sprite-default.svg?cb=5db10127a446fff1f0d0240086487da1#icon-id"></use> </svg> </span>
Arguments
In addition all universal tag attributes are supported:
class, dir, id, lang, style, title, accesskey, tabindex and onclick
Creating SVG symbols file and SCSS
There are many ways to create the needed symbols file and there are plugins for webpack, gulp, grunt etc.
One simple solution is to install the npm package svg-sprite which we can use to create the symbol file from a set of svg icons and also generated an SCSS file which contains the icon dimensions.
Create a svg-sprite.config.json for svg-sprite:
{ "shape": { "id": { "separator": "" } }, "mode": { "symbol": { "dest": "target_path", "sprite": "sprite-default.svg", "prefix": ".icon-default-%s", "render": { "scss": { "dest": "target_path/_icon-default.scss" } } } } }
Then run svg-sprite while providing the path to your svg icons:
svg-sprite --config svg-sprite.config.json path/to/*.svg
If successful, this will generate
- target_path/_icon-default.scss - the file with default dimensions for the icons
- target_path/sprite-default.svg - the symbol file containing all icons
Notes
To be able to style the icons using CSS you need to prepare the single SVG files:
Assuming you want to be able to style the stroke or fill color of an icon, replace its color value with 'currentValue' to make it use the parents color.