UI: Menu models improvements

This commit is contained in:
Igor Kulikov 2022-01-18 11:31:40 +02:00
parent 1c2f357585
commit 8765645179
3 changed files with 2 additions and 6 deletions

View File

@ -23,7 +23,6 @@ export interface MenuSection extends HasUUID{
type: MenuSectionType; type: MenuSectionType;
path: string; path: string;
icon: string; icon: string;
notExact?: boolean;
isMdiIcon?: boolean; isMdiIcon?: boolean;
height?: string; height?: string;
pages?: Array<MenuSection>; pages?: Array<MenuSection>;

View File

@ -235,7 +235,6 @@ export class MenuService {
name: 'home.home', name: 'home.home',
type: 'link', type: 'link',
path: '/home', path: '/home',
notExact: true,
icon: 'home' icon: 'home'
}, },
{ {
@ -344,8 +343,7 @@ export class MenuService {
name: 'api-usage.api-usage', name: 'api-usage.api-usage',
type: 'link', type: 'link',
path: '/usage', path: '/usage',
icon: 'insert_chart', icon: 'insert_chart'
notExact: true
}, },
{ {
id: guid(), id: guid(),
@ -517,7 +515,6 @@ export class MenuService {
name: 'home.home', name: 'home.home',
type: 'link', type: 'link',
path: '/home', path: '/home',
notExact: true,
icon: 'home' icon: 'home'
}, },
{ {

View File

@ -16,7 +16,7 @@
--> -->
<a mat-button class="tb-button-toggle" <a mat-button class="tb-button-toggle"
routerLinkActive="tb-active" [routerLinkActiveOptions]="{exact: true}" routerLink="{{section.path}}"> routerLinkActive="tb-active" [routerLinkActiveOptions]="{paths: 'exact', queryParams: 'ignored', matrixParams: 'ignored', fragment: 'ignored'}" routerLink="{{section.path}}">
<mat-icon *ngIf="!section.isMdiIcon && section.icon != null" class="material-icons">{{section.icon}}</mat-icon> <mat-icon *ngIf="!section.isMdiIcon && section.icon != null" class="material-icons">{{section.icon}}</mat-icon>
<mat-icon *ngIf="section.isMdiIcon && section.icon != null" [svgIcon]="section.icon"></mat-icon> <mat-icon *ngIf="section.isMdiIcon && section.icon != null" [svgIcon]="section.icon"></mat-icon>
<span>{{section.name | translate}}</span> <span>{{section.name | translate}}</span>