Open Closed

Angular route patching for invisible property doesn't work as expected #7515


User avatar
0
alina@iwell.nl created
  • ABP Framework version: v8.1
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
    • Exception message and full stack trace: -
  • Steps to reproduce the issue:

We have a route.provider

@Injectable({
    providedIn: 'root',
})
export class RouteManagerService implements OnDestroy {
    private destroyed$ = new Subject<void>();

    constructor(
        private routes: RoutesService,
        private cubeSelectedService: CubeSelectedService,
    ) {}

    configureRoutes() {
        const initialRoutes: ABP.Route[] = [
            {
                path: '/overview',
                iconClass: 'fa-solid fa-grid-2',
                name: '::Menu:CustomerDashboard:Overview',
                group: 'Dashboard',
                layout: eLayoutType.application,
                requiredPolicy: 'Portal.CustomerDashboard',
                order: 0,
                invisible: true,
            },
        ];

        this.routes.add(initialRoutes);

        this.cubeSelectedService
            .getObservable()
            .pipe(
                takeUntil(this.destroyed$),
                map((cubeSelected) => {
                    this.updateRouteVisibility(
                        '::Menu:CustomerDashboard:Overview',
                        cubeSelected === null,
                    );
                }),
            )
            .subscribe();
    }

    updateRouteVisibility(name: string, invisible: boolean) {
        const route = this.routes.find((route) => route.name === name);
        if (route) {
            this.routes.patch(name, {
                iconClass: invisible ? 'fas fa-home' : 'fas fa-heart',
                invisible,
            } as Partial<ABP.Route>);
        }
    }

    ngOnDestroy() {
        this.destroyed$.next();
        this.destroyed$.complete();
    }
}

export const ROUTE_PROVIDER = [
    {
        provide: APP_INITIALIZER,
        useFactory: configureRoutes,
        deps: [RouteManagerService],
        multi: true,
    },
];

function configureRoutes(routeManager: RouteManagerService) {
    return () => routeManager.configureRoutes();
}

We need to hide and show a menu item "::Menu:CustomerDashboard:Overview" in the observable depending on the value coming. Setting invisible attribute in a patch from true->false works, from false-> true doesn't. Though the iconClass works in both ways.

Could you please help us to solve it? If this is an ABP issue or do we do something wrong? Thank you.


7 Answer(s)
  • User Avatar
    0
    alina@iwell.nl created

    It might be the reason that menu item belongs to a Dashboard group, whenever there are more items in the group while patching them with invisible status = true, all but the last one in the group are hidden (though the route for the last one is marked as invisible).

  • User Avatar
    0
    masum.ulu created
    Support Team Angular Developer

    Hi alina, Have you tried without group to toggle visiblity for Menu:CustomerDashboard:Overview menu item ? In that way we can get more detail

  • User Avatar
    0
    alina@iwell.nl created

    Hi masum.ulu,

    Thank you for your response. I've removed the group - it works as expected - while toggling invisible property. But we still need a group.

  • User Avatar
    0
    masum.ulu created
    Support Team Angular Developer

    Hi again, okay I'll try to produce with group and fix it.

  • User Avatar
    0
    alper created
    Support Team Director

    I reopened the question. If you still have this issue please inform us

  • User Avatar
    0
    william@iwell.nl created

    Thank you, alper!

  • User Avatar
    0
    alina@iwell.nl created

    masum.ulu, could you reproduce the issue? we updated the UI to the latest ABP version 8.2 and it's still reproducible.

Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 05:23