Skip to content

Add options to blocks #1688

Open
Open
@joyceverheije

Description

@joyceverheije

I would like to be able to pass some options through the blocks to avoid creating a new block for each variation I need.

For example, we create a lot of lite version of blocks with less fields, for different templates. Which means creating a new one and extracting or duplicating the initial form, to enrich it or simplify it.

Example block form:

@formField('medias', [
    'name' => 'image',
    'label' => 'Image',
])

@formField('radios', [
    'name' => 'ratio',
    'label' => "Ratio",
    'options' => collect(['Full' => 'Full', 'Half' => 'Half']),
    'default' => 'Full',
    'inline' => true
])

@formField('checkbox', [
    'name' => 'border',
    'label' => 'Show border'
])

@formField('checkbox', [
    'name' => 'background_color',
    'label' => 'Show background color'
])

Example block lite form:

@formField('medias', [
    'name' => 'image',
    'label' => 'Image',
])

@formField('radios', [
    'name' => 'ratio',
    'label' => "Ratio",
    'options' => collect(['Full' => 'Full', 'Half' => 'Half']),
    'default' => 'Full',
    'inline' => true
])

@formField('checkbox', [
    'name' => 'border',
    'label' => 'Show border'
])

Solution:

@formField('medias', [
    'name' => 'image',
    'label' => 'Image',
])

@formField('radios', [
    'name' => 'ratio',
    'label' => "Ratio",
    'options' => collect(['Full' => 'Full', 'Half' => 'Half']),
    'default' => 'Full',
    'inline' => true
])

@formField('checkbox', [
    'name' => 'border',
    'label' => 'Show border'
])

@if($withBackgroundColor)
    @formField('checkbox', [
	  'name' => 'background_color',
	  'label' => 'Show background color'
    ])
@endif

Module form:

@formField('block_editor', [
    'blocks' => [
        'text',
        'image' => [
	    'withBackgroundColor' => true,
	],
    ]
])

With the multiple block editor feature, I assume a use case would be to pass the same block with different options to different block editors within the same form, but I know this will be more complex to support because of the block templates inlined in the html once per block type.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    Status

    Beyond

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions