exceladdincbms-v2 5.13.0 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/exceladdincbms.mjs +5 -0
- package/esm2022/lib/auth.service.mjs +56 -61
- package/esm2022/lib/base-app.service.mjs +41 -41
- package/esm2022/lib/bulk-tool.component.mjs +19 -19
- package/esm2022/lib/bulk-tool.module.mjs +51 -52
- package/esm2022/lib/constant.enum.mjs +5 -5
- package/esm2022/lib/environmentsModel.info.mjs +3 -2
- package/esm2022/lib/http-interceptor.mjs +25 -25
- package/esm2022/lib/login/login.component.mjs +111 -158
- package/esm2022/lib/materils/materils.module.mjs +177 -178
- package/esm2022/lib/menu/menu.component.mjs +187 -293
- package/esm2022/public_api.mjs +9 -9
- package/fesm2022/exceladdincbms.mjs +646 -0
- package/fesm2022/exceladdincbms.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/auth.service.d.ts +18 -20
- package/lib/base-app.service.d.ts +16 -16
- package/lib/bulk-tool.component.d.ts +8 -8
- package/lib/bulk-tool.module.d.ts +17 -17
- package/lib/constant.enum.d.ts +5 -5
- package/lib/environmentsModel.info.d.ts +9 -5
- package/lib/http-interceptor.d.ts +8 -8
- package/lib/login/login.component.d.ts +32 -32
- package/lib/materils/materils.module.d.ts +46 -46
- package/lib/menu/menu.component.d.ts +49 -51
- package/package.json +7 -7
- package/public_api.d.ts +6 -6
- package/src/styles.css +44 -0
- package/esm2022/exceladdincbms-v1.mjs +0 -5
- package/fesm2022/exceladdincbms-v1.mjs +0 -806
- package/fesm2022/exceladdincbms-v1.mjs.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exceladdincbms.mjs","sources":["../../../projects/bulk-tool/src/lib/base-app.service.ts","../../../projects/bulk-tool/src/lib/bulk-tool.component.ts","../../../projects/bulk-tool/src/lib/constant.enum.ts","../../../projects/bulk-tool/src/lib/auth.service.ts","../../../projects/bulk-tool/src/lib/login/login.component.ts","../../../projects/bulk-tool/src/lib/login/login.component.html","../../../projects/bulk-tool/src/lib/materils/materils.module.ts","../../../projects/bulk-tool/src/lib/menu/menu.component.ts","../../../projects/bulk-tool/src/lib/menu/menu.component.html","../../../projects/bulk-tool/src/lib/http-interceptor.ts","../../../projects/bulk-tool/src/lib/bulk-tool.module.ts","../../../projects/bulk-tool/src/public_api.ts","../../../projects/bulk-tool/src/exceladdincbms.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class BaseAppService {\r\n\r\n private userInfo: any;\r\n private userMenus: any;\r\n private menuName: any\r\n getUserInfo() {\r\n return this.userInfo;\r\n }\r\n setUserInfo(value) {\r\n this.userInfo = value;\r\n }\r\n removeUserInfo() {\r\n this.userInfo = null;\r\n }\r\n setUserMenus(data) {\r\n this.userMenus = data;\r\n }\r\n getUserMenus() {\r\n return this.userMenus;\r\n }\r\n clearData() {\r\n this.userInfo = undefined;\r\n this.userMenus = undefined;\r\n }\r\n setmenuNameFromBudget(name) {\r\n this.menuName = name\r\n }\r\n getmenuNameFromBudget() {\r\n return this.menuName\r\n }\r\n}\r\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'lib-BulkTool',\r\n template: `\r\n <p>\r\n bulk-tool works!\r\n </p>\r\n `,\r\n styles: []\r\n})\r\nexport class BulkToolComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit() {\r\n }\r\n\r\n}\r\n","export const Constant = {\r\n APPSERVICEURL: 'https://localhost:44348/api',\r\n APPSERVICEPRODURL: 'https://tk4addin.dev.summitenergy.com/appservices/api',\r\n\r\n INVALID: \"Invalid Username or Password\"\r\n}\r\n","import { Injectable, Injector } from '@angular/core';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport { map, Observable } from 'rxjs';\r\nimport { BaseAppService } from './base-app.service'\r\n\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class AuthService {\r\n private API_ENDPOINT: string;\r\n private menuName: string;\r\n //private RM_ENDPOINT = this.injector.get(\"config\").apiBaseUrl;\r\n //private headers = new Headers({ 'Content-Type': 'application/x-www-form-urlencoded' });\r\n constructor(private http: HttpClient, public injector: Injector, private baseAppService: BaseAppService) {\r\n this.API_ENDPOINT = this.injector.get(\"config\").baseAppApiUrl;\r\n this.menuName = this.injector.get(\"config\").moduleName;\r\n }\r\n\r\n //private postheaders = new Headers({'Content-Type': 'application/json'});\r\n login(username: string, password: string): Observable<any> {\r\n return this.http.post<any>(this.API_ENDPOINT + \"/Login\", { username, password })\r\n .pipe(map(user => {\r\n if (user.status != \"Invalid\") {\r\n console.log(user);\r\n localStorage.clear();\r\n localStorage.setItem('UserInfo', JSON.stringify(user));\r\n this.baseAppService.setUserInfo(user);\r\n }\r\n return user;\r\n }));\r\n }\r\n\r\n logout() {\r\n this.baseAppService.clearData();\r\n localStorage.clear();\r\n }\r\n\r\n public GetMenu(userId): Observable<any> {\r\n return this.http.get(this.API_ENDPOINT + '/userMenus?userId=' + userId + '&menu=' + this.menuName)\r\n .pipe(map(res => {\r\n this.baseAppService.setUserMenus(res);\r\n return res;\r\n }));\r\n }\r\n}\r\n","\r\nimport { Component, OnInit, Input } from '@angular/core';\r\nimport { Location } from \"@angular/common\";\r\nimport { Router, ActivatedRoute, RouterModule } from '@angular/router';\r\nimport { FormBuilder, FormGroup, Validators, AbstractControl } from '@angular/forms';\r\nimport { first } from 'rxjs/operators';\r\nimport { Constant } from '../constant.enum';\r\nimport { AuthService } from '../auth.service';\r\nimport {BaseAppService} from '../base-app.service'\r\n//import { url } from 'inspector';\r\nexport interface Login\r\n{\r\n [key: string]: AbstractControl\r\n}\r\n\r\n@Component({\r\n selector: 'lib-login',\r\n templateUrl: 'login.component.html',\r\n styleUrls: ['./login.component.css']\r\n})\r\n\r\nexport class LoginComponent implements OnInit {\r\n public isLoading: boolean = false;\r\n @Input() routeUrl: string;\r\n loginForm: FormGroup;\r\n submitted = false;\r\n returnUrl: string;\r\n error = '';\r\n userInfo:any;\r\n constructor(\r\n private formBuilder: FormBuilder,\r\n private route: ActivatedRoute,\r\n private router: Router,\r\n private location: Location,\r\n private authenticationService: AuthService,\r\n private baseAppService:BaseAppService) { \r\n let userObject=localStorage.getItem(\"UserInfo\")\r\n this.userInfo=JSON.parse(userObject);\r\n this.baseAppService.setUserInfo(this.userInfo);\r\n }\r\n public isvalidUser:boolean = true;\r\n ngOnInit() {\r\n this.loginForm = this.formBuilder.group({\r\n username: ['', Validators.required],\r\n password: ['', Validators.required]\r\n });\r\n this.returnUrl = this.route.snapshot.queryParams['returnUrl'] || this.routeUrl;\r\n //Checking User already logged in or not\r\n let isNavigate=localStorage.getItem(\"IsNavigate\");\r\n if (this.location.path() !== '' && this.location.path().indexOf('UserId') !== -1) {\r\n let userId=this.location.path().split('?')[1].split('UserId=')[1]\r\n if(userId==this.userInfo.userInfoId){\r\n this.router.navigate([this.returnUrl]);\r\n return;\r\n }\r\n }\r\n else if(JSON.parse(isNavigate)==true){\r\n if(this.userInfo){\r\n console.log(\"Login After naviagtion-\",this.returnUrl);\r\n localStorage.removeItem(\"IsNavigate\");\r\n this.router.navigate([this.returnUrl]);\r\n return;\r\n }\r\n }\r\n }\r\n get formsData():Login { return this.loginForm.controls; }\r\n\r\n onLogin() {\r\n this.submitted = true;\r\n this.isLoading = true;\r\n // stop here if form is invalid\r\n if (this.loginForm.invalid) {\r\n this.isLoading = false;\r\n return;\r\n }\r\n //this.submitClick = true;\r\n this.authenticationService.login(this.formsData.username.value, this.formsData.password.value)\r\n .pipe(first())\r\n .subscribe(\r\n data => {\r\n console.log(data.status);\r\n if(data.status===\"InValid\")\r\n {\r\n this.isLoading = false;\r\n this.isvalidUser=false;\r\n this.error = Constant.INVALID;\r\n this.router.navigate([\"/login\"]);\r\n }\r\n else\r\n {\r\n console.log(\"Login Success-\",this.returnUrl);\r\n this.isLoading = false;\r\n this.router.navigate([this.returnUrl]);\r\n \r\n }\r\n },\r\n error => {\r\n this.isLoading = false;\r\n this.error = Constant.INVALID;\r\n this.router.navigate([\"/login\"]);\r\n //this.submitClick = true;\r\n });\r\n }\r\n}\r\n","\r\n<div class=\"container\">\r\n <div class=\"loginForm\">\r\n <div class=\"example-sidenav-content\">\r\n <div class=\"loginWidget\">\r\n <form [formGroup]=\"loginForm\" >\r\n <h2>Login</h2>\r\n <div> </div>\r\n <div class=\"form-group\">\r\n <!-- <label for=\"username\">Username</label> -->\r\n <!-- <input type=\"text\" formControlName=\"username\" class=\"form-control\"\r\n [ngClass]=\"{ 'is-invalid': submitted && formsData.username.errors }\" /> -->\r\n <mat-form-field class=\"example-full-width\" color=\"primary\">\r\n <mat-label>Enter Username</mat-label>\r\n <input class=\"toolbar-search bxForm\" formControlName=\"username\" type=\"text\" matInput >\r\n <!-- <mat-icon matSuffix style=\"font-size: 1.2em\"></mat-icon> -->\r\n </mat-form-field>\r\n <!-- <div *ngIf=\"submitted && formsData.username.errors\" class=\"invalid-feedback\">\r\n <div *ngIf=\"formsData.username.errors.required\">Username is required</div>\r\n </div> -->\r\n </div>\r\n <div class=\"form-group\">\r\n <!-- <label for=\"password\">Password</label> -->\r\n <!-- <input type=\"password\" formControlName=\"password\" class=\"form-control\"\r\n [ngClass]=\"{ 'is-invalid': submitted && formsData.password.errors }\" /> -->\r\n <mat-form-field class=\"example-full-width\" color=\"primary\">\r\n <mat-label>Enter Password</mat-label>\r\n <input class=\"toolbar-search\" formControlName=\"password\" type=\"password\" matInput >\r\n <mat-icon matSuffix style=\"font-size:12px\"></mat-icon>\r\n </mat-form-field>\r\n <!-- <div *ngIf=\"submitted && formsData.password.errors\" class=\"invalid-feedback\">\r\n <div *ngIf=\"formsData.password.errors.required\">Password is required</div>\r\n </div> -->\r\n </div>\r\n <div class=\"form-group\">\r\n <!-- <button [disabled]=\"submitClick\" class=\"btn btn-primary\">Login</button> -->\r\n <button style=\"background-color: #0888CA; color: #fff;line-height: 21px; padding: 4px 10px !important;\" mat-button class=\"!loginForm.valid btn btn-primary\" (click)=\"onLogin()\">Login</button>\r\n </div>\r\n <div *ngIf =\"!isvalidUser\" class=\"alert alert-danger\">{{error}}</div>\r\n </form>\r\n </div>\r\n\r\n <section class=\"loade\" *ngIf=\"isLoading\">\r\n <mat-spinner color=\"black\" [diameter]=60 ></mat-spinner>\r\n <span>\r\n Logging...\r\n </span>\r\n </section>\r\n\r\n \r\n <!-- <button type=\"button\" mat-button (click)=\"drawer.toggle()\">\r\n Toggle sidenav\r\n</button> -->\r\n </div>\r\n </div>\r\n </div>\r\n\r\n\r\n\r\n","\r\nimport { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { DragDropModule } from '@angular/cdk/drag-drop';\r\nimport { ScrollingModule } from '@angular/cdk/scrolling';\r\nimport { CdkTableModule } from '@angular/cdk/table';\r\nimport { CdkTreeModule } from '@angular/cdk/tree';\r\nimport { A11yModule } from '@angular/cdk/a11y';\r\nimport { OverlayModule } from '@angular/cdk/overlay';\r\n\r\nimport { MatAutocompleteModule } from '@angular/material/autocomplete';\r\nimport { MatBadgeModule } from '@angular/material/badge';\r\nimport { MatBottomSheetModule } from '@angular/material/bottom-sheet';\r\nimport { MatButtonModule } from '@angular/material/button';\r\nimport { MatButtonToggleModule } from '@angular/material/button-toggle';\r\nimport { MatCardModule } from '@angular/material/card';\r\nimport { MatCheckboxModule } from '@angular/material/checkbox';\r\nimport { MatChipsModule } from '@angular/material/chips';\r\nimport { MatDatepickerModule } from '@angular/material/datepicker';\r\nimport { MatDialogModule } from '@angular/material/dialog';\r\nimport { MatDividerModule } from '@angular/material/divider';\r\nimport { MatExpansionModule } from '@angular/material/expansion';\r\nimport { MatGridListModule } from '@angular/material/grid-list';\r\nimport { MatIconModule } from '@angular/material/icon';\r\nimport { MatInputModule } from '@angular/material/input';\r\nimport { MatListModule } from '@angular/material/list';\r\nimport { MatMenuModule } from '@angular/material/menu';\r\nimport { MatNativeDateModule } from '@angular/material/core';\r\nimport { MatPaginatorModule } from '@angular/material/paginator';\r\nimport { MatProgressBarModule } from '@angular/material/progress-bar';\r\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\r\nimport { MatRadioModule } from '@angular/material/radio';\r\nimport { MatRippleModule } from '@angular/material/core';\r\nimport { MatSelectModule } from '@angular/material/select';\r\nimport { MatSidenavModule } from '@angular/material/sidenav';\r\nimport { MatSliderModule } from '@angular/material/slider';\r\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\r\nimport { MatSnackBarModule } from '@angular/material/snack-bar';\r\nimport { MatSortModule } from '@angular/material/sort';\r\nimport { MatStepperModule } from '@angular/material/stepper';\r\nimport { MatTableModule } from '@angular/material/table';\r\nimport { MatTabsModule } from '@angular/material/tabs';\r\nimport { MatToolbarModule } from '@angular/material/toolbar';\r\nimport { MatTooltipModule } from '@angular/material/tooltip';\r\nimport { MatTreeModule } from '@angular/material/tree';\r\n\r\n\r\n\r\n@NgModule({\r\n exports: [\r\n A11yModule,\r\n CdkTableModule,\r\n CdkTreeModule,\r\n DragDropModule,\r\n MatAutocompleteModule,\r\n MatBadgeModule,\r\n MatBottomSheetModule,\r\n MatButtonModule,\r\n MatButtonToggleModule,\r\n MatCardModule,\r\n MatCheckboxModule,\r\n MatChipsModule,\r\n MatStepperModule,\r\n MatDatepickerModule,\r\n MatDialogModule,\r\n MatDividerModule,\r\n MatExpansionModule,\r\n MatGridListModule,\r\n MatIconModule,\r\n MatInputModule,\r\n MatListModule,\r\n MatMenuModule,\r\n MatNativeDateModule,\r\n MatPaginatorModule,\r\n MatProgressBarModule,\r\n MatProgressSpinnerModule,\r\n MatRadioModule,\r\n MatRippleModule,\r\n MatSelectModule,\r\n MatSidenavModule,\r\n MatSliderModule,\r\n MatSlideToggleModule,\r\n MatSnackBarModule,\r\n MatSortModule,\r\n MatTableModule,\r\n MatTabsModule,\r\n MatToolbarModule,\r\n MatTooltipModule,\r\n MatTreeModule,\r\n ScrollingModule,\r\n OverlayModule\r\n ]\r\n})\r\n\r\n\r\nexport class MaterilsModule { }\r\n","import { Component, OnInit, ViewChild, Injectable, Injector } from '@angular/core';\r\nimport { AuthService } from '../auth.service';\r\nimport { Router, ActivatedRoute, RouterModule } from '@angular/router';\r\nimport { BaseAppService } from '../base-app.service'\r\n\r\n\r\nexport interface Menu {\r\n displaytext: string;\r\n displayorder: number;\r\n menuId: number;\r\n menulevel: number;\r\n parentMenuId: number;\r\n targetAction: string;\r\n targetServer: string;\r\n parentMenuName: string;\r\n children: any[]\r\n}\r\n\r\n@Component({\r\n selector: 'lib-menu',\r\n templateUrl: './menu.component.html',\r\n styleUrls: ['./menu.component.css']\r\n})\r\nexport class MenuComponent implements OnInit {\r\n\r\n public async: any;\r\n public MenuMode: string = \"over\";\r\n public message = '';\r\n public tooltext: any = \"CBMS\"\r\n public menuName: string;\r\n public childMenu: string;\r\n public isLoading: boolean = false;\r\n public userInfo: any;\r\n public moduleNameFromExcel: string;\r\n public IsPermissionExists: boolean = true;\r\n public messages: string[] = [];\r\n public MenuData: Menu[]\r\n public RootUrl: string;\r\n public menuFromExcel: any;\r\n public navigateMsg: string;\r\n public result: any;\r\n constructor(private authenticationService: AuthService, private route: ActivatedRoute,\r\n private router: Router, public injector: Injector, private baseAppService: BaseAppService) {\r\n this.RootUrl = this.injector.get(\"config\").rootUrl; //getting from environment file from application accessing BaseApp\r\n this.menuName = this.injector.get(\"config\").moduleName; //getting from environment file from application accessing BaseApp\r\n this.userInfo = this.baseAppService.getUserInfo();\r\n this.childMenu = localStorage.getItem(\"childMenu\")\r\n if (!this.userInfo) { //incase getUserInfo service fails.\r\n let userDetails = localStorage.getItem(\"UserInfo\");\r\n this.userInfo = JSON.parse(userDetails);\r\n }\r\n }\r\n ngOnInit() {\r\n console.log(\"Url came base from application -\", window.location.href);\r\n this.isLoading = true;\r\n this.GetCBMSMenu();\r\n\r\n }\r\n public GetCBMSMenu() {\r\n if (this.userInfo) {\r\n this.authenticationService.GetMenu(this.userInfo.userInfoId).subscribe(data => {\r\n this.MenuData = data;\r\n this.isLoading = false;\r\n if (this.MenuData) {\r\n this.menuFromExcel = this.baseAppService.getmenuNameFromBudget()\r\n console.log(\"MenuFromExcel\", this.menuFromExcel);\r\n if (!this.menuFromExcel) {\r\n let CurrentMenu = data.find(e => e.parentMenuName == this.menuName) //Finding Which application Accessing BaseApp\r\n this.tooltext = CurrentMenu ? CurrentMenu.parentMenuName : \"CBMS\";\r\n console.log(\"Isdownload\", this.userInfo.isDownload);\r\n if (!this.userInfo.isDownload) {\r\n if (CurrentMenu) {\r\n if (CurrentMenu.children.length == 0) {\r\n this.router.navigate([CurrentMenu.targetAction.split(\"app\")[1]]);\r\n }\r\n else {\r\n if (this.childMenu) {\r\n this.navigateToChildMenu(CurrentMenu)\r\n }\r\n else {\r\n this.router.navigate([CurrentMenu.children[0].targetAction.split(\"app\")[1]]);\r\n return;\r\n }\r\n }\r\n }\r\n else {\r\n console.log(\"Redirecting to the First application in menu Tab\")\r\n this.navigateToAnotherMenu(this.MenuData[0]); // Redirecting to the First application in menu Tab \r\n }\r\n }\r\n }\r\n else {\r\n let menu = this.MenuData.find(e => e.displaytext == this.menuFromExcel)\r\n if (menu) {\r\n if (!this.childMenu) {\r\n console.log(\"noChildMenu\")\r\n this.navigateToAnotherMenu(this.MenuData.find(e => e.displaytext == this.menuFromExcel));\r\n }\r\n else {\r\n console.log(\"childMenuThere\")\r\n this.navigateToChildMenu(this.MenuData.find(e => e.parentMenuName == this.menuName))\r\n }\r\n }\r\n else {\r\n this.navigateToAnotherMenu(this.MenuData[0]);\r\n }\r\n }\r\n }\r\n else {\r\n this.IsPermissionExists = false; //Notifing User that he or she doednot have permission if menuData is empty.\r\n }\r\n this.isLoading = false;\r\n });\r\n }\r\n }\r\n\r\n\r\n navigateToChildMenu(CurrentMenu) {\r\n localStorage.removeItem(\"childMenu\");\r\n let childrenMenu = CurrentMenu.children.filter(e => e.displaytext == this.childMenu)\r\n console.log(\"childrenMenu\", childrenMenu);\r\n if (childrenMenu.length > 0) {\r\n this.router.navigate([childrenMenu[0].targetAction.split(\"app\")[1]]);\r\n return;\r\n }\r\n else {\r\n this.router.navigate([CurrentMenu.targetAction.split(\"app\")[1]]);\r\n }\r\n }\r\n\r\n listItemClick(link) {\r\n this.isLoading = true;\r\n if (link.parentMenuName == this.menuName) {\r\n if (link.parentMenuId == 0) {\r\n if (link.children.length > 0) {\r\n console.log(\"navigationUrl\", link.children[0].targetAction)\r\n this.isLoading = false;\r\n this.router.navigate([link.children[0].targetAction.split(\"app\")[1]]);\r\n }\r\n else {\r\n console.log(\"navigationUrl\", link.targetAction)\r\n this.isLoading = false;\r\n this.router.navigate([link.targetAction.split(\"app\")[1]]);\r\n }\r\n }\r\n else {\r\n localStorage.setItem(\"childMenu\", link.displaytext);\r\n console.log(\"navigationUrl\", link.targetAction)\r\n this.isLoading = false;\r\n this.router.navigate([link.targetAction.split(\"app\")[1]]);\r\n }\r\n }\r\n else {\r\n this.isLoading = false;\r\n this.navigateToAnotherMenu(link)\r\n }\r\n }\r\n navigateToAnotherMenu(link) {\r\n this.navigateMsg = \"...Redirecting to \" + link.parentMenuName\r\n let navLink = link.targetAction\r\n navLink = link.targetAction.split(\"app\")[0] + \"app\"\r\n if (link.parentMenuId != 0) {\r\n localStorage.setItem(\"childMenu\", link.displaytext);\r\n }\r\n this.isLoading = false;\r\n localStorage.setItem(\"IsNavigate\", \"true\");\r\n let navigateUrl = this.navigateUrl(navLink)\r\n console.log(\"navigating to\", link.displaytext)\r\n window.location.assign(navigateUrl);\r\n return;\r\n }\r\n navigateUrl(Url: string) {\r\n let replacements = Url.match(/\\{.*?\\}/g);\r\n let value = \"\";\r\n if (replacements) {\r\n replacements.forEach(element => {\r\n if (element == \"{userId}\") {\r\n value = this.userInfo.userInfoId;\r\n }\r\n Url = Url.replace(element, value);\r\n });\r\n }\r\n return this.RootUrl + Url;\r\n }\r\n onLogOut() {\r\n this.authenticationService.logout();\r\n this.router.navigate([\"/login\"]);\r\n }\r\n\r\n}\r\n","\r\n<div class=\"example-container\">\r\n\r\n <nav class=\"nav-header\">\r\n <ul class=\"nav\"> \r\n <li class=\"nav-time\"> \r\n <a>\r\n <i class=\"fa fa-bars\" style=\"font-size:24px\"></i>\r\n </a>\r\n <ul>\r\n <div *ngFor=\"let parent of MenuData\">\r\n <li *ngIf=\"parent.children && parent.children.length > 0\">\r\n <a class=\"item\"> {{parent.displaytext}}</a>\r\n <ul>\r\n <li *ngFor=\"let child of parent.children\">\r\n <a (click)=\"listItemClick(child)\">{{child.displaytext}}</a>\r\n </li>\r\n </ul>\r\n </li>\r\n <li *ngIf=\"!parent.children || parent.children.length === 0\">\r\n <a (click)=\"listItemClick(parent)\">{{parent.displaytext}}</a>\r\n </li>\r\n </div>\r\n <li> \r\n <a (click)=\"onLogOut()\">Logout</a>\r\n </li>\r\n </ul>\r\n </li>\r\n <li class=\"nav-item\">\r\n <h5 style=\"padding-top:12px;\"> {{tooltext}}</h5>\r\n </li>\r\n </ul>\r\n </nav>\r\n <div *ngIf=\"IsPermissionExists==false\">User Does't have permission to access any of Excel applications</div>\r\n <router-outlet></router-outlet>\r\n </div>\r\n <div class=\"navigateMsg\" *ngIf=\"navigateMsg\">\r\n {{navigateMsg}}\r\n </div>\r\n <section class=\"loade\" *ngIf=\"isLoading\">\r\n <mat-spinner color=\"black\" [diameter]=60 ></mat-spinner>\r\n <span>\r\n Loading...\r\n </span>\r\n </section>\r\n ","import { Injectable } from '@angular/core';\r\nimport { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';\r\nimport { Observable } from 'rxjs';\r\n@Injectable()\r\nexport class HttpLibInterceptor implements HttpInterceptor {\r\n intercept(request: HttpRequest<any>, newRequest: HttpHandler): Observable<HttpEvent<any>> {\r\n // add authorization header to request\r\n //Get Token data from local storage\r\n //let tokenInfo = JSON.parse(localStorage.getItem('TokenInfo'));\r\n\r\n // if (tokenInfo && tokenInfo.token) {\r\n // request = request.clone({\r\n // setHeaders: {\r\n // Authorization: `Bearer ${tokenInfo.token}`,\r\n // \"Content-Type\": 'application/json'\r\n // }\r\n // });\r\n // }\r\n console.log(request);\r\n return newRequest.handle(request);\r\n }\r\n}\r\n","import { NgModule, ModuleWithProviders } from '@angular/core';\r\nimport { BulkToolComponent } from './bulk-tool.component';\r\nimport { LoginComponent } from './login/login.component';\r\nimport { MaterilsModule } from './materils/materils.module';\r\nimport { MenuComponent } from './menu/menu.component';\r\n\r\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\r\nimport { CommonModule } from '@angular/common';\r\nimport { RouterModule } from '@angular/router';\r\nimport { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';\r\nimport { HttpLibInterceptor } from './http-interceptor';\r\nimport { AuthService } from './auth.service';\r\nimport { BaseAppService } from './base-app.service';\r\nimport { IEnvironmentsInfo } from '../lib/environmentsModel.info';\r\n\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n MaterilsModule,\r\n FormsModule,\r\n CommonModule,\r\n RouterModule,\r\n ReactiveFormsModule,\r\n HttpClientModule,\r\n ],\r\n declarations: [BulkToolComponent, LoginComponent, MenuComponent],\r\n exports: [BulkToolComponent, LoginComponent, MenuComponent],\r\n providers: [{ provide: HTTP_INTERCEPTORS, useClass: HttpLibInterceptor, multi: true }, AuthService, BaseAppService]\r\n})\r\nexport class BulkToolModule {\r\n static forRoot(config: IEnvironmentsInfo): ModuleWithProviders<BulkToolModule> {\r\n return {\r\n ngModule: BulkToolModule,\r\n providers: [{ provide: 'config', useValue: config }, BaseAppService]\r\n };\r\n }\r\n\r\n}\r\n","/*\r\n * Public API Surface of bulk-tool\r\n */\r\n\r\nexport * from './lib/base-app.service';\r\nexport * from './lib/bulk-tool.component';\r\nexport * from './lib/bulk-tool.module';\r\nexport * from './lib/login/login.component';\r\nexport * from './lib/menu/menu.component';\r\nexport * from './lib/materils/materils.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["i2.BaseAppService","i1","i4.AuthService","i5.BaseAppService","i1.AuthService","i3.BaseAppService","i4","i5"],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
/// <amd-module name="exceladdincbms
|
|
5
|
-
export * from './public_api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="exceladdincbms" />
|
|
5
|
+
export * from './public_api';
|
package/lib/auth.service.d.ts
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { BaseAppService } from './base-app.service';
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
private
|
|
10
|
-
|
|
11
|
-
private
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
20
|
-
}
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { BaseAppService } from './base-app.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AuthService {
|
|
7
|
+
private http;
|
|
8
|
+
injector: Injector;
|
|
9
|
+
private baseAppService;
|
|
10
|
+
private API_ENDPOINT;
|
|
11
|
+
private menuName;
|
|
12
|
+
constructor(http: HttpClient, injector: Injector, baseAppService: BaseAppService);
|
|
13
|
+
login(username: string, password: string): Observable<any>;
|
|
14
|
+
logout(): void;
|
|
15
|
+
GetMenu(userId: any): Observable<any>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
18
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class BaseAppService {
|
|
3
|
-
private userInfo;
|
|
4
|
-
private userMenus;
|
|
5
|
-
private menuName;
|
|
6
|
-
getUserInfo(): any;
|
|
7
|
-
setUserInfo(value: any): void;
|
|
8
|
-
removeUserInfo(): void;
|
|
9
|
-
setUserMenus(data: any): void;
|
|
10
|
-
getUserMenus(): any;
|
|
11
|
-
clearData(): void;
|
|
12
|
-
setmenuNameFromBudget(name: any): void;
|
|
13
|
-
getmenuNameFromBudget(): any;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAppService, never>;
|
|
15
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BaseAppService>;
|
|
16
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BaseAppService {
|
|
3
|
+
private userInfo;
|
|
4
|
+
private userMenus;
|
|
5
|
+
private menuName;
|
|
6
|
+
getUserInfo(): any;
|
|
7
|
+
setUserInfo(value: any): void;
|
|
8
|
+
removeUserInfo(): void;
|
|
9
|
+
setUserMenus(data: any): void;
|
|
10
|
+
getUserMenus(): any;
|
|
11
|
+
clearData(): void;
|
|
12
|
+
setmenuNameFromBudget(name: any): void;
|
|
13
|
+
getmenuNameFromBudget(): any;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAppService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseAppService>;
|
|
16
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class BulkToolComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BulkToolComponent, "lib-BulkTool", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BulkToolComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BulkToolComponent, "lib-BulkTool", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { IEnvironmentsInfo } from '../lib/environmentsModel.info';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./bulk-tool.component";
|
|
5
|
-
import * as i2 from "./login/login.component";
|
|
6
|
-
import * as i3 from "./menu/menu.component";
|
|
7
|
-
import * as i4 from "./materils/materils.module";
|
|
8
|
-
import * as i5 from "@angular/forms";
|
|
9
|
-
import * as i6 from "@angular/common";
|
|
10
|
-
import * as i7 from "@angular/router";
|
|
11
|
-
import * as i8 from "@angular/common/http";
|
|
12
|
-
export declare class BulkToolModule {
|
|
13
|
-
static forRoot(config: IEnvironmentsInfo): ModuleWithProviders<BulkToolModule>;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BulkToolModule, [typeof i1.BulkToolComponent, typeof i2.LoginComponent, typeof i3.MenuComponent], [typeof i4.MaterilsModule, typeof i5.FormsModule, typeof i6.CommonModule, typeof i7.RouterModule, typeof i5.ReactiveFormsModule, typeof i8.HttpClientModule], [typeof i1.BulkToolComponent, typeof i2.LoginComponent, typeof i3.MenuComponent]>;
|
|
16
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BulkToolModule>;
|
|
17
|
-
}
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { IEnvironmentsInfo } from '../lib/environmentsModel.info';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./bulk-tool.component";
|
|
5
|
+
import * as i2 from "./login/login.component";
|
|
6
|
+
import * as i3 from "./menu/menu.component";
|
|
7
|
+
import * as i4 from "./materils/materils.module";
|
|
8
|
+
import * as i5 from "@angular/forms";
|
|
9
|
+
import * as i6 from "@angular/common";
|
|
10
|
+
import * as i7 from "@angular/router";
|
|
11
|
+
import * as i8 from "@angular/common/http";
|
|
12
|
+
export declare class BulkToolModule {
|
|
13
|
+
static forRoot(config: IEnvironmentsInfo): ModuleWithProviders<BulkToolModule>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BulkToolModule, [typeof i1.BulkToolComponent, typeof i2.LoginComponent, typeof i3.MenuComponent], [typeof i4.MaterilsModule, typeof i5.FormsModule, typeof i6.CommonModule, typeof i7.RouterModule, typeof i5.ReactiveFormsModule, typeof i8.HttpClientModule], [typeof i1.BulkToolComponent, typeof i2.LoginComponent, typeof i3.MenuComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BulkToolModule>;
|
|
17
|
+
}
|
package/lib/constant.enum.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare const Constant: {
|
|
2
|
-
APPSERVICEURL: string;
|
|
3
|
-
APPSERVICEPRODURL: string;
|
|
4
|
-
INVALID: string;
|
|
5
|
-
};
|
|
1
|
+
export declare const Constant: {
|
|
2
|
+
APPSERVICEURL: string;
|
|
3
|
+
APPSERVICEPRODURL: string;
|
|
4
|
+
INVALID: string;
|
|
5
|
+
};
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
export interface IEnvironmentsInfo {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export interface IEnvironmentsInfo {
|
|
2
|
+
production: true;
|
|
3
|
+
baseAppApiUrl: string;
|
|
4
|
+
rootUrl: string;
|
|
5
|
+
moduleName: string;
|
|
6
|
+
MenuName?: "Budget";
|
|
7
|
+
Url?: string;
|
|
8
|
+
RootUrl?: string;
|
|
9
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class HttpLibInterceptor implements HttpInterceptor {
|
|
5
|
-
intercept(request: HttpRequest<any>, newRequest: HttpHandler): Observable<HttpEvent<any>>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HttpLibInterceptor, never>;
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<HttpLibInterceptor>;
|
|
8
|
-
}
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HttpLibInterceptor implements HttpInterceptor {
|
|
5
|
+
intercept(request: HttpRequest<any>, newRequest: HttpHandler): Observable<HttpEvent<any>>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpLibInterceptor, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HttpLibInterceptor>;
|
|
8
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Location } from "@angular/common";
|
|
3
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
4
|
-
import { FormBuilder, FormGroup, AbstractControl } from '@angular/forms';
|
|
5
|
-
import { AuthService } from '../auth.service';
|
|
6
|
-
import { BaseAppService } from '../base-app.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export interface Login {
|
|
9
|
-
[key: string]: AbstractControl;
|
|
10
|
-
}
|
|
11
|
-
export declare class LoginComponent implements OnInit {
|
|
12
|
-
private formBuilder;
|
|
13
|
-
private route;
|
|
14
|
-
private router;
|
|
15
|
-
private location;
|
|
16
|
-
private authenticationService;
|
|
17
|
-
private baseAppService;
|
|
18
|
-
isLoading: boolean;
|
|
19
|
-
routeUrl: string;
|
|
20
|
-
loginForm: FormGroup;
|
|
21
|
-
submitted: boolean;
|
|
22
|
-
returnUrl: string;
|
|
23
|
-
error: string;
|
|
24
|
-
userInfo: any;
|
|
25
|
-
constructor(formBuilder: FormBuilder, route: ActivatedRoute, router: Router, location: Location, authenticationService: AuthService, baseAppService: BaseAppService);
|
|
26
|
-
isvalidUser: boolean;
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
get formsData(): Login;
|
|
29
|
-
onLogin(): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "lib-login", never, { "routeUrl": "routeUrl"; }, {}, never, never, false, never>;
|
|
32
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Location } from "@angular/common";
|
|
3
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { FormBuilder, FormGroup, AbstractControl } from '@angular/forms';
|
|
5
|
+
import { AuthService } from '../auth.service';
|
|
6
|
+
import { BaseAppService } from '../base-app.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export interface Login {
|
|
9
|
+
[key: string]: AbstractControl;
|
|
10
|
+
}
|
|
11
|
+
export declare class LoginComponent implements OnInit {
|
|
12
|
+
private formBuilder;
|
|
13
|
+
private route;
|
|
14
|
+
private router;
|
|
15
|
+
private location;
|
|
16
|
+
private authenticationService;
|
|
17
|
+
private baseAppService;
|
|
18
|
+
isLoading: boolean;
|
|
19
|
+
routeUrl: string;
|
|
20
|
+
loginForm: FormGroup;
|
|
21
|
+
submitted: boolean;
|
|
22
|
+
returnUrl: string;
|
|
23
|
+
error: string;
|
|
24
|
+
userInfo: any;
|
|
25
|
+
constructor(formBuilder: FormBuilder, route: ActivatedRoute, router: Router, location: Location, authenticationService: AuthService, baseAppService: BaseAppService);
|
|
26
|
+
isvalidUser: boolean;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
get formsData(): Login;
|
|
29
|
+
onLogin(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "lib-login", never, { "routeUrl": { "alias": "routeUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
}
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/cdk/a11y";
|
|
3
|
-
import * as i2 from "@angular/cdk/table";
|
|
4
|
-
import * as i3 from "@angular/cdk/tree";
|
|
5
|
-
import * as i4 from "@angular/cdk/drag-drop";
|
|
6
|
-
import * as i5 from "@angular/material/autocomplete";
|
|
7
|
-
import * as i6 from "@angular/material/badge";
|
|
8
|
-
import * as i7 from "@angular/material/bottom-sheet";
|
|
9
|
-
import * as i8 from "@angular/material/button";
|
|
10
|
-
import * as i9 from "@angular/material/button-toggle";
|
|
11
|
-
import * as i10 from "@angular/material/card";
|
|
12
|
-
import * as i11 from "@angular/material/checkbox";
|
|
13
|
-
import * as i12 from "@angular/material/chips";
|
|
14
|
-
import * as i13 from "@angular/material/stepper";
|
|
15
|
-
import * as i14 from "@angular/material/datepicker";
|
|
16
|
-
import * as i15 from "@angular/material/dialog";
|
|
17
|
-
import * as i16 from "@angular/material/divider";
|
|
18
|
-
import * as i17 from "@angular/material/expansion";
|
|
19
|
-
import * as i18 from "@angular/material/grid-list";
|
|
20
|
-
import * as i19 from "@angular/material/icon";
|
|
21
|
-
import * as i20 from "@angular/material/input";
|
|
22
|
-
import * as i21 from "@angular/material/list";
|
|
23
|
-
import * as i22 from "@angular/material/menu";
|
|
24
|
-
import * as i23 from "@angular/material/core";
|
|
25
|
-
import * as i24 from "@angular/material/paginator";
|
|
26
|
-
import * as i25 from "@angular/material/progress-bar";
|
|
27
|
-
import * as i26 from "@angular/material/progress-spinner";
|
|
28
|
-
import * as i27 from "@angular/material/radio";
|
|
29
|
-
import * as i28 from "@angular/material/select";
|
|
30
|
-
import * as i29 from "@angular/material/sidenav";
|
|
31
|
-
import * as i30 from "@angular/material/slider";
|
|
32
|
-
import * as i31 from "@angular/material/slide-toggle";
|
|
33
|
-
import * as i32 from "@angular/material/snack-bar";
|
|
34
|
-
import * as i33 from "@angular/material/sort";
|
|
35
|
-
import * as i34 from "@angular/material/table";
|
|
36
|
-
import * as i35 from "@angular/material/tabs";
|
|
37
|
-
import * as i36 from "@angular/material/toolbar";
|
|
38
|
-
import * as i37 from "@angular/material/tooltip";
|
|
39
|
-
import * as i38 from "@angular/material/tree";
|
|
40
|
-
import * as i39 from "@angular/cdk/scrolling";
|
|
41
|
-
import * as i40 from "@angular/cdk/overlay";
|
|
42
|
-
export declare class MaterilsModule {
|
|
43
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MaterilsModule, never>;
|
|
44
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterilsModule, never, never, [typeof i1.A11yModule, typeof i2.CdkTableModule, typeof i3.CdkTreeModule, typeof i4.DragDropModule, typeof i5.MatAutocompleteModule, typeof i6.MatBadgeModule, typeof i7.MatBottomSheetModule, typeof i8.MatButtonModule, typeof i9.MatButtonToggleModule, typeof i10.MatCardModule, typeof i11.MatCheckboxModule, typeof i12.MatChipsModule, typeof i13.MatStepperModule, typeof i14.MatDatepickerModule, typeof i15.MatDialogModule, typeof i16.MatDividerModule, typeof i17.MatExpansionModule, typeof i18.MatGridListModule, typeof i19.MatIconModule, typeof i20.MatInputModule, typeof i21.MatListModule, typeof i22.MatMenuModule, typeof i23.MatNativeDateModule, typeof i24.MatPaginatorModule, typeof i25.MatProgressBarModule, typeof i26.MatProgressSpinnerModule, typeof i27.MatRadioModule, typeof i23.MatRippleModule, typeof i28.MatSelectModule, typeof i29.MatSidenavModule, typeof i30.MatSliderModule, typeof i31.MatSlideToggleModule, typeof i32.MatSnackBarModule, typeof i33.MatSortModule, typeof i34.MatTableModule, typeof i35.MatTabsModule, typeof i36.MatToolbarModule, typeof i37.MatTooltipModule, typeof i38.MatTreeModule, typeof i39.ScrollingModule, typeof i40.OverlayModule]>;
|
|
45
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MaterilsModule>;
|
|
46
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/a11y";
|
|
3
|
+
import * as i2 from "@angular/cdk/table";
|
|
4
|
+
import * as i3 from "@angular/cdk/tree";
|
|
5
|
+
import * as i4 from "@angular/cdk/drag-drop";
|
|
6
|
+
import * as i5 from "@angular/material/autocomplete";
|
|
7
|
+
import * as i6 from "@angular/material/badge";
|
|
8
|
+
import * as i7 from "@angular/material/bottom-sheet";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/button-toggle";
|
|
11
|
+
import * as i10 from "@angular/material/card";
|
|
12
|
+
import * as i11 from "@angular/material/checkbox";
|
|
13
|
+
import * as i12 from "@angular/material/chips";
|
|
14
|
+
import * as i13 from "@angular/material/stepper";
|
|
15
|
+
import * as i14 from "@angular/material/datepicker";
|
|
16
|
+
import * as i15 from "@angular/material/dialog";
|
|
17
|
+
import * as i16 from "@angular/material/divider";
|
|
18
|
+
import * as i17 from "@angular/material/expansion";
|
|
19
|
+
import * as i18 from "@angular/material/grid-list";
|
|
20
|
+
import * as i19 from "@angular/material/icon";
|
|
21
|
+
import * as i20 from "@angular/material/input";
|
|
22
|
+
import * as i21 from "@angular/material/list";
|
|
23
|
+
import * as i22 from "@angular/material/menu";
|
|
24
|
+
import * as i23 from "@angular/material/core";
|
|
25
|
+
import * as i24 from "@angular/material/paginator";
|
|
26
|
+
import * as i25 from "@angular/material/progress-bar";
|
|
27
|
+
import * as i26 from "@angular/material/progress-spinner";
|
|
28
|
+
import * as i27 from "@angular/material/radio";
|
|
29
|
+
import * as i28 from "@angular/material/select";
|
|
30
|
+
import * as i29 from "@angular/material/sidenav";
|
|
31
|
+
import * as i30 from "@angular/material/slider";
|
|
32
|
+
import * as i31 from "@angular/material/slide-toggle";
|
|
33
|
+
import * as i32 from "@angular/material/snack-bar";
|
|
34
|
+
import * as i33 from "@angular/material/sort";
|
|
35
|
+
import * as i34 from "@angular/material/table";
|
|
36
|
+
import * as i35 from "@angular/material/tabs";
|
|
37
|
+
import * as i36 from "@angular/material/toolbar";
|
|
38
|
+
import * as i37 from "@angular/material/tooltip";
|
|
39
|
+
import * as i38 from "@angular/material/tree";
|
|
40
|
+
import * as i39 from "@angular/cdk/scrolling";
|
|
41
|
+
import * as i40 from "@angular/cdk/overlay";
|
|
42
|
+
export declare class MaterilsModule {
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaterilsModule, never>;
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterilsModule, never, never, [typeof i1.A11yModule, typeof i2.CdkTableModule, typeof i3.CdkTreeModule, typeof i4.DragDropModule, typeof i5.MatAutocompleteModule, typeof i6.MatBadgeModule, typeof i7.MatBottomSheetModule, typeof i8.MatButtonModule, typeof i9.MatButtonToggleModule, typeof i10.MatCardModule, typeof i11.MatCheckboxModule, typeof i12.MatChipsModule, typeof i13.MatStepperModule, typeof i14.MatDatepickerModule, typeof i15.MatDialogModule, typeof i16.MatDividerModule, typeof i17.MatExpansionModule, typeof i18.MatGridListModule, typeof i19.MatIconModule, typeof i20.MatInputModule, typeof i21.MatListModule, typeof i22.MatMenuModule, typeof i23.MatNativeDateModule, typeof i24.MatPaginatorModule, typeof i25.MatProgressBarModule, typeof i26.MatProgressSpinnerModule, typeof i27.MatRadioModule, typeof i23.MatRippleModule, typeof i28.MatSelectModule, typeof i29.MatSidenavModule, typeof i30.MatSliderModule, typeof i31.MatSlideToggleModule, typeof i32.MatSnackBarModule, typeof i33.MatSortModule, typeof i34.MatTableModule, typeof i35.MatTabsModule, typeof i36.MatToolbarModule, typeof i37.MatTooltipModule, typeof i38.MatTreeModule, typeof i39.ScrollingModule, typeof i40.OverlayModule]>;
|
|
45
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MaterilsModule>;
|
|
46
|
+
}
|
|
@@ -1,51 +1,49 @@
|
|
|
1
|
-
import { OnInit, Injector } from '@angular/core';
|
|
2
|
-
import { AuthService } from '../auth.service';
|
|
3
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
4
|
-
import { BaseAppService } from '../base-app.service';
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
private
|
|
20
|
-
private
|
|
21
|
-
|
|
22
|
-
private
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "lib-menu", never, {}, {}, never, never, false, never>;
|
|
51
|
-
}
|
|
1
|
+
import { OnInit, Injector } from '@angular/core';
|
|
2
|
+
import { AuthService } from '../auth.service';
|
|
3
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { BaseAppService } from '../base-app.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface Menu {
|
|
7
|
+
displaytext: string;
|
|
8
|
+
displayorder: number;
|
|
9
|
+
menuId: number;
|
|
10
|
+
menulevel: number;
|
|
11
|
+
parentMenuId: number;
|
|
12
|
+
targetAction: string;
|
|
13
|
+
targetServer: string;
|
|
14
|
+
parentMenuName: string;
|
|
15
|
+
children: any[];
|
|
16
|
+
}
|
|
17
|
+
export declare class MenuComponent implements OnInit {
|
|
18
|
+
private authenticationService;
|
|
19
|
+
private route;
|
|
20
|
+
private router;
|
|
21
|
+
injector: Injector;
|
|
22
|
+
private baseAppService;
|
|
23
|
+
async: any;
|
|
24
|
+
MenuMode: string;
|
|
25
|
+
message: string;
|
|
26
|
+
tooltext: any;
|
|
27
|
+
menuName: string;
|
|
28
|
+
childMenu: string;
|
|
29
|
+
isLoading: boolean;
|
|
30
|
+
userInfo: any;
|
|
31
|
+
moduleNameFromExcel: string;
|
|
32
|
+
IsPermissionExists: boolean;
|
|
33
|
+
messages: string[];
|
|
34
|
+
MenuData: Menu[];
|
|
35
|
+
RootUrl: string;
|
|
36
|
+
menuFromExcel: any;
|
|
37
|
+
navigateMsg: string;
|
|
38
|
+
result: any;
|
|
39
|
+
constructor(authenticationService: AuthService, route: ActivatedRoute, router: Router, injector: Injector, baseAppService: BaseAppService);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
GetCBMSMenu(): void;
|
|
42
|
+
navigateToChildMenu(CurrentMenu: any): void;
|
|
43
|
+
listItemClick(link: any): void;
|
|
44
|
+
navigateToAnotherMenu(link: any): void;
|
|
45
|
+
navigateUrl(Url: string): string;
|
|
46
|
+
onLogOut(): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "lib-menu", never, {}, {}, never, never, false, never>;
|
|
49
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exceladdincbms-v2",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
5
|
+
"@angular/common": "^17.3.12",
|
|
6
|
+
"@angular/core": "^17.3.12"
|
|
7
7
|
},
|
|
8
|
-
"module": "fesm2022/exceladdincbms
|
|
8
|
+
"module": "fesm2022/exceladdincbms.mjs",
|
|
9
9
|
"typings": "index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
"./package.json": {
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
},
|
|
14
14
|
".": {
|
|
15
15
|
"types": "./index.d.ts",
|
|
16
|
-
"esm2022": "./esm2022/exceladdincbms
|
|
17
|
-
"esm": "./esm2022/exceladdincbms
|
|
18
|
-
"default": "./fesm2022/exceladdincbms
|
|
16
|
+
"esm2022": "./esm2022/exceladdincbms.mjs",
|
|
17
|
+
"esm": "./esm2022/exceladdincbms.mjs",
|
|
18
|
+
"default": "./fesm2022/exceladdincbms.mjs"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"sideEffects": false,
|
package/public_api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './lib/base-app.service';
|
|
2
|
-
export * from './lib/bulk-tool.component';
|
|
3
|
-
export * from './lib/bulk-tool.module';
|
|
4
|
-
export * from './lib/login/login.component';
|
|
5
|
-
export * from './lib/menu/menu.component';
|
|
6
|
-
export * from './lib/materils/materils.module';
|
|
1
|
+
export * from './lib/base-app.service';
|
|
2
|
+
export * from './lib/bulk-tool.component';
|
|
3
|
+
export * from './lib/bulk-tool.module';
|
|
4
|
+
export * from './lib/login/login.component';
|
|
5
|
+
export * from './lib/menu/menu.component';
|
|
6
|
+
export * from './lib/materils/materils.module';
|