定制 benjacho/belongs-to-many-field 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

benjacho/belongs-to-many-field

Composer 安装命令:

composer require benjacho/belongs-to-many-field

包简介

belongsToMany nova representation in field.

README 文档

README

Belongs To Many field to represent a many to many relationship in just a field. This field allow attaching relationships easily.

  • Use version 3 for Nova 4
  • Use version 2 for Nova 3

Also you can:

  • Pass query to the multiple select
  • Depends on BelongsTo field
  • It is available in index, detail and forms!

image

Installation

composer require benjacho/belongs-to-many-field

Usage

In the resource you need to pass:

  • Method make ('label', 'many to many relationship function name', 'Nova Resource Relationship')
use Benjacho\BelongsToManyField\BelongsToManyField;

public function fields(Request $request){
    return [
        ..., //If you are using with BelongsToMany native Field, put this field after

        BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role'),
    ];
}

Functions

Function Param default description
optionsLabel String 'name' If you don't have column 'name' in your relationship table, use this method. This displays in index and detail Ejm (optionsLabel('full_role_name')) you can also access nested object keys with dot notation like this (optionsLabel('name.en')). Note that this field uses the relation resource title property, so if you want translated versions on your form change app.locale config value
isAction Boolean true This method is when you need this field in actions, this puts height of field in 350px, and converts in action.
setMultiselectProps Array [] this method allows you to set properties for the vue multiselect component
dependsOn String, String null, null This method allows you to depend on belongsto field, this make an auto query
canSelectAll String, Boolean 'Select All', true This method allows you to have a select all checkbox and display custom message
showAsListInDetail Boolean true This method allows you to display as list in detail
  • Method optionsLabel('columnName'), this method is when you don't have column 'name' in your table and you want to label by another column name. By default it tracks by label 'name'.

IMPORTANT

  • If you want to label by another column name when displaying in forms, you need to set the title() method on your relationship resource, this method returns an string that is used to label it, also don't forget to add optionsLabel() method to show in detail and index.
use Benjacho\BelongsToManyField\BelongsToManyField;

public function fields(Request $request){
    BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role')->optionsLabel('full_role_name'),
}
  • To obtain the data that was sent in action:
public function handle(ActionFields $fields, Collection $models)
{
    //note that roles is the many to many relationship function name
    $values = array_column(json_decode(request()->roles, true),'id');

    foreach ($models as $model) {
        $model->roles()->sync($values);
    }
}
     BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role')
     ->options(\App\Role::all())
     ->setMultiselectProps([
        'selectLabel' => 'click for select',
        // and others from docs
     ]);
  • Method dependsOn($dependsOnvalue, $dependsOnKey), This method allows you to depend on belongsto field, this make an auto query
     BelongsTo::make('Association', 'association', 'App\Nova\Association'),

     BelongsToManyField::make('Participants', 'participant', 'App\Nova\Participant')
     ->dependsOn('association', 'association_id'),
  • Method canSelectAll($messageSelectAll), This method allows you to display select all checkbox, if you dont pass message default is displayed
     BelongsToManyField::make('Participants', 'participant', 'App\Nova\Participant')
     ->canSelectAll('Seleccionar Todo'),
  • Method showAsListInDetail(), This method allows you to change the default view to list in detail
     BelongsToManyField::make('Participants', 'participant', 'App\Nova\Participant')
     ->showAsListInDetail(),

Validations

This package implement all Laravel Validations, you need to pass the rules in rules method, rules are listed on laravel validations rules for arrays*.

use Benjacho\BelongsToManyField\BelongsToManyField;

public function fields(Request $request){
    return [
        ...,
        BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role')->rules('required', 'min:1', 'max:5', 'size:3', new CustomRule()),
    ];
}

image

Translations

To publish translations:

php artisan vendor:publish --provider="Benjacho\BelongsToManyField\FieldServiceProvider"

This package come with the following translation for the vue-multiselect plugin.

  • en, ru, and nl.

To translate validations use Laravel validation translations.

Credits to: https://github.com/manmohanjit/nova-belongs-to-dependency

TODO

This project was my first Open Source project, so I wanted to add a roadmap.

I migrated this package to use Nova 4, this migration considered only the detail, index and form views. It means that it can have bugs with other features.

  • Add Tests to the Project, adding test will add a certain level of quality code. Also it will help to achieve the other features.
  • Test all functions implemented and improve wiki.
  • Implement native dependability from Nova, this considers only to have dependsOn a BelongsTo field
  • Implement translations with Spatie Translatable to es, fr, de
  • Support for inline creation via native Nova 4
  • builtin theme inherited from nova theme

benjacho/belongs-to-many-field 适用场景与选型建议

benjacho/belongs-to-many-field 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 863.9k 次下载、GitHub Stars 达 156, 最近一次更新时间为 2019 年 02 月 08 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「nova」 「laravel」 「belongsToMany」 「Many to Many Field」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 benjacho/belongs-to-many-field 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 benjacho/belongs-to-many-field 我们能提供哪些服务?
定制开发 / 二次开发

基于 benjacho/belongs-to-many-field 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 863.9k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 157
  • 点击次数: 32
  • 依赖项目数: 3
  • 推荐数: 0

GitHub 信息

  • Stars: 156
  • Watchers: 3
  • Forks: 87
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-02-08