jguido/widget-bundle
Composer 安装命令:
composer require jguido/widget-bundle
包简介
This Bundle add a widget system for rendering data a generic way. It also permit a generation of widget files.
README 文档
README
composer require jguido/widget-bundle
Then add this bundle to your kernel (app/AppKernel.php) :
new WidgetBundle\WidgetBundle(),
new ApplicationWidgetBundle\ApplicationWidgetBundle(),
Add in app/config/routing.yml
bundle_widget:
resource: "@WidgetBundle/Resources/config/routing.yml"
prefix: /
Add in app/config/config.yml in import section
- { resource: "@ApplicationWidgetBundle/Resources/config/widgets.yml" }
Add this line in the style declaration of your layout
<link href="{{ asset('bundles/widget/css/widget-render.css') }}" rel="stylesheet" media="screen" type="text/css"/>
Add this line in the javascript declaration of your layout
<script type="text/javascript" src="{{ asset('bundles/widget/js/Widget.js') }}"></script>
Usage
There is a command for generating files of the desired widget :
php bin/console generate:widget <widget_name>
The rendering of a widget is done like this
The simpliest way
{{ render_widget('widget.<widget_name>') }}
If the route of your widget needs parameters
{{ render_widget('widget.<widget_name>', {'param1': param1}) }}
But if you do so, you will have to update the route definition in the file of your bundle (in src/ApplicationWidgetBundle/Widget/your_widget)
Content of the widget is loaded with ajax calls, all the dom events are functionnals (window.onload, $(function){...});)
File structure : src -- ApplicationWidgetBundle ----Resources ------config --------widgets.yml (the widgets service definition) ------views (where the views generated are placed) ----Widget (inside all the widget (controller) class
Example (Use case)
You want to generate a bundle "test"
in console :
php bin/console generate:widget test
What i will have in the service definition (src/ApplicationWidgetBundle/Resources/config/widgets.yml):
services:
widget.test:
class: ApplicationWidgetBundle\Widget\TestWidget
Inside the widget class:
<?php
namespace ApplicationWidgetBundle\Widget;
use WidgetBundle\Base\BaseWidget;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;
class TestWidget extends BaseWidget
{
/**
* @param $params
* @return mixed
*/
protected function getData($params)
{
throw new \Exception("Not implemented");
}
/**
* @param array|null $params
* @return string
*/
public function getUri(array $params = null)
{
return $this->generateUrl('path_widget_test', $params);
}
/**
* @return Response
* @internal param Request $request
* @Route("/widgets/test/render", name="path_widget_test")
*/
public function widgetAction()
{
return $this->render('ApplicationWidgetBundle:Test:test.html.twig');
}
}
This TestWidget class will act as a common controller
Inside the views directory:
a sub directory called Test and inside a file test.html.twig
<div class="col-xs-12">
This is widget Test
</div>
You will be able to render it through other twig views like this :
{{ render_widget('widget.test') }}
jguido/widget-bundle 适用场景与选型建议
jguido/widget-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 111 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 10 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「generator」 「bundle」 「widget」 「symfony3」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jguido/widget-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jguido/widget-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jguido/widget-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Memio's PrettyPrinter, used to generate PHP code from given Model
2lenet/EasyAdminPlusBundle
The bundle for easy using json-rpc api on your project
Yii2 LightBox image galary widget uses Lightbox v2.10.0 by Lokesh Dhakar
Provide a way to secure accesses to all routes of an symfony application.
DMS Meetup API Bundle, enables Meetup API clients in services
统计信息
- 总下载量: 111
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GNU
- 更新时间: 2016-10-15