scott1702 / silverstripe-handyblocks
Provides some useful elemental blocks
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 19
Type:silverstripe-vendormodule
- dev-master
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/tar-4.4.19
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.7
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/acorn-6.4.1
This package is auto-updated.
Last update: 2025-03-29 00:36:35 UTC
README
This module it used to provide a few handy blocks to get a project up and running with some useful functionality quickly
How to use
Picking blocks to use
By default, installing this module enables all of the blocks within the module. Certain blocks can be disabled via yml configuration if they are not necessary
Page: disallowed_elements: - SilverStripe\HandyBlocks\CallToActionBlock
Templates
This module provides a base template for each block. Partial caching is also applied to the template of each block. If you want to use a custom template or do not want partial caching at a block level, simply override the template to use your own
CSS
This module also provides a css file for each block. If you want to use these, there are a few ways you can include these css files:
Requiring the main dist file
This is the recommended approach if you want get something up and running quick:
// PageController.php protected function init() { parent::init(); \SilverStripe\View\Requirements::css('scott1702/silverstripe-handyblocks:client/dist/main.css'); }
Importing the main.scss file
This is a good way of pulling the css into your own build chain, as it results in only one css file and allows you to override any variables used to fit your project
// Your main.scss file in your project @import 'variables'; // Import your own variables first to override handyblocks variables @import '../vendor/scott1702/silverstripe-handyblocks/client/src/main';
Importing each block's scss file independently
// Your main.scss file in your project @import 'variables'; // Your own variables/mixins will have to match the values used in each scss file @import '../vendor/scott1702/silverstripe-handyblocks/client/src/blocks/cta-block';
Gotchas
There are a few patterns in this module which may catch you out, so they are listed here for clarity:
Custom Element holder
All of the blocks in this module user a custom ElementHolder in order to apply different style variants, the template HandyElementHolder.ss
can be overridden or you can adjust the holder for each block back to the default with yml configuation.
SilverStripe\HandyBlocks\CallToActionBlock: controller_template: 'ElementHolder'
Container in each template
So that each variant's color stretched all the way to the edge, there is a <div class="container">
element inside HandyElementHolder.ss
. This will break styling if there is a secondary container applied at a page level, rather than a block level.
CSS uses ems
em values in the css expect 1em to equal 10px, because of this a font-size of 10px has been applied to each block.