Giter Club home page Giter Club logo

Comments (4)

ADmad avatar ADmad commented on June 15, 2024

There's already start config for your option 2.

from cakephp-sequence.

nedvajz avatar nedvajz commented on June 15, 2024

Thank you for your reply!

I have set this to 1 but even though it does not start with 1 in database

image

expected is 'blue' 1,2,3 but sequence is 5,15,16 .. well for order query it does work fine, but for my special usecase when I wanna retrieve just 3rd item of the member_id = 12 it does not work as the 3rd item has value 16

hope it makes sense?

from cakephp-sequence.

ADmad avatar ADmad commented on June 15, 2024

Starting with a "clean" table the behavior will set number in continuous sequence starting with the value specified for start. I don't know how you ended up with those values.

from cakephp-sequence.

nedvajz avatar nedvajz commented on June 15, 2024

I found workaround for my case.

Probably not that often issue so you can ignore that. But thank you for you help and for this plugin!

    /**
     * Method: beforeSave
     *
     * Refresh order to be 1,2,3 .. after save
     *
     * @param Event $event Event
     * @param EntityInterface $entity Entity
     * @param ArrayObject $options Options
     * @return void
     */
    public function afterSaveCommit(Event $event, EntityInterface $entity, \ArrayObject $options)
    {
        if (!empty($entity->member_id)) {
            $sort = $this
                ->find('list', [
                    'keyField' => 'id',
                    'valueField' => 'id'
                ])
                ->where(['member_id' => $entity->member_id])
                ->order(['member_sort' => 'desc'])
            ->toArray();  

            $this->setOrder($sort);
        }
    }

from cakephp-sequence.

Related Issues (17)

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.