armincms/chain
Composer 安装命令:
composer require armincms/chain
包简介
A Laravel Nova field.
README 文档
README
Conditionally load a field with the value of the other fields.
Installation
Via composer: composer require armincms/chain.
Usage
The Chain field works as a trigger and listener. a trigger chain listens to the update events of entire fields and the listener chain listening to the trigger Chain events and its entire fields together.
Make trigger field
The trigger Chain initializes via the as method. the as method accepts two arguments. the first argument is the name of event and the second argument is a fields callback. it receives a request instance for resolving fields.
Chain::as('name', function() {
return [
Text::make('Name')
->sortable()
->rules('required', 'max:255'),
Text::make('Username')
->sortable()
->rules('required', 'max:255'),
];
}),
Make listener field
The listener Chain initializes via the with method. the with method accepts an array of events as the first argument and a callback for the fields as second arguemnt.
for listening to a trigger Chain you should pass the name of the Chain as the event name. for listening to a field of a trigger Chain you can prefix the field name by the Chain name and listen to it. for example, you can listen to the name field of a Chain (Chain field named by the 'test'), with the test.name event.
Chain::with('name', function($request) {
if($request->filled('username')){
return [
Text::make('Password')
->sortable()
->rules('required', 'max:255'),
Text::make('Confirmation')
->sortable()
->rules('required', 'max:255'),
];
}
return [];
}, 'second-chain'),
Chain::with('second-chain.confirmation', function($request) {
return [
Boolean::make('Passed')
->readonly()
->withMeta(['value' => 1]),
];
}),
armincms/chain 适用场景与选型建议
armincms/chain 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32.06k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2020 年 10 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「nova」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 armincms/chain 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 armincms/chain 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 armincms/chain 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Laravel Nova card that shows you your system information.
A Laravel Nova card.
A Laravel Nova package for publishable fields
A Laravel Nova package for translatable fields
A Laravel Nova Image field. you can paste or drag or chose an image
A Laravel Nova Mail testing tool.
统计信息
- 总下载量: 32.06k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 20
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-12
