infinityloop-dev/lazy-component
Composer 安装命令:
composer require infinityloop-dev/lazy-component
包简介
Component for Nette framwork which helps with creation of lazy ajax loaded components.
README 文档
README
🔧 Component for Nette framwork which helps with creation of lazy ajax loaded components.
Introduction
Component which renders empty in the beggining and is populated by signal request.
Installation
Install package using composer
composer require infinityloop-dev/lazy-component
Dependencies
- PHP >= 7.4
- nette/application
- nette/utils
How to use
- Create new component and extend
\Infinityloop\LazyComponent\LazyComponentinstead of\Nette\Application\UI\Control. - Trigger
handleLoadComponentto load and redraw component. - Use macro
{control componentName}to render your component as you would normally. - Additionaly use
{control componentName:loadComponentLink}to get URL forloadComponentsignal.- Useful for rendering URL (eg. into data attributes) so you can easily trigger signal from javascript.
- Make sure
LazyCompoennt::render()method is called if you choose to override it.- Preferably use
beforeRender()to pass variables into template. beforeRender()method is not called when empty template is used (when component is not loaded).
- Preferably use
- Template for your component is automaticaly deduced to be have same name (and path) as your
.phpfile.- File extension is simply swapped to
.latte.
- File extension is simply swapped to
- By default the FontAwesome 5 spinner is used as placeholder. Override
EMPTY_TEMPLATEconstant to use different empty template file.
Example lazy tab content
Tab header:
<li class"tab" data-load-component="{control myComponent:loadComponentLink}">Tab name</li>
Tab content:
<div class="tab-content">
{control myComponent}
</div>
JQuery ajax request on click:
$(".tab[data-load-component]").one('click',function (event) {
const link = $(this).data("load-component");
$.nette.ajax({
method: 'GET',
url: link,
});
});
- Load event is executed only once (jqery.one).
统计信息
- 总下载量: 567
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-19