guilhermegonzaga/presenter
Composer 安装命令:
composer require guilhermegonzaga/presenter
包简介
Implementation for Laravel of the presenter design pattern.
关键字:
README 文档
README
Presenter is a design pattern for Laravel which is used to modify the data that comes from your model to your views.
It causes the data to be displayed in a way understandable to humans.
Installation
Laravel (5.x|6.x|7.x|8.x|9.x|10.x|11.x|12.x)
Execute the following command to get the latest version of the package:
composer require guilhermegonzaga/presenter
Usage
The first step is to store your presenters somewhere - anywhere. These will be simple objects that do nothing more than format data, as required.
Note that your presenter class must extend Laracodes\Presenter\Presenter:
namespace App\Presenters; use Laracodes\Presenter\Presenter; class UserPresenter extends Presenter { public function fullName() { return $this->model->first_name . ' ' . $this->model->last_name; } public function accountAge() { return $this->model->created_at->diffForHumans(); } ... }
Next, on your model, pull in the Laracodes\Presenter\Traits\Presentable trait, which will automatically instantiate your presenter class:
namespace App\Models; use Illuminate\Database\Eloquent\Model; use Laracodes\Presenter\Traits\Presentable; class User extends Model { use Presentable; protected $presenter = 'App\Presenters\UserPresenter'; ... }
Done, now you can call it in your views:
<h1>Hello, {{ $user->present()->fullName }}</h1>
<h1>Hello, {{ $user->present()->full_name }}</h1> // automatically convert to camelCase
Notice how the call to the present() method (which will return your new or cached presenter object) also provides the benefit of making it perfectly clear where you must go, should you need to modify how a full name is displayed on the page.
Notices
When you call a method that does not exist in its class presenter, this package will automatically call the property in the model with conversion to snake_case.
Ex:
// automatically calls the property in the model <h1>Hello, {{ $user->present()->firstName }}</h1> // automatically convert to snake_case <h1>Hello, {{ $user->present()->first_name }}</h1>
Credits
This package is largely inspired by this great package by @laracasts.
guilhermegonzaga/presenter 适用场景与选型建议
guilhermegonzaga/presenter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 250.11k 次下载、GitHub Stars 达 46, 最近一次更新时间为 2016 年 01 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「view」 「laravel」 「entity」 「presenter」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 guilhermegonzaga/presenter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 guilhermegonzaga/presenter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 guilhermegonzaga/presenter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shoot aims to make providing data to your templates more manageable
Runn Me! Value Objects Library
generates php entities from openapi spec
Illuminate View for Morningmedley.
DCSDynamicDiscriminatorMapBundle simplifies the use of Doctrine Single Table Inheritance mapping strategy in Symfony2.
Blade template for Kirby
统计信息
- 总下载量: 250.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 47
- 点击次数: 18
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-19