Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

export class MenuModel {
menuType = '';
dropDownGroups: ParentDropDownModel[] = [];
constructor(
public menu_type?: string,
public drop_downGroups?: ParentDropDownModel[]
) {
this.menuType = menu_type;
this.dropDownGroups = drop_downGroups;
}
}

export class ParentDropDownModel {
parent: DropDownModel;
haspopup = false;
dropdowns?: DropDownModel[] = [];
}

export class DropDownModel {
alt = '';
id? = '';
routerLink? = '';
disableRouterLink? = false;
navFocus? = '';
heading = '';
bindClick? = false;
guid?: number;
}

export class MenuTypes {
constructor() {}
// ------------------------- EWV Menu ----------------------------- \\
ewvBaseMenu: ParentDropDownModel[] = [
{
parent: {
alt: 'EWV Search',
id: 'NAV_EWV_1',
routerLink: '/ewvSearch',
navFocus: 'navOneFocus',
heading: 'EWV Search'
},
haspopup: false
},
{
parent: {
alt: 'PDF References',
id: 'NAV_EWV_3',
navFocus: 'navThreeFocus',
disableRouterLink: true,
heading: 'PDF References'
},
haspopup: true,
dropdowns: []
}
];

ewvAdminMenu: ParentDropDownModel[] = [
{
parent: {
alt: 'EWV Admin',
id: 'NAV_EWV_2',
routerLink: '/ewvAdmin',
navFocus: 'navTwoFocus',
heading: 'EWV Admin'
},
haspopup: false
}
];
// ------------------------- ARS Menu ----------------------------- \\
arsBaseAttachmentMenu: ParentDropDownModel = {
parent: {
alt: '275 Search Page',
id: 'NAV_ar275search_1',
routerLink: '/search275',
navFocus: 'navOneFocus',
heading: '275 Search'
},
haspopup: false,
dropdowns: []
};

arsSubmissionBaseMenu: ParentDropDownModel[] = [
{
parent: {
alt: '277 RFAI Submission Page',
id: 'NAV_ar277submit_1',
routerLink: '/rfaiSubmission',
navFocus: 'navTwoFocus',
heading: '277 RFAI Submission'
},
haspopup: false,
dropdowns: []
},
{
parent: {
alt: '277 RFAI Search Page',
id: 'NAV_ar277search_1',
routerLink: '/search277',
navFocus: 'navThreeFocus',
heading: '277 RFAI Search'
},
haspopup: false,
dropdowns: []
}
];

arsAdminMenu: ParentDropDownModel[] = [
{
parent: {
alt: 'AR Users Page',
id: 'NAV_arsUsers_1',
routerLink: '/userAdmin',
navFocus: 'navFiveFocus',
heading: 'ARS Users'
},
haspopup: false,
dropdowns: []
},
{
parent: {
alt: 'AR Admin Page',
id: 'NAV_arAdmin_1',
routerLink: '/rfaiAdmin',
navFocus: 'navSixFocus',
heading: 'ARS Admin'
},
haspopup: false,
dropdowns: []
},
{
parent: {
alt: 'AR Reports Page',
id: 'NAV_arReports_1',
routerLink: '/arsReports',
navFocus: 'navFourFocus',
heading: 'ARS Reports'
},
haspopup: false,
dropdowns: []
}
];
}

// ------------------------- FPPS Menu ----------------------------- \\

export class FppsMenuModel {
menuType = 'fpps';
dropDownGroups = [
{
parent: {
alt: 'FPPS Navigation 1',
id: 'NAV_fpps_1',
routerLink: '/home',
navFocus: 'navOneFocus',
heading: 'Home'
},
haspopup: false
},

{
parent: {
alt: 'FPPS Navigation 2',
id: 'NAV_fpps_2',
routerLink: '/nav2',
navFocus: 'navTwoFocus',
heading: 'Claims'
},
haspopup: true,
dropdowns: [
{
alt: 'Claim search',
routerLink: '/searchClaims',
heading: 'Search Claims',
id: 'claimsearch1'
},
{
alt: 'Aged Claims',
routerLink: '/agedClaims',
heading: 'Aged Claims',
id: 'agedClaims1'
},
{
alt: 'In Process Claims',
routerLink: '/inprocessClaims',
heading: 'In Process Claims',
id: 'inprocess'
},
{
alt: 'Awaiting Process Claims',
routerLink: '/inprocessClaims',
heading: 'In Process Claims',
id: 'inprocess'
},
{
alt: 'Reject Claims',
routerLink: '/rejectClaims',
heading: 'Reject Claims',
id: 'rejectClaims'
}
]
},

{
parent: {
alt: 'FPPS Navigation 3',
id: 'NAV_fpps_3',
routerLink: '/nav3',
navFocus: 'navThreeFocus',
heading: 'Tools'
},
haspopup: true,
dropdowns: [
{
alt: 'Create User',
routerLink: '/createUser',
heading: 'Create User',
id: 'createUser'
},
{
alt: 'Search / Modify User',
routerLink: '/searchUser',
heading: 'Search / Modify User',
id: 'searchUser1'
},
{
alt: 'Privacy Restrictions',
routerLink: '/privacy',
heading: 'Privacy Restrictions',
id: 'privacy'
},
{
alt: 'View User Account Requests',
routerLink: '/viewAccount',
heading: 'View User Account Requests',
id: 'viewAccount'
}
]
},
{
parent: {
alt: 'FPPS Navigation 4',
id: 'NAV_fpps_4',
routerLink: '/nav4',
navFocus: 'navFourFocus',
heading: 'Reports'
},
haspopup: true,
dropdowns: [
{
alt: 'Claims Completed',
routerLink: '/createUser',
heading: 'Create User',
id: 'createUser'
},
{
alt: 'Claims In Process',
routerLink: '/searchUser',
heading: 'Search / Modify User',
id: 'searchUser1'
},
{
alt: 'Vista Error',
routerLink: '/vista',
heading: 'Vista Error',
id: 'vista'
}
]
},
{
parent: {
alt: 'FPPS Navigation 5',
id: 'NAV_fpps_5',
routerLink: '/help',
navFocus: 'navFiveFocus',
heading: 'Help'
},
haspopup: false
}
];
}