The easy-mde
component allows you to easily include a Markdown editor in your form. Behind the scenes it makes use of the Easy MDE library. The input is passed through to a form as a normal textarea input.
While the easy-mde
component works out-of-the-box when you've set the directives, we recommend that you install and compile its JavaScript libraries before you deploy to production:
In its most basic usage, you use it as a self closing component and pass it a name:
<x-easy-mde name="about"/>
This will output the following HTML (inline JS has been omitted):
<textarea name="about" id="about"></textarea>
From there, the Easy MDE editor will be rendered. Of course, you can also specifically set a default value:
<x-easy-mde name="about">My about text</x-easy-mde>
This will output the following HTML (inline JS has been omitted):
<textarea name="about" id="about">My about text</textarea>
The easy-mde
component also supports old values that were set. For example, you might want to apply some validation in the backend, but also make sure the user doesn't lose their input data when you re-render the form with any validation errors. When re-rendering the form, the easy-mde
component will remember the old value:
<textarea name="about" id="about">
# Blade UI Kit
Blade components are **awesome**.
</textarea>
You can also pass options to Easy MDE with the options
attribute. This requires you to pass a PHP array with scalar values. Below is an example where we set the minimum height:
<x-easy-mde name="about" :options="['minHeight' => '500px']" />
For a full reference of all options, please consult the Easy MDE documentation.
Please note that only scalar values are supported. You cannot use any JavaScript language specific options like callbacks.
If you'd like to set some sensible defaults for all your easy-mde
component usages you can do so by overwriting the component class and options
method:
<?php
namespace App\View\Components;
class EasyMDE extends \BladeUIKit\Components\Editors\EasyMDE
{
public function options(): array
{
return array_merge([
'minHeight' => '500px',
'status' => false, // Disable the status bar.
], parent::options());
}
}
It's important in the above snippet that you call parent::options()
so any options passed directly to the component are still applied as well.
After overwriting the component we'll need to register it in our blade-ui-kit.php
config file. Make sure to replace the default one with your own class:
<?php
return [
'components' => [
...
'easy-mde' => App\View\Components\EasyMDE::class,
...
],
];
© 2024 Dries Vints. Site built with the TALL Stack. Artwork by Caneco.