Giter VIP home page Giter VIP logo

Comments (2)

sokil avatar sokil commented on August 29, 2024

Behavior is just implementation of traits on php versions where traits not supported, so uou can just add some methods for all documents where trait added, and then through getOwner get instance of Document.

<?php

class SomeBehavior extends Behavior
{
    public function doSome()
    {
        $this->getOwner()->onBeforeSave(function() {});
    }
}

And then you must call this method directly:

<?php

$document->attachBehavior('someBehavior', SomeBehavior::class);
$document->doSome();

If you just want to add some functionality to Document, use Document::beforeConstruct().

<?php

class SomeDocument extends Document
{
    public function beforeConstruct()
    {
         $this->onBeforeSave(function() {})
    }
}

from php-mongo.

angelxmoreno avatar angelxmoreno commented on August 29, 2024

Thank you. I will rework my solution to make use of traits instead. This was my solution, a bit hacky and requires more thought but got the job done:

namespace AXM\Slim\Core\Model\Document\Behavior;

use Sokil\Mongo\Behavior;
use Sokil\Mongo\Document;
use Sokil\Mongo\Event;

/**
 * Class BehaviorBase
 * @package AXM\Slim\Core\Model\Document\Behavior
 *
 * @method void afterConstruct(Event $event)
 * @method void beforeValidate(Event $event)
 * @method void afterValidate(Event $event)
 * @method void validateError(Event $event)
 * @method void beforeInsert(Event $event)
 * @method void afterInsert(Event $event)
 * @method void beforeUpdate(Event $event)
 * @method void afterUpdate(Event $event)
 * @method void beforeSave(Event $event)
 * @method void afterSave(Event $event)
 * @method void beforeDelete(Event $event)
 * @method void afterDelete(Event $event)
 */
abstract class BehaviorBase extends Behavior
{
    /**
     * @var array
     */
    protected $event_names = [
        'afterConstruct',
        'beforeValidate',
        'afterValidate',
        'validateError',
        'beforeInsert',
        'afterInsert',
        'beforeUpdate',
        'afterUpdate',
        'beforeSave',
        'afterSave',
        'beforeDelete',
        'afterDelete',
    ];

    /**
     * @param $owner
     * @return $this
     */
    public function setOwner($owner)
    {
        parent::setOwner($owner);
        $this->attachEvents();
        return $this;
    }

    protected function attachEvents()
    {
        /** @var Document $doc */
        $doc = $this->getOwner();
        foreach ($this->event_names as $event_name) {
            if (method_exists($this, $event_name)) {
                $doc->attachEvent($event_name, [$this, $event_name], 100);
            }
        }
    }
}

from php-mongo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.