├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── addemployee │ │ ├── addemployee.component.html │ │ └── addemployee.component.ts │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── editemployee │ │ ├── editemployee.component.html │ │ └── editemployee.component.ts │ ├── employeedetail │ │ ├── employeedetail.component.html │ │ └── employeedetail.component.ts │ ├── employeelist │ │ ├── employeelist.component.html │ │ └── employeelist.component.ts │ ├── entity │ │ └── Employee.ts │ └── services │ │ └── employeeservice.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | /out-tsc 7 | # Only exists if Bazel was run 8 | /bazel-out 9 | 10 | # dependencies 11 | /node_modules 12 | 13 | # profiling files 14 | chrome-profiler-events.json 15 | speed-measure-plugin.json 16 | 17 | # IDEs and editors 18 | /.idea 19 | .project 20 | .classpath 21 | .c9/ 22 | *.launch 23 | .settings/ 24 | *.sublime-workspace 25 | 26 | # IDE - VSCode 27 | .vscode/* 28 | !.vscode/settings.json 29 | !.vscode/tasks.json 30 | !.vscode/launch.json 31 | !.vscode/extensions.json 32 | .history/* 33 | 34 | # misc 35 | /.sass-cache 36 | /connect.lock 37 | /coverage 38 | /libpeerconnection.log 39 | npm-debug.log 40 | yarn-error.log 41 | testem.log 42 | /typings 43 | 44 | # System Files 45 | .DS_Store 46 | Thumbs.db 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EmployeeManagement 2 | 3 | This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.3. 4 | 5 | ## Development server 6 | 7 | Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. 8 | 9 | ## Code scaffolding 10 | 11 | Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. 12 | 13 | ## Build 14 | 15 | Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. 16 | 17 | ## Running unit tests 18 | 19 | Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). 20 | 21 | ## Running end-to-end tests 22 | 23 | Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). 24 | 25 | ## Further help 26 | 27 | To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). 28 | -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 3 | "version": 1, 4 | "newProjectRoot": "projects", 5 | "projects": { 6 | "employee-management": { 7 | "projectType": "application", 8 | "schematics": {}, 9 | "root": "", 10 | "sourceRoot": "src", 11 | "prefix": "app", 12 | "architect": { 13 | "build": { 14 | "builder": "@angular-devkit/build-angular:browser", 15 | "options": { 16 | "outputPath": "dist/employee-management", 17 | "index": "src/index.html", 18 | "main": "src/main.ts", 19 | "polyfills": "src/polyfills.ts", 20 | "tsConfig": "tsconfig.app.json", 21 | "aot": false, 22 | "assets": [ 23 | "src/favicon.ico", 24 | "src/assets" 25 | ], 26 | "styles": [ 27 | "src/styles.css", 28 | "node_modules/primeng/resources/primeng.css", 29 | "node_modules/primeng/resources/themes/nova-light/theme.css", 30 | "node_modules/primeng/resources/primeng.min.css" 31 | ], 32 | "scripts": [] 33 | }, 34 | "configurations": { 35 | "production": { 36 | "fileReplacements": [ 37 | { 38 | "replace": "src/environments/environment.ts", 39 | "with": "src/environments/environment.prod.ts" 40 | } 41 | ], 42 | "optimization": true, 43 | "outputHashing": "all", 44 | "sourceMap": false, 45 | "extractCss": true, 46 | "namedChunks": false, 47 | "aot": true, 48 | "extractLicenses": true, 49 | "vendorChunk": false, 50 | "buildOptimizer": true, 51 | "budgets": [ 52 | { 53 | "type": "initial", 54 | "maximumWarning": "2mb", 55 | "maximumError": "5mb" 56 | } 57 | ] 58 | } 59 | } 60 | }, 61 | "serve": { 62 | "builder": "@angular-devkit/build-angular:dev-server", 63 | "options": { 64 | "browserTarget": "employee-management:build" 65 | }, 66 | "configurations": { 67 | "production": { 68 | "browserTarget": "employee-management:build:production" 69 | } 70 | } 71 | }, 72 | "extract-i18n": { 73 | "builder": "@angular-devkit/build-angular:extract-i18n", 74 | "options": { 75 | "browserTarget": "employee-management:build" 76 | } 77 | }, 78 | "test": { 79 | "builder": "@angular-devkit/build-angular:karma", 80 | "options": { 81 | "main": "src/test.ts", 82 | "polyfills": "src/polyfills.ts", 83 | "tsConfig": "tsconfig.spec.json", 84 | "karmaConfig": "karma.conf.js", 85 | "assets": [ 86 | "src/favicon.ico", 87 | "src/assets" 88 | ], 89 | "styles": [ 90 | "src/styles.css" 91 | ], 92 | "scripts": [] 93 | } 94 | }, 95 | "lint": { 96 | "builder": "@angular-devkit/build-angular:tslint", 97 | "options": { 98 | "tsConfig": [ 99 | "tsconfig.app.json", 100 | "tsconfig.spec.json", 101 | "e2e/tsconfig.json" 102 | ], 103 | "exclude": [ 104 | "**/node_modules/**" 105 | ] 106 | } 107 | }, 108 | "e2e": { 109 | "builder": "@angular-devkit/build-angular:protractor", 110 | "options": { 111 | "protractorConfig": "e2e/protractor.conf.js", 112 | "devServerTarget": "employee-management:serve" 113 | }, 114 | "configurations": { 115 | "production": { 116 | "devServerTarget": "employee-management:serve:production" 117 | } 118 | } 119 | } 120 | } 121 | }}, 122 | "defaultProject": "employee-management" 123 | } -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- 1 | # This file is used by the build system to adjust CSS and JS output to support the specified browsers below. 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | 5 | # You can see what browsers were selected by your queries by running: 6 | # npx browserslist 7 | 8 | > 0.5% 9 | last 2 versions 10 | Firefox ESR 11 | not dead 12 | not IE 9-11 # For IE 9-11 support, remove 'not'. -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | // Protractor configuration file, see link for more information 3 | // https://github.com/angular/protractor/blob/master/lib/config.ts 4 | 5 | const { SpecReporter } = require('jasmine-spec-reporter'); 6 | 7 | /** 8 | * @type { import("protractor").Config } 9 | */ 10 | exports.config = { 11 | allScriptsTimeout: 11000, 12 | specs: [ 13 | './src/**/*.e2e-spec.ts' 14 | ], 15 | capabilities: { 16 | 'browserName': 'chrome' 17 | }, 18 | directConnect: true, 19 | baseUrl: 'http://localhost:4200/', 20 | framework: 'jasmine', 21 | jasmineNodeOpts: { 22 | showColors: true, 23 | defaultTimeoutInterval: 30000, 24 | print: function() {} 25 | }, 26 | onPrepare() { 27 | require('ts-node').register({ 28 | project: require('path').join(__dirname, './tsconfig.json') 29 | }); 30 | jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })); 31 | } 32 | }; -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | import { browser, logging } from 'protractor'; 3 | 4 | describe('workspace-project App', () => { 5 | let page: AppPage; 6 | 7 | beforeEach(() => { 8 | page = new AppPage(); 9 | }); 10 | 11 | it('should display welcome message', () => { 12 | page.navigateTo(); 13 | expect(page.getTitleText()).toEqual('Welcome to employee-management!'); 14 | }); 15 | 16 | afterEach(async () => { 17 | // Assert that there are no errors emitted from the browser 18 | const logs = await browser.manage().logs().get(logging.Type.BROWSER); 19 | expect(logs).not.toContain(jasmine.objectContaining({ 20 | level: logging.Level.SEVERE, 21 | } as logging.Entry)); 22 | }); 23 | }); 24 | -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get(browser.baseUrl) as Promise; 6 | } 7 | 8 | getTitleText() { 9 | return element(by.css('app-root h1')).getText() as Promise; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- 1 | // Karma configuration file, see link for more information 2 | // https://karma-runner.github.io/1.0/config/configuration-file.html 3 | 4 | module.exports = function (config) { 5 | config.set({ 6 | basePath: '', 7 | frameworks: ['jasmine', '@angular-devkit/build-angular'], 8 | plugins: [ 9 | require('karma-jasmine'), 10 | require('karma-chrome-launcher'), 11 | require('karma-jasmine-html-reporter'), 12 | require('karma-coverage-istanbul-reporter'), 13 | require('@angular-devkit/build-angular/plugins/karma') 14 | ], 15 | client: { 16 | clearContext: false // leave Jasmine Spec Runner output visible in browser 17 | }, 18 | coverageIstanbulReporter: { 19 | dir: require('path').join(__dirname, './coverage/employee-management'), 20 | reports: ['html', 'lcovonly', 'text-summary'], 21 | fixWebpackSourcePaths: true 22 | }, 23 | reporters: ['progress', 'kjhtml'], 24 | port: 9876, 25 | colors: true, 26 | logLevel: config.LOG_INFO, 27 | autoWatch: true, 28 | browsers: ['Chrome'], 29 | singleRun: false, 30 | restartOnFileChange: true 31 | }); 32 | }; 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "employee-management", 3 | "version": "0.0.0", 4 | "scripts": { 5 | "ng": "ng", 6 | "start": "ng serve", 7 | "build": "ng build", 8 | "test": "ng test", 9 | "lint": "ng lint", 10 | "e2e": "ng e2e" 11 | }, 12 | "private": true, 13 | "dependencies": { 14 | "@angular/animations": "~8.0.1", 15 | "@angular/cdk": "^8.0.1", 16 | "@angular/common": "~8.0.1", 17 | "@angular/compiler": "~8.0.1", 18 | "@angular/core": "~8.0.1", 19 | "@angular/forms": "~8.0.1", 20 | "@angular/platform-browser": "~8.0.1", 21 | "@angular/platform-browser-dynamic": "~8.0.1", 22 | "@angular/router": "~8.0.1", 23 | "primeng": "^8.0.0", 24 | "rxjs": "~6.4.0", 25 | "tslib": "^1.9.0", 26 | "zone.js": "~0.9.1" 27 | }, 28 | "devDependencies": { 29 | "@angular-devkit/build-angular": "~0.800.0", 30 | "@angular/cli": "~8.0.3", 31 | "@angular/compiler-cli": "~8.0.1", 32 | "@angular/language-service": "~8.0.1", 33 | "@types/node": "~8.9.4", 34 | "@types/jasmine": "~3.3.8", 35 | "@types/jasminewd2": "~2.0.3", 36 | "codelyzer": "^5.0.0", 37 | "jasmine-core": "~3.4.0", 38 | "jasmine-spec-reporter": "~4.2.1", 39 | "karma": "~4.1.0", 40 | "karma-chrome-launcher": "~2.2.0", 41 | "karma-coverage-istanbul-reporter": "~2.0.1", 42 | "karma-jasmine": "~2.0.1", 43 | "karma-jasmine-html-reporter": "^1.4.0", 44 | "protractor": "~5.4.0", 45 | "ts-node": "~7.0.0", 46 | "tslint": "~5.15.0", 47 | "typescript": "~3.4.3" 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /src/app/addemployee/addemployee.component.html: -------------------------------------------------------------------------------- 1 | 2 |

First Name

3 | 4 | 5 | 6 | 7 |

Last Name

8 | 9 | 10 | 11 | 12 |

Age

13 | 14 | 15 | 16 | 17 |

Designation

18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | -------------------------------------------------------------------------------- /src/app/addemployee/addemployee.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | import { EmployeeService } from '../services/employeeservice.service'; 3 | import { Router } from '@angular/router'; 4 | import { Employee } from '../entity/Employee'; 5 | 6 | @Component({ 7 | templateUrl: './addemployee.component.html' 8 | }) 9 | export class AddemployeeComponent { 10 | 11 | firstname:string; 12 | lastname:string; 13 | age:number; 14 | designation:string; 15 | employee: Employee; 16 | 17 | // Services injected in constructor 18 | constructor(private employeeService: EmployeeService, private router: Router) { 19 | } 20 | 21 | // Method to save an employee 22 | saveEmployee(){ 23 | this.employee = new Employee(this.makeRandomID(), this.firstname, this.lastname, this.age, this.designation); 24 | this.employeeService.addEmployee(this.employee); 25 | this.router.navigate(["Employees"]); 26 | } 27 | 28 | // Method to cancel the add operation 29 | cancelEmployee(){ 30 | this.router.navigate(["Employees"]); 31 | } 32 | 33 | // Creates random id for employee 34 | makeRandomID(): string { 35 | var text = ""; 36 | var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; 37 | 38 | for (var i = 0; i < 10; i++) 39 | text += possible.charAt(Math.floor(Math.random() * possible.length)); 40 | 41 | return text; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html' 6 | }) 7 | export class AppComponent { 8 | } 9 | -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { BrowserModule } from '@angular/platform-browser'; 2 | import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; 3 | import { NgModule } from '@angular/core'; 4 | import {ButtonModule} from 'primeng/button'; 5 | import {PanelModule} from 'primeng/panel'; 6 | import {CardModule} from 'primeng/card'; 7 | 8 | import { AppComponent } from './app.component'; 9 | import { EmployeedetailComponent } from './employeedetail/employeedetail.component'; 10 | import { AddemployeeComponent } from './addemployee/addemployee.component'; 11 | import { EditemployeeComponent } from './editemployee/editemployee.component'; 12 | import { RouterModule, Routes } from '@angular/router'; 13 | import { EmployeeListComponent } from './employeelist/employeelist.component'; 14 | import {InputTextModule} from 'primeng/inputtext'; 15 | import { FormsModule } from '@angular/forms'; 16 | import { DropdownModule } from 'primeng/dropdown'; 17 | 18 | const routes: Routes = [ 19 | { path:"Employees", component:EmployeeListComponent }, 20 | { path:"AddEmployee", component:AddemployeeComponent }, 21 | { path:"EditEmployee/:id", component:EditemployeeComponent }, 22 | { path:"**", redirectTo:'Employees' }, 23 | ] 24 | 25 | @NgModule({ 26 | declarations: [ 27 | AppComponent, 28 | EmployeedetailComponent, 29 | AddemployeeComponent, 30 | EditemployeeComponent, 31 | EmployeeListComponent 32 | ], 33 | imports: [ 34 | BrowserModule, 35 | BrowserAnimationsModule, 36 | FormsModule, 37 | ButtonModule, 38 | DropdownModule, 39 | PanelModule, 40 | CardModule, 41 | InputTextModule, 42 | RouterModule.forRoot(routes, {onSameUrlNavigation: "reload"}) 43 | ], 44 | bootstrap: [AppComponent] 45 | }) 46 | export class AppModule { } 47 | -------------------------------------------------------------------------------- /src/app/editemployee/editemployee.component.html: -------------------------------------------------------------------------------- 1 | 2 |

First Name

3 | 4 | 5 | 6 | 7 |

Last Name

8 | 9 | 10 | 11 | 12 |

Age

13 | 14 | 15 | 16 | 17 |

Designation

18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | -------------------------------------------------------------------------------- /src/app/editemployee/editemployee.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; 2 | import { Employee } from '../entity/Employee'; 3 | import { ActivatedRoute } from '@angular/router'; 4 | import { EmployeeService } from '../services/employeeservice.service'; 5 | import { Router } from '@angular/router/'; 6 | 7 | @Component({ 8 | templateUrl: './editemployee.component.html' 9 | }) 10 | export class EditemployeeComponent implements OnInit { 11 | 12 | employee: Employee; 13 | 14 | // Services injected in constructor 15 | constructor(private employeeService: EmployeeService, private route: ActivatedRoute, private router: Router) { } 16 | 17 | // Initializes variables 18 | ngOnInit() { 19 | var id = this.route.snapshot.params["id"]; 20 | this.employee = this.employeeService.getEmployee(id); 21 | } 22 | 23 | // Method to update and employee 24 | updateEmployee(){ 25 | this.employeeService.updateEmployee(this.employee); 26 | this.router.navigate(["Employees"]); 27 | } 28 | 29 | // Method to cancel update employee operation 30 | cancelEmployee(){ 31 | this.router.navigate(["Employees"]); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/app/employeedetail/employeedetail.component.html: -------------------------------------------------------------------------------- 1 | 2 |
{{employee.firstname}} {{employee.lastname}}
3 |
Age: {{employee.age}} Years
4 |
{{employee.designation}}
5 | 6 | 7 | 8 | 9 |
10 | -------------------------------------------------------------------------------- /src/app/employeedetail/employeedetail.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, Input, Output, EventEmitter } from '@angular/core'; 2 | import { EmployeeService } from '../services/employeeservice.service'; 3 | import { Router } from '@angular/router'; 4 | import { Employee } from '../entity/Employee'; 5 | 6 | @Component({ 7 | selector: 'app-employeedetail', 8 | templateUrl: './employeedetail.component.html' 9 | }) 10 | export class EmployeedetailComponent { 11 | 12 | // Input variable to display properties of an employee 13 | @Input() employee: Employee; 14 | 15 | // Output variable used to tell the parent component to refesh the employee list after successful delete 16 | @Output() refreshEmployeeList: EventEmitter = new EventEmitter(); 17 | 18 | // Service injected in constructor 19 | constructor(private employeeService: EmployeeService, private router: Router) { 20 | } 21 | 22 | // Method to edit employee details 23 | editEmployee(){ 24 | this.router.navigate(["EditEmployee/"+ this.employee.id]); 25 | } 26 | 27 | // Method to delete an employee 28 | deleteEmployee(employeeToBeDeleted: Employee){ 29 | var result = confirm("Are you sure, you want to delete this Employee?"); 30 | if (result) { 31 | this.employeeService.deleteEmployee(this.employee.id); 32 | this.refreshEmployeeList.emit(true); 33 | this.router.navigate(["Employees"]); 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /src/app/employeelist/employeelist.component.html: -------------------------------------------------------------------------------- 1 | Search: 2 | 3 |

4 | 5 |
6 | 7 | 8 |
9 |
-------------------------------------------------------------------------------- /src/app/employeelist/employeelist.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { EmployeeService } from '../services/employeeservice.service'; 3 | import { Router } from '@angular/router'; 4 | import { Employee } from '../entity/Employee'; 5 | 6 | @Component({ 7 | selector: 'app-employeelist', 8 | templateUrl: './employeelist.component.html' 9 | }) 10 | export class EmployeeListComponent implements OnInit { 11 | _listFilterBy: string; 12 | allEmployees: Employee[]; 13 | filteredList: Employee[]; 14 | 15 | // Service injected in constructor 16 | constructor(private employeeService:EmployeeService, private router: Router) { } 17 | 18 | // Gets filter by value from the search box 19 | get listFilterBy(): string { 20 | return this._listFilterBy; 21 | } 22 | 23 | // Sets filter by value from the search box 24 | set listFilterBy(value: string) { 25 | this._listFilterBy = value; 26 | this.filteredList = this._listFilterBy ? this.performFilter(this._listFilterBy) : this.allEmployees; 27 | } 28 | 29 | // Method to filter the employees on basis of filter by value 30 | performFilter(filterBy: string): Employee[] { 31 | filterBy = filterBy.toLocaleLowerCase(); 32 | return this.allEmployees.filter((employee: Employee) => employee.firstname.toLocaleLowerCase().indexOf(filterBy) !== -1 || 33 | employee.lastname.toLocaleLowerCase().indexOf(filterBy) !== -1); 34 | } 35 | 36 | // Initializes all employees list from employee service 37 | ngOnInit() { 38 | this.allEmployees = this.employeeService.getAllEmployees(); 39 | this.filteredList = this.allEmployees; 40 | this._listFilterBy = ""; 41 | } 42 | 43 | // Method to add an employee to the list 44 | addEmployee(){ 45 | this.router.navigate(["AddEmployee"]); 46 | } 47 | 48 | // Method to refresh the employee list after successful delete 49 | refreshList(){ 50 | this.allEmployees = this.employeeService.getAllEmployees(); 51 | this.filteredList = this.allEmployees; 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/app/entity/Employee.ts: -------------------------------------------------------------------------------- 1 | export class Employee { 2 | id:string; 3 | firstname:string; 4 | lastname:string; 5 | age:number; 6 | designation:string; 7 | 8 | constructor(id:string, 9 | firstname:string, 10 | lastname:string, 11 | age:number, 12 | designation:string){ 13 | this.id = id; 14 | this.firstname = firstname; 15 | this.lastname = lastname; 16 | this.age = age; 17 | this.designation = designation; 18 | } 19 | } -------------------------------------------------------------------------------- /src/app/services/employeeservice.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@angular/core'; 2 | import { Employee } from '../entity/Employee'; 3 | 4 | @Injectable({ 5 | providedIn:'root' 6 | }) 7 | export class EmployeeService { 8 | 9 | // In-memory list of employees 10 | allEmployees:Employee[] = [ 11 | { 12 | "id": "1", 13 | "firstname": "Lalit", 14 | "lastname": "Aggarwal", 15 | "age": 26, 16 | "designation": "Associate Lead, Technology" 17 | } 18 | ]; 19 | 20 | // Returns all the employees 21 | getAllEmployees():Employee[]{ 22 | return this.allEmployees; 23 | } 24 | 25 | // Adds an employee to employee list 26 | addEmployee(employee:Employee){ 27 | this.allEmployees.push(employee); 28 | } 29 | 30 | // Update employee details 31 | updateEmployee(employee:Employee){ 32 | var updateEmployee = this.allEmployees.find(emp => emp.id == employee.id); 33 | updateEmployee.firstname = employee.firstname; 34 | updateEmployee.lastname = employee.lastname; 35 | updateEmployee.age = employee.age; 36 | updateEmployee.designation = employee.designation; 37 | } 38 | 39 | // Deletes an employee from employee list 40 | deleteEmployee(id:string){ 41 | this.allEmployees = this.allEmployees.filter(employee => employee.id != id); 42 | } 43 | 44 | // Returns an employee with passed employee id from employee list 45 | getEmployee(id:string):Employee{ 46 | return this.allEmployees.find(emp => emp.id == id); 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflowjs-com/Angular8-CRUD-employee-management/aa99524432a5e81f970f807fc33edc72b78e98d6/src/assets/.gitkeep -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // This file can be replaced during build by using the `fileReplacements` array. 2 | // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. 3 | // The list of file replacements can be found in `angular.json`. 4 | 5 | export const environment = { 6 | production: false 7 | }; 8 | 9 | /* 10 | * For easier debugging in development mode, you can import the following file 11 | * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. 12 | * 13 | * This import should be commented out in production mode because it will have a negative impact 14 | * on performance if an error is thrown. 15 | */ 16 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI. 17 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflowjs-com/Angular8-CRUD-employee-management/aa99524432a5e81f970f807fc33edc72b78e98d6/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Employee Management 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.error(err)); 13 | -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This file includes polyfills needed by Angular and is loaded before the app. 3 | * You can add your own extra polyfills to this file. 4 | * 5 | * This file is divided into 2 sections: 6 | * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. 7 | * 2. Application imports. Files imported after ZoneJS that should be loaded before your main 8 | * file. 9 | * 10 | * The current setup is for so-called "evergreen" browsers; the last versions of browsers that 11 | * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), 12 | * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. 13 | * 14 | * Learn more in https://angular.io/guide/browser-support 15 | */ 16 | 17 | /*************************************************************************************************** 18 | * BROWSER POLYFILLS 19 | */ 20 | 21 | /** IE10 and IE11 requires the following for NgClass support on SVG elements */ 22 | // import 'classlist.js'; // Run `npm install --save classlist.js`. 23 | 24 | /** 25 | * Web Animations `@angular/platform-browser/animations` 26 | * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. 27 | * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). 28 | */ 29 | // import 'web-animations-js'; // Run `npm install --save web-animations-js`. 30 | 31 | /** 32 | * By default, zone.js will patch all possible macroTask and DomEvents 33 | * user can disable parts of macroTask/DomEvents patch by setting following flags 34 | * because those flags need to be set before `zone.js` being loaded, and webpack 35 | * will put import in the top of bundle, so user need to create a separate file 36 | * in this directory (for example: zone-flags.ts), and put the following flags 37 | * into that file, and then add the following code before importing zone.js. 38 | * import './zone-flags.ts'; 39 | * 40 | * The flags allowed in zone-flags.ts are listed here. 41 | * 42 | * The following flags will work for all browsers. 43 | * 44 | * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame 45 | * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick 46 | * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames 47 | * 48 | * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js 49 | * with the following flag, it will bypass `zone.js` patch for IE/Edge 50 | * 51 | * (window as any).__Zone_enable_cross_context_check = true; 52 | * 53 | */ 54 | 55 | /*************************************************************************************************** 56 | * Zone JS is required by default for Angular itself. 57 | */ 58 | import 'zone.js/dist/zone'; // Included with Angular CLI. 59 | 60 | 61 | /*************************************************************************************************** 62 | * APPLICATION IMPORTS 63 | */ 64 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- 1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files 2 | 3 | import 'zone.js/dist/zone-testing'; 4 | import { getTestBed } from '@angular/core/testing'; 5 | import { 6 | BrowserDynamicTestingModule, 7 | platformBrowserDynamicTesting 8 | } from '@angular/platform-browser-dynamic/testing'; 9 | 10 | declare const require: any; 11 | 12 | // First, initialize the Angular testing environment. 13 | getTestBed().initTestEnvironment( 14 | BrowserDynamicTestingModule, 15 | platformBrowserDynamicTesting() 16 | ); 17 | // Then we find all the tests. 18 | const context = require.context('./', true, /\.spec\.ts$/); 19 | // And load the modules. 20 | context.keys().map(context); 21 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "include": [ 8 | "src/**/*.ts" 9 | ], 10 | "exclude": [ 11 | "src/test.ts", 12 | "src/**/*.spec.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "baseUrl": "./", 5 | "outDir": "./dist/out-tsc", 6 | "sourceMap": true, 7 | "declaration": false, 8 | "downlevelIteration": true, 9 | "emitDecoratorMetadata": true, 10 | "experimentalDecorators": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "importHelpers": true, 14 | "target": "es2015", 15 | "typeRoots": [ 16 | "node_modules/@types" 17 | ], 18 | "lib": [ 19 | "es2018", 20 | "dom" 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts", 12 | "src/polyfills.ts" 13 | ], 14 | "include": [ 15 | "src/**/*.spec.ts", 16 | "src/**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint:recommended", 3 | "rules": { 4 | "array-type": false, 5 | "arrow-parens": false, 6 | "deprecation": { 7 | "severity": "warn" 8 | }, 9 | "component-class-suffix": true, 10 | "contextual-lifecycle": true, 11 | "directive-class-suffix": true, 12 | "directive-selector": [ 13 | true, 14 | "attribute", 15 | "app", 16 | "camelCase" 17 | ], 18 | "component-selector": [ 19 | true, 20 | "element", 21 | "app", 22 | "kebab-case" 23 | ], 24 | "import-blacklist": [ 25 | true, 26 | "rxjs/Rx" 27 | ], 28 | "interface-name": false, 29 | "max-classes-per-file": false, 30 | "max-line-length": [ 31 | true, 32 | 140 33 | ], 34 | "member-access": false, 35 | "member-ordering": [ 36 | true, 37 | { 38 | "order": [ 39 | "static-field", 40 | "instance-field", 41 | "static-method", 42 | "instance-method" 43 | ] 44 | } 45 | ], 46 | "no-consecutive-blank-lines": false, 47 | "no-console": [ 48 | true, 49 | "debug", 50 | "info", 51 | "time", 52 | "timeEnd", 53 | "trace" 54 | ], 55 | "no-empty": false, 56 | "no-inferrable-types": [ 57 | true, 58 | "ignore-params" 59 | ], 60 | "no-non-null-assertion": true, 61 | "no-redundant-jsdoc": true, 62 | "no-switch-case-fall-through": true, 63 | "no-use-before-declare": true, 64 | "no-var-requires": false, 65 | "object-literal-key-quotes": [ 66 | true, 67 | "as-needed" 68 | ], 69 | "object-literal-sort-keys": false, 70 | "ordered-imports": false, 71 | "quotemark": [ 72 | true, 73 | "single" 74 | ], 75 | "trailing-comma": false, 76 | "no-conflicting-lifecycle": true, 77 | "no-host-metadata-property": true, 78 | "no-input-rename": true, 79 | "no-inputs-metadata-property": true, 80 | "no-output-native": true, 81 | "no-output-on-prefix": true, 82 | "no-output-rename": true, 83 | "no-outputs-metadata-property": true, 84 | "template-banana-in-box": true, 85 | "template-no-negated-async": true, 86 | "use-lifecycle-interface": true, 87 | "use-pipe-transform-interface": true 88 | }, 89 | "rulesDirectory": [ 90 | "codelyzer" 91 | ] 92 | } --------------------------------------------------------------------------------