Angular project using NgRx pattern to manage state of a system

project-update.component.ts 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import { GetAllCompaniesAction } from './../../../../ngrx/companies/companies.actions';
  2. import { CompanyState } from './../../../../ngrx/companies/company.state';
  3. import { UpdateProjectWithFormDataAction } from './../../../../ngrx/projects/projects.actions';
  4. import { GetAllUsersAction } from 'src/app/ngrx/users/users.actions';
  5. import { UserState } from './../../../../ngrx/users/user.state';
  6. import { ProjectMsgState } from '../../../../shared/models/project/project.msgstate';
  7. import { Priority } from '../../../../shared/models/project/project.priority';
  8. import { MsgState } from './../../../../ngrx/msg.state';
  9. import { FormGroup, FormBuilder, Validators } from '@angular/forms';
  10. import { ProjectsService } from './../../../../shared/services/projects.service';
  11. import { ProjectState } from './../../../../ngrx/projects/project.state';
  12. import { ActivatedRoute, Router } from '@angular/router';
  13. import { Component, OnInit } from '@angular/core';
  14. import { Store } from '@ngrx/store';
  15. import { CreateProjectFormUpdateAction } from 'src/app/ngrx/projects/projects.actions';
  16. @Component({
  17. selector: 'app-project-update',
  18. templateUrl: './project-update.component.html',
  19. styleUrls: ['./project-update.component.css'],
  20. })
  21. export class ProjectUpdateComponent implements OnInit {
  22. projectId!: number;
  23. projectState!: ProjectState;
  24. projectFormGroup!: FormGroup;
  25. msgState = MsgState;
  26. constructor(
  27. activatedRoute: ActivatedRoute,
  28. private projectsService: ProjectsService,
  29. private store: Store<{
  30. projectReducerKey: ProjectState;
  31. userReducerKey: UserState;
  32. companyReducerKey: CompanyState;
  33. }>,
  34. private fb: FormBuilder,
  35. private router: Router
  36. ) {
  37. this.projectId = activatedRoute.snapshot.params['projectId'];
  38. }
  39. priorities = [
  40. Priority.PRIORITY1,
  41. Priority.PRIORITY2,
  42. Priority.PRIORITY3,
  43. Priority.PRIORITY4,
  44. Priority.PRIORITY5,
  45. ];
  46. projectMsgState = ProjectMsgState;
  47. userState!: UserState;
  48. companySate!: CompanyState;
  49. ngOnInit(): void {
  50. this.store.dispatch(new GetAllUsersAction({}));
  51. this.store
  52. .select('userReducerKey')
  53. .subscribe((userState) => (this.userState = userState));
  54. this.store.dispatch(new GetAllCompaniesAction({}));
  55. this.store.subscribe(
  56. (companyState) => (this.companySate = companyState.companyReducerKey)
  57. );
  58. this.projectsService.getProjectById(this.projectId).subscribe((project) => {
  59. this.store.dispatch(new CreateProjectFormUpdateAction(project));
  60. this.store.subscribe((state) => {
  61. this.projectState = state.projectReducerKey;
  62. this.projectFormGroup = this.fb.group({
  63. id: [this.projectState.currentProject?.id, Validators.required],
  64. projectName: [
  65. this.projectState.currentProject?.projectName,
  66. [
  67. Validators.required,
  68. Validators.minLength(5),
  69. Validators.maxLength(20),
  70. ],
  71. ],
  72. priority: [
  73. this.projectState.currentProject?.priority,
  74. Validators.required,
  75. ],
  76. creationDate: [
  77. this.projectState.currentProject?.creationDate,
  78. Validators.required,
  79. ],
  80. companyId: [
  81. this.projectState.currentProject?.companyId,
  82. Validators.required,
  83. ],
  84. description: [
  85. this.projectState.currentProject?.description,
  86. [Validators.required, Validators.minLength(15)],
  87. ],
  88. userId: [
  89. this.projectState.currentProject?.userId,
  90. Validators.required,
  91. ],
  92. state: [this.projectState.currentProject?.state, Validators.required],
  93. });
  94. });
  95. });
  96. }
  97. onProjectUpdate() {
  98. if(window.confirm(this.msgState.CONFIRM_UPDATE)){
  99. this.store.dispatch(
  100. new UpdateProjectWithFormDataAction(this.projectFormGroup.value)
  101. );
  102. }
  103. }
  104. onUpdateOk() {
  105. this.router.navigate(['/projects-management']);
  106. }
  107. }

Powered by TurnKey Linux.