Angular project using NgRx pattern to manage state of a system

user-create.component.ts 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. import { FormGroup, FormBuilder, Validators } from '@angular/forms';
  2. import {
  3. CreateUserFormAction,
  4. SaveUserFormAction,
  5. } from './../../../../ngrx/users/users.actions';
  6. import { Store } from '@ngrx/store';
  7. import { Component, OnInit } from '@angular/core';
  8. import { MsgState } from 'src/app/ngrx/msg.state';
  9. import { UserState } from 'src/app/ngrx/users/user.state';
  10. @Component({
  11. selector: 'app-user-create',
  12. templateUrl: './user-create.component.html',
  13. styleUrls: ['./user-create.component.css'],
  14. })
  15. export class UserCreateComponent implements OnInit {
  16. userFormGroup!: FormGroup;
  17. constructor(
  18. private store: Store<{ userReducerKey: UserState }>,
  19. private fb: FormBuilder
  20. ) {}
  21. userState!: UserState;
  22. readonly msgState = MsgState;
  23. ngOnInit(): void {
  24. this.store.dispatch(new CreateUserFormAction({}));
  25. this.store.subscribe((state) => {
  26. this.userState = state.userReducerKey;
  27. if(this.userState.msgState==this.msgState.NEW){
  28. this.userFormGroup = this.fb.group({
  29. id: [0, Validators.required],
  30. firstname: [
  31. '',
  32. [
  33. Validators.required,
  34. Validators.minLength(3),
  35. Validators.maxLength(15),
  36. ],
  37. ],
  38. lastname: [
  39. '',
  40. [
  41. Validators.required,
  42. Validators.minLength(3),
  43. Validators.maxLength(15),
  44. ],
  45. ],
  46. email: ['', [Validators.required, Validators.email]],
  47. address: this.fb.group({
  48. numRue: [0, [Validators.required, Validators.min(1)]],
  49. nomRue: [
  50. '',
  51. [
  52. Validators.required,
  53. Validators.minLength(3),
  54. Validators.maxLength(25),
  55. ],
  56. ],
  57. bp: [0, [Validators.required, Validators.min(1)]],
  58. ville: [
  59. '',
  60. [
  61. Validators.required,
  62. Validators.minLength(3),
  63. Validators.maxLength(15),
  64. ],
  65. ],
  66. pays: [
  67. '',
  68. [
  69. Validators.required,
  70. Validators.minLength(3),
  71. Validators.maxLength(15),
  72. ],
  73. ],
  74. }),
  75. });
  76. }
  77. });
  78. }
  79. onUserSave() {
  80. if (window.confirm(MsgState.CONFIRM)) {
  81. this.store.dispatch(new SaveUserFormAction(this.userFormGroup.value));
  82. }
  83. }
  84. onNewUser() {
  85. this.store.dispatch(new CreateUserFormAction({}));
  86. }
  87. }

Powered by TurnKey Linux.