Angular project using NgRx pattern to manage state of a system

project-nav-bar.component.ts 692B

12345678910111213141516171819202122232425
  1. import { Router } from '@angular/router';
  2. import {
  3. GetAllProjectsAction
  4. } from './../../../../ngrx/projects/projects.actions';
  5. import { Component } from '@angular/core';
  6. import { Store } from '@ngrx/store';
  7. @Component({
  8. selector: 'app-project-nav-bar',
  9. templateUrl: './project-nav-bar.component.html',
  10. styleUrls: ['./project-nav-bar.component.css'],
  11. })
  12. export class ProjectNavBarComponent {
  13. constructor(private store: Store<any>, private router: Router) {}
  14. onProjectCreate() {
  15. this.router.navigateByUrl('/project-create');
  16. }
  17. onProjectsGetAll() {
  18. this.store.dispatch(new GetAllProjectsAction({}));
  19. }
  20. onProjectsVsUsersGet() {}
  21. onProjectCompanyAssociated() {}
  22. }

Powered by TurnKey Linux.