mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-20 16:51:02 -05:00
add: bbcode input livewire component
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* NOTICE OF LICENSE.
|
||||
*
|
||||
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
||||
* The details is bundled with this project in the file LICENSE.txt.
|
||||
*
|
||||
* @project UNIT3D Community Edition
|
||||
*
|
||||
* @author Raordom <roardom@protonmail.com>
|
||||
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
||||
*/
|
||||
|
||||
namespace App\Http\Livewire;
|
||||
|
||||
use App\Helpers\Bbcode;
|
||||
use Livewire\Component;
|
||||
|
||||
class BbcodeInput extends Component
|
||||
{
|
||||
public string $label = '';
|
||||
|
||||
public string $name = '';
|
||||
|
||||
public bool $isPreviewEnabled = false;
|
||||
|
||||
public string $contentBbcode = '';
|
||||
|
||||
public string $contentHtml = '';
|
||||
|
||||
final public function mount($name, $label)
|
||||
{
|
||||
$this->name = $name;
|
||||
$this->label = $label;
|
||||
}
|
||||
|
||||
final public function updatedIsPreviewEnabled(): void
|
||||
{
|
||||
if ($this->isPreviewEnabled) {
|
||||
$this->contentHtml = (new Bbcode())->parse($this->contentBbcode);
|
||||
}
|
||||
}
|
||||
|
||||
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
|
||||
{
|
||||
return \view('livewire.bbcode-input', [
|
||||
'contentHtml' => $this->contentHtml,
|
||||
'label' => $this->label,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user