softinline/jcrud
Composer 安装命令:
composer require softinline/jcrud
包简介
crud methods for datatables, edit, add actions using json file for defines
README 文档
README
About Softinline jCrud
Softinline jCrud is a package designed for help in crud datatable and forms generation, you can define in json files directly linked with controller / models, adding support for export, select rows, adding more buttons, all using the same style.
Components
Softinline jCrud is a set of some components:
- jConfig (load files of config) and offers methods for get/set some configs in realtime access
- jTable (from json define file, can show diferent datatables, setting cols, orderable, searchable, etc...), one define file can store multiple lists under the tag list with diferents names, by default we are using 'index' list
- jForm, this class offers functionality about preapre form with diferent tabs, rows, and multiple input types (text, number, datetime, email, password, editor, custom, view, etc...)
- jcrud.js (this js store information about datatables created, select rows, validation function before submit forms, etc...)
jForm field types
- custom -> call method in controller parent to show some div or HTML code
- file
- date
- datetime
- text
- number
- password
- email
- button -> execute the 'action' key on json defines (normally javascript onclick event)
- checkbox
- textarea
- editor -> replaced with ckeditor needed the plugin installed and initialized
- select -> call controller method defined in 'selector' key on json defines see samples
- select-multiple -> call controller allow multiple selection, controller must return array with 'all' and 'selected' elements
- checkbox-multiple -> same as select-multiple but in checkbox format
- json -> displays information in json field (array) using <pre>
- view -> call view and load, view receives the $config, $item, etc vars with information (see documentation)
***
- childrens -> if field element has a children method, the fields inside can be displayed using a validation method that returns true or not, for example if you want to display more fields depends on select response.
Some samples
You can define your files in app/Defines (ex), in your controller you can use jConfig class to load your defines files like this
var $_jconfig; /** * Create a new controller instance. * @return void */ public function __construct() { $this->_jconfig = new \Softinline\JCrud\JConfig(); $this->_jconfig->load(app_path().'/Defines/admin-users.json', 'admin-users'); }
This is a simple basic sample define for table users: { "admin-users":{ "model":"User", "title":"users", "titleCustom":false, "url":"admin/users", "layout":"layouts.other", "lists":{ "index":{ "wrapper":false, "datatable":true, "class":false, "name":"admin-users", "cols":[ { "name":"id", "field":"id", "orderable":true, "searchable":true }, { "name":"created_at", "field":"created_at", "orderable":true, "searchable":true }, { "name":"email", "field":"email", "orderable":true, "searchable":true }, { "name":"actions", "field":"actions", "orderable":false, "searchable":false } ], "actions":{ "add":true, "export":true, "selector":true }, "options":[ ["export", "fa fa-file", "js:crud.export"], ["reports", "fa fa-list", "link:admin/users/reports"] ], "rowCallBack":false, "drawCallBack":false } }, "forms":{ "add":{ "wrapper":false, "tabs":{ "general":{ "key":"general", "title":"general", "type":"form", "fields":[ { "type":"email", "required":true, "title":"email", "field":"email" }, { "type":"password", "required":false, "title":"password", "field":"password" } ], "extraButtons":[] }, "advanced":{ "key":"advanced", "title":"advanced", "type":"form", "fields":[ { "type":"textarea", "required":true, "title":"advanced1", "field":"advanced2" } ], "extraButtons":[] }, "images":{ "key":"images", "title":"images", "type":"form", "fields":[ { "type":"file", "required":true, "title":"file", "field":"file" } ], "extraButtons":[] } } }, "edit":{ "wrapper":false, "field_title":"email", "tabs":{ "general":{ "key":"general", "title":"general", "type":"form", "fields":[ { "type":"email", "required":true, "title":"email", "field":"email" }, { "type":"password", "required":false, "title":"password", "field":"password" } ], "extraButtons":[] } } } } } }
if you want use rows and cols based on bootstrap you can use a special type field 'row' like this, each you can have n fields of the every type (text, password, editor, date, etc...)
{
"type":"row",
"fields":[
{
"type":"text",
"required":false,
"title":"field1",
"field":"field1"
},
{
"type":"text",
"required":false,
"title":"field2",
"field":"field2"
},
]
}
License
The Softinline/JCrud is open-sourced software licensed under the MIT license.
softinline/jcrud 适用场景与选型建议
softinline/jcrud 是一款 基于 Blade 开发的 Composer 扩展包,目前已累计 484 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 06 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「json」 「form」 「crud」 「laravel」 「datatables」 「datatable」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 softinline/jcrud 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 softinline/jcrud 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 softinline/jcrud 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Kinikit - PHP Application development framework MVC component
Gii Generator for double model generation
Diese Contao 4 Erweiterung stellt Google reCAPTCHA V2 in Form eines neuen Formularfeldes im Formulargenerator bereit. This extension provides Google reCAPTCHA V2 in the form of a new form field in the form generator of Contao Open Source CMS.
ext-json wrapper with sane defaults
A package to cast json fields, each sub-keys is castable
A PSR-7 compatible library for making CRUD API endpoints
统计信息
- 总下载量: 484
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-06-08