承接 tschallacka/storm-inherit-relations 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

tschallacka/storm-inherit-relations

Composer 安装命令:

composer require tschallacka/storm-inherit-relations

包简介

A simple dependency for the WinterCMS Storm library database models that enables inheriting relations defined in parent models

README 文档

README

This plugin provides a behavior for WinterCMS's Storm library based database models.

Default, when you extend base models, you loose all relationships defined in the parent model. Circumstances exist where you don't wish to lose access to those relationships but to improve upon it, continueing working on a core concept, adding features as you go up the inheritance tree where the needed objects differ.

For example(skip if you just want to know how to work with it)

In Magento you have AttributeValues. Each Attribute value has a relation AttributeName.
This would be one base model with a belongsTo relationship, we'll call this AttributeValue.

Then, a value can belong to a different type of Model. A Product, a Quote, a Customer, etc...
Values belonging one type cannot belong to another type, we'll call this OwnedBy[Type].
This would be a Model extending the AttributeValue, adding the $belongsTo relationship to it's "owner type"

Then there are multiple different datatypes possible, each stored within their own table(Don't ask why, Magento chose this method)
So integer values have their table, datetime values have their tables, decimals have their tables, etc...
These value types would then extend the OwnedBy[Type], changing just the table name that stores the values.
We would call this OwnedBy[Type][ValueType] If you do the math you can see that this is an exponential amount of files to generate and modify.

Alternative solution

This would be a use case where inheriting relationships from the parents throughout the layers would be ideal.
Of course you can modify the constructors to read the data from the parent classes, add it to the current class.
That would mean copy pasting this code like 25 times, and wouldn't be very DRY

My solution

I'm a coder, I'm lazy and don't like copy pasting the same thing ove rand over. I would propose having an implementation that you can inject in a class you deem needing it.
For example the utmost base class AttributeValue, this ensures all the children have it, and it doesn't need to be copy pasted over and over again.

Using the Relationship Inheritance.

Installation

composer require tschallacka/storm-inherit-relations ^1.0

Usage

In a model in which you wish to glean the relationships defined in the parents add this to your $implements array:

public $implement = [\Tschallacka\StormInheritRelations\Behavior\InheritRelations];

Model example:

<?php
namespace Tschallacka\Example\Attribute;

use Winter\Storm\Database\Model;
use Tschallacka\StormInheritRelations\Behavior\InheritRelations;

class AttributeValue extends Model
{
    public $primaryKey = 'value_id';

    public $implement = [
        InheritRelations::class
    ];

    public $belongsTo = [
        'attribute' => AttributeName::class,
    ];
}

tschallacka/storm-inherit-relations 适用场景与选型建议

tschallacka/storm-inherit-relations 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 09 月 17 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 tschallacka/storm-inherit-relations 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 9
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 9
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-09-17