Fields are classes that the Block’s fields are turned into. There are lots of built-in types and where possible they are automatically cast but it is possible to create your own.
Listed below is how we transform each of the built in fieldtypes. The Field classes are all under the Riclep\Storyblok\Fields
namespace.
Storyblok Fieldtype | Cast Class | Comments |
---|---|---|
text | None | Is not cast. Original string returned. Can be manually cast to Textarea |
textarea | None | Is not cast. Original string returned. Can be manually cast to Textarea |
richtext | RichText |
Automatically converts content to HTML when field is called |
markdown | Markdown |
Cast to Riclep\Storyblok\Fields\Markdown |
number | None | Is not cast. Original value returned |
datetime | None | Is not cast. Original value returned. Can be manually cast to Datetime |
boolean | None | Is not cast. Original value returned |
multi-options | None | Is not cast. Original value returned |
multi-options (stories) | [Block ] |
If relations are resolve the correct Block type is cast |
single option (stories) | None | Is not cast. Original value returned |
single options (stories) | [Block ] |
If relations are resolve the correct Block type is cast |
asset | Asset |Image |
Checks the file extension and casts to the appropiate class |
multi-asset | MultiAsset |
Contains a Collection of Asset and/or Image Fields |
link (story) | StoryLink |
|
link (url) | UrlLink |
toString() prints the URL |
link (email) | EmailLink |
toString() prints the email address |
link (asset) | AssetLink |
toString() prints the URL |
blocks | [Block ] |
Array of child Blocks, cast to their correct type |
table | Table |
Currently does nothing - transformations to come |
Custom Fields can be used in several ways and must extend either an existing field or the Riclep\Storyblok\Field
abstract class. If extending the abstract class be sure to implement the toString()
method to allow this field to be easly used in Blade templates. A Field’s constructor takes the content from Storyblok and a reference to the Block it is part of. Fields are free to edit their contents any way you see fit.
The built-in Fields analyse the content from Storyblok when determining if they should be cast or not. With custom fields, like Pages and Blocks, they use a naming convention when determining if they should be used. Custom Fields are stored in the App\Storyblok\Fields
namespace.
{info} The order in which classes are checked for is: Block Casts > BlockNameFieldName > FieldName > Built-in.
A Class matching the Studly case version of field’s name from Storyblok is checked for. If you have a field called ‘episode_title’ it will match a class called EpisodeTitle
.
{warning} Be careful with universal Fields as they will match any Storyblok field matching their name regardless of content type and location.
A Class matching the Studly case version of the Block’s name then field’s name from Storyblok is checked for. So if we have a Block called ‘podcast’ with a field called ‘episode_title’ it will match a class called PodcastEpisodeTitle.
If you need more precise control you can manually cast a Block’s Fields using the Block’s $cast
property. Below we cast release_date
to the built-in Datetime
Field and image
to a custom HeroImage
Field.
<?php
namespace App\Storyblok\Blocks;
use Riclep\Storyblok\Fields\DateTime;
use Riclep\Storyblok\Block;
use App\Storyblok\Fields\HeroImage;
class Postcast extends Block
{
protected $_casts = [
'release_date' => DateTime::class,
'image' => HeroImage::class,
];
}
{info} If you are making a custom Field for one of the built-in types it’s best to extend the built-in class to take advantage of any existing functionality such as converting rich-text content or ArrayAccess and Interator functionality on MultiAsset fields.
When adding components to rich text fields in Storyblok they are converted to Blocks. Each rich text field content()
contains a Collection of HTML stubs or Blocks.
$field->content();
/*
[
0 => '<p>Hello</p>',
1 => '<p>App\Storyblok\Blocks\SomeBlock</p>',
2 => '<p>App\Storyblok\Block</p>',
4 => '<p>More HTML</p>',
]
*/
The Field’s __toString()
method will loop over all the content and call the Block’s render()
method. If you don’t use the render()
method then look over $field->content()
in your Blade file.
Thank you to papoms on GitHub for contributing towards adding this.
The Table Field will automatically convert a table field in Storyblok to HTML. The headings will be added to the <thead>
and the other columns to the <tbody>
. Sometimes you might also need <th>
if one of your columns is a header for each row. This is easily done by making a new Field class extending \Riclep\Storyblok\Fields\Table
that matches the field name in Storyblok (or the Block + Field name as below, Detail Block -> Data Field). In this class add a $headerColumns
property specifying the column number to become a header.
<?php
namespace App\Storyblok\Fields;
class DetailsData extends \Riclep\Storyblok\Fields\Table
{
protected $headerColumns = 1;
// or protected $headerColumns = [1, 4]; // both will become headers
}
Will become the following. If $headerColumns
is not present then no <th>
tags will be added to the <tbody>
rows.
<table>
<thead>
<tr>
<th>Name</th>
<th>Value</th>
<th>Additional</th>
</tr>
</thead>
<tbody>
<tr>
<th>Header</th>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<th>Header</th>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
To add a css class to your table just add a $cssClass
property matching your CSS class name.
<?php
namespace App\Storyblok\Fields;
class DetailsData extends \Riclep\Storyblok\Fields\Table
{
protected $cssClass = 'details-data';
}
Alternatively you can use the cssClass()
method when adding your table to your Blade view.
{!! $table->cssClass('details-data') !!}
Will become the following:
<table class="details-data">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
<th>Additional</th>
</tr>
</thead>
<tbody>
...
</tbody>
</table>
Ideally all tables would include a descriptive caption, this is important for accessibility and just generally good practice. To do this use the caption()
method passing in a string. If you also need to style the caption pass an array.
{!! $table->caption('Title of the table') !!}
{!! $table->caption(['Title of the table', 'the-css-class']) !!}
{info} If you need more control over formatting then implement a custom
toHtml()
method on your Table class, this must return a string. Alternatively you could deal directly with the data from Storyblok in your Blade view.
You can embed many services and media providers such as YouTube and Twitter with a Field trait.