Code Monkey home page Code Monkey logo

Comments (4)

franzose avatar franzose commented on June 11, 2024

@gchabb, have you tried to query descendant nodes?

$tree = Categorie::tree();

// please provide me results of the following
$tree[0]->children();
$tree[1]->children();
$tree[0]->nested;
$tree[1]->nested;

from closuretable.

franzose avatar franzose commented on June 11, 2024

Remember that the result tree, you query for, is not flat.

from closuretable.

gchabb avatar gchabb commented on June 11, 2024

excuse me i hope that i don't make loose your time with my mistakes...
so, i create 2 roots with 2 childs on first root

       $newChild = new Page(array(
        'libelle' => 'categorie 1',
    ));

    $newChild->appendChild($newChild);

    $newChild = new Page(array(
        'libelle' => 'categorie 2',
    ));

    $newChild->appendChild($newChild);

    $page = Page::find(1);

    $newChild = new Page(array(
        'libelle' => 'categorie 1-1',
    ));

    $page->appendChild($newChild);

    $newChild = new Page(array(
        'libelle' => 'categorie 1-2',
    ));

    $page->appendChild($newChild);

I log ::tree, children en nested like this

    $tree = Page::tree();

    Profiler::startTimer('testLogging');
    Log::debug($tree);
    Log::debug($tree[0]->children());
    Log::debug($tree[1]->children());
    Log::debug($tree[0]->nested);
    Log::debug($tree[1]->nested);
    Profiler::endTimer('testLogging');

results ok

image

image

if i insert 2 childs on first child like this

    $page = Page::find(3);

    $newChild = new Page(array(
        'libelle' => 'categorie 1-1-1',
    ));

    $page->appendChild($newChild);

    $newChild = new Page(array(
        'libelle' => 'categorie 1-1-2',
    ));

    $page->appendChild($newChild);

the result of the same log, ::tree seems to begin with a node and not with roots...is this wrong or maybe i don't understand everything in it...argggghhn, i will die under a wave of nodes

image

image

...and for each test i do migrate and rollback because deleting in Pgadmin seems to make misbehaviors, is it possible ? i have already see this with others tables, i have to initialise sequences in PgAdmin to solve...

from closuretable.

franzose avatar franzose commented on June 11, 2024

@gchabb , hi, mate! And all who interested in, of course! At last, it happened: in v3.0-dev I have fixed the issue of erroneous tree building. Check it out!

from closuretable.

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.