Giter Club home page Giter Club logo

Comments (3)

devvoh avatar devvoh commented on May 26, 2024 1

Actually, I'm definitely adding those hooks. In loadRoutes, I'll probably just add parable_routing_load_before and parable_routing_load_after like you suggested. Also a good moment to add hooks to loadInits 🙂

from parable.

devvoh avatar devvoh commented on May 26, 2024

I'm assuming you mean you don't want to add them all into \Routing\App? 😉

Good suggestions!

And I get why, I've had a similar issue, but I haven't gotten around to implementing a proper fix for it yet, since most projects I do in Parable tend to max out at around 20-30 routes or so.

What I've done in those cases is the following, which I can suggest as a work-around:

namespace Routing;

class App extends \Parable\Framework\Routing\Base
{
    /** @var array */
    protected $combinedRoutes = [];

    public function __construct(
        \Routing\Front $routingFront,
        \Routing\Admin $routingAdmin,
        \Routing\Dashboard $routingDashboard
    ) {
        $this->combinedRoutes = array_merge(
            $routingFront->get(),
            $routingAdmin->get(),
            $routingDashboard->get()
        );
    }

    public function get()
    {
        return $this->combinedRoutes;
    }
}

\Routing\App is DI-ed, so this should work. Mind you, this is a pseudo-code version, I don't have the actual code handy at the moment, but I think you'll see that this could be an option until there's an 'official' way to do it 🙂

from parable.

FaaPz avatar FaaPz commented on May 26, 2024

I like the work-around, thanks! 😄

from parable.

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.