Giter Site home page Giter Site logo

current or active route.. about laravel-menu HOT 11 CLOSED

lavary avatar lavary commented on August 17, 2024
current or active route..

from laravel-menu.

Comments (11)

lavary avatar lavary commented on August 17, 2024

I'm actually working on this feature and will push it up today.

Thanks for the comment :)

from laravel-menu.

pablomaurer avatar pablomaurer commented on August 17, 2024

That will be great =) just fell in love with you 😝

from laravel-menu.

lavary avatar lavary commented on August 17, 2024

haha. I'm glad you like the package :)

from laravel-menu.

Fuhrmann avatar Fuhrmann commented on August 17, 2024

Yeah, that would be nice. =)

from laravel-menu.

leek avatar leek commented on August 17, 2024

I accomplished this by wrapping my menu in a Route filter, e.g.:

Menu::make('myMenu', function($menu) {

    Route::filter('myFilter', function($route, $request) use ($menu) {
        // $route is the current route
        $someParameter = $route->getParameter('someParameter');

        $menu->add('Link', ['route' => ['someRouteName', 'someParameter' => $someParameter]]);
    });

});

from laravel-menu.

pablomaurer avatar pablomaurer commented on August 17, 2024

My solution if maybe somebody else is interested:

    $createMenu = function($guestMenu) {
        $guestMenu->add(trans('menu.dashboard'), array('route'  => 'dashboard'));
        $guestMenu->add('Produkte', array('route'  => 'dashboard'));
    };
    $guestMenu = Menu::make('mainNav', $createMenu);

    // here is the filter to find the active item
    $guestMenu->filter(function($item) {
        if(route($item->link->path['route']) == Request::url()) {  // but then all items must have a route
            $item->active();
        }
        return true;
    });

from laravel-menu.

dustingraham avatar dustingraham commented on August 17, 2024

I did something similar to mnewmedia:

->filter(function($item)
{
    // Check if route is active.
    if (Request::url() === rtrim($item->url(),'#/'))
    {
        $item->active();
    }

Sometimes I'd like to mark an item as active when the user is in a sub-path so I might adjust this at some point to allow some sort of wildcard matching, but for now this works.

from laravel-menu.

leek avatar leek commented on August 17, 2024

@mnewmedia / @dustingraham - You guys should check out Request::is() which allows wildcard URL matching.

Example:

Request::is('foo/*');

from laravel-menu.

dustingraham avatar dustingraham commented on August 17, 2024

@leek Yes, I'm using Request::is in another system. It just didn't seem to fall in to place here. We may need another parameter in the menu->add function for active url match or something to that effect.

from laravel-menu.

lavary avatar lavary commented on August 17, 2024

dev-master now automatically activates items and all parent nodes according to the current URI

Instead of relying on wildcard URL matching for activating parent nodes, I used Request:path() and and a recursive function to mark the parent nodes as activated; The reason is that some parent nodes might not have any URL defined.

You can choose which item to be activated (Item or Link) in options.php which resides in the package config/ directory.

<?php
// ...
'active_element' => 'item',    // item|link
// ...

from laravel-menu.

pablomaurer avatar pablomaurer commented on August 17, 2024

oh what damn fantastic create news =)

from laravel-menu.

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.