ganyicz/nova-temporary-fields
Composer 安装命令:
composer require ganyicz/nova-temporary-fields
包简介
Make Laravel Nova fields temporary
README 文档
README
This package adds support for creating fields you don't want to persist in your models.
use Illuminate\Http\Request; use Laravel\Nova\Fields\Text; use Ganyicz\NovaTemporaryFields\HasTemporaryFields; class User extends Resource { use HasTemporaryFields; public function fields(Request $request) { return [ Text::make('Non existent')->temporary() ]; } }
Why?
This package is meant to be used in conjunction with my other package Nova Callbacks.
Let's say you have a Product model with multiple prices depending on a currency defined in the Pricing model.
class Product extends Model { // ... public function pricing() { return $this->hasMany(Pricing::class); } }
Now normally, you would use something like HasMany field on your Product resource. Although, this is not very intuitive for the admin. When he wants to update the product's pricing, he needs to go to the detail page and either create new pricing record or update an existing one. Not great.
What if you just wanted to have a price field for every currency, right inside your edit page? Let's look at the solution.
use Illuminate\Http\Request; use Ganyicz\NovaCallbacks\HasCallbacks; use Ganyicz\NovaCallbacks\HasTemporaryFields; class User extends Resource { use HasTemporaryFields, HasCallbacks; public function fields(Request $request) { return [ // For the sake of simplicity, I'm not resolving the current price Number::make('USD') ->required() ->temporary(), Number::make('EUR') ->required() ->temporary(), ]; } public static function afterSave(Request $request, $model) { $model->pricing()->firstOrNew(['currency' => 'USD'])->fill(['price' => $request->input('USD')])->save(); $model->pricing()->firstOrNew(['currency' => 'EUR'])->fill(['price' => $request->input('EUR')])->save(); } }
Pretty elegant, right?
By defining a field as temporary, Nova won't try to fill the attribute to your model, avoiding the Column not found exception. Although you still have access to it inside your request.
The possibilties are endless.
Installation
You can install the package via composer:
composer require ganyicz/nova-temporary-fields
Usage
- Apply
HasTemporaryFieldstrait on your resource. - Chain
temporary()method on any field you don't want to fill to your model.
TIP: Apply the trait on your base Resource class inside your Nova folder so that temporary fields are available for you in every new resource.
How does it work?
This package defines a temporary() macro on the base Field abstract class, which just sets a meta attribute _temp to true.
The HasTemporaryFields trait overrides fillFields method on your Resource and filters out any fields with this meta attribute.
ganyicz/nova-temporary-fields 适用场景与选型建议
ganyicz/nova-temporary-fields 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.58k 次下载、GitHub Stars 达 9, 最近一次更新时间为 2021 年 03 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ganyicz/nova-temporary-fields 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ganyicz/nova-temporary-fields 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 7.58k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-03-20