Fireworks Laravel Event Sourcing: Handle model class events in the object itself

Recommend this page to a friend!
  Info   View files Documentation   View files View files (5)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2020-09-14 (15 days ago) RSS 2.0 feedNot yet rated by the usersTotal: 11 All time: 10,064 This week: 266Up
Version License PHP version Categories
fireworks 1.0Custom (specified...7.1PHP 5, Databases, Libraries, Design P...
Description Author

This package can be used to handle model class events in the object itself.

It provides a trait that can be used in Laravel model classes to register callback functions of the model class itself to handle different types of events for changing the model object state.

The trait can call functions that model implementation classes and may have to execute actions before and after the creation, retrieving, updating and deleting model objects.

Picture of Hashemi Rafsan
  Performance   Level  
Name: Hashemi Rafsan <contact>
Classes: 3 packages by
Country: Bangladesh Bangladesh
Innovation award
Innovation award
Nominee: 1x

Details

Laravel Fireworks

A simple trait that will help to fire model property wise event on your laravel model. Using laravel model events, to create hooks with changed column and data.

Installation

You can start it from composer. Go to your terminal and run this command from your project root directory.

composer require hashemi/fireworks

Setup

At first, you need to use Fireworks trait on your model where you want register your model events.

class User extends Model
{
    // Use Fireworks Trait
    // ....
    use \Hashemi\Fireworks\Fireworks;
    // ....
}

`Fireworkstrait addbootmethod on your model and register pre-defined model event hooks that already provided by laravel. This package supportsretrieved, creating, created, updating, updated, deleting, deleted, saving, savedhooks. So, you don't need to register again this hooks are onboot` method.

How to use

This package will help you figure out of every hooks in methods. Example: suppose you want to use `creatinghooks, just declareonModelCreating` method on your model.

class User extends Model
{
    // Use Fireworks Trait
    // ....
    use \Hashemi\Fireworks\Fireworks;
    protected $fillable = [
        'name',
    ];
    // ....
    protected function onModelCreating($model) {
        $model->name = "Kuddus";
    }

    protected function onModelUpdating($model) {}

    protected function onModelSaving($model) {}
    
    protected function onModelCreated($model) {}

    protected function onModelUpdated($model) {}

    protected function onModelSaved($model) {
        $model->name = "Ali";
        $model->save();
    }
    
    protected function onModelNameSaved($model, $newValue, $oldValue)
    {
        
    }
}

onModelCreating($model)

You can use `onModelCreatinginstead ofstatic::creating`

onModelUpdating($model)

You can use `onModelUpdatinginstead ofstatic::updating`

onModelSaving($model)

You can use `onModelSavinginstead ofstatic::saving`

onModelDeleting($model)

You can use `onModelDeletinginstead ofstatic::creating`

onModelRetrieved($model)

You can use `onModelRetrievedinstead ofstatic::creating`

onModelCreated($model)

You can use `onModelCreatedinstead ofstatic::created`

onModelUpdated($model)

You can use `onModelUpdatedinstead ofstatic::updated`

onModelSaved($model)

You can use `onModelSavedinstead ofstatic::saved`

onModelDeleted($model)

You can use `onModelDeletedinstead ofstatic::deleted`

Convention

  • Your hooks method should be `onModelformat. Where the` will be replaced by the StudlyCase Hooks names. So, if your hook is `creating`, then the method name should be `onModelCreating()`.
  • If you want to fire event on column change wise then your hook method should be `onModel<PropertyName><Hookname>`. Where the `PropertyName` will be replaced with your column name in StudlyCase and `Hookname` will be also same way. So if your column is `phone_number` and your hook is `updating`, then the method name should be `onModelPhoneNumberUpdating()`.

Warning

Please use hooks proper way other way data will modified in each hook.

Contributing

Pull requests are welcome. For any changes, please open an issue first to discuss what you would like to change.

  Files folder image Files  
File Role Description
Files folder imageexamples (1 file)
Files folder imagesrc (1 file)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  examples  
File Role Description
  Plain text file User.php Class Class source

  Files folder image Files  /  src  
File Role Description
  Plain text file Fireworks.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:11
This week:0
All time:10,064
This week:266Up

For more information send a message to info at phpclasses dot org.