drago-ex/components

Bootstrap components such as modal and offcanvas.

v1.0.1 2025-04-01 09:00 UTC

This package is auto-updated.

Last update: 2025-04-01 09:26:14 UTC


README

Bootstrap components such as modal and offcanvas.

License: MIT PHP version Coding Style

Technology

  • PHP 8.3 or higher
  • composer
  • node.js

Installation

composer require drago-ex/components

Usage

In the Control component we will use Trait Drago\Components\Components

Passing variables to the template:

$template->offcanvasId = $this->getUniqueIdComponent(self::Offcanvas);
$template->modalId = $this->getUniqueIdComponent(self::Modal);

And according to needs, we can use the implementations Drago\Components\ModalHandle and Drago\Components\OffcanvasHandle

#[Requires(ajax: true)] public function handleOpenModal(): void
{
	$this->modalComponent(self::Modal);
}


#[Requires(ajax: true)] public function handleOpenOffcanvas(): void
{
	$this->offCanvasComponent(self::Offcanvas);
}

Where do we insert the name of the snippet to override the component or can we write our own snippet handler and wrap the appropriate component in it.

#[Requires(ajax: true)] public function handleOpenModalWindow(): void
{
	$this->modalComponent();
	$this->redrawControl('...');
}

We will then use the templates of individual components and if we want to redraw multiple blocks, we need to add additional snippets.

<a n:href="openOffcanvas!" class="ajax" data-naja-history="off">Open Offcanvas</a>
{embed '@offcanvas.latte', offcanvasId: $offcanvasId}
	{block title}Title{/block}
	{block body}
		{snippet offcanvas}
			...
		{/snippet}
	{/block}
{/embed}

<a n:href="openModal!" class="ajax" data-naja-history="off">Open Modal</a>
{embed '@modal.latte', modalId: $modalId}
	{block title}Title{/block}
	{block body}
		{snippet modal}
			...
		{/snippet}
	{/block}
	{block footer}
		<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
			Close
		</button>
	{/block}
{/embed}

Next, it is necessary to import javascript to operate the component.

import "../vendor/drago-ex/components/src/Drago/assets/naja.components"

Copy the Latte templates to your project.

copy .\vendor\drago-ex\components\src\Drago\assets\latte\* destination

For demonstration, the component is used in the project: https://github.com/drago-ex/project