-
Notifications
You must be signed in to change notification settings - Fork 13
[Angular - NgRx - SCSS] 440: state & service refactor #527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
d3e631b
setup: get branch caught up and ready for work
838fe53
feat: refactored repository service and test
51f1a0f
feat: refactor of user service and test
5b39d92
feat: updated user service spec
930342e
feat: created dashboard store files; updated global state files; rena…
4fddc75
attempt to fix issues with service updates; some refactoring and adju…
9252dc0
feat: added auth user data to auth state; updated nav component to us…
27a7882
feat: adjusted auth call; fixed user call so home page loads
88dffe8
moved some user logic; still having reload issues and repo view issues
28e7fb6
feat: got app working again! cleaned out console logs
852ba69
rebased and fixed most files
9a33f67
fix broken tests
8051cf5
removed unused code
82dbd9d
fix: fix pr comments and most tests
913a224
fix: fixed final broken unit test
55e46a5
fix: updated test; removed unused code in user effect; new user mappi…
a0a8e2c
add todo for refactor improvements; update authUser effect to use dif…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,28 @@ | ||
| import { Component, OnInit } from '@angular/core'; | ||
| import { Component, OnDestroy, OnInit } from '@angular/core'; | ||
| import { Store } from '@ngrx/store'; | ||
| import { selectUserLoginName } from '../state/user'; | ||
| import { Subject, takeUntil } from 'rxjs'; | ||
| import { selectAuthUserName } from '../state/auth'; | ||
| import { fetchUserData } from '../state/user/user.actions'; | ||
|
|
||
| @Component({ | ||
| selector: 'app-home', | ||
| templateUrl: './home.component.html', | ||
| styleUrls: ['./home.component.scss'], | ||
| }) | ||
| export class HomeComponent implements OnInit { | ||
| user$ = this.store.select(selectUserLoginName); | ||
| export class HomeComponent implements OnInit, OnDestroy { | ||
| destroy$: Subject<boolean> = new Subject<boolean>(); | ||
| user$ = this.store.select(selectAuthUserName); | ||
|
|
||
| constructor(private store: Store) {} | ||
|
|
||
| ngOnInit() { | ||
| this.store.dispatch(fetchUserData()); | ||
| this.user$.pipe(takeUntil(this.destroy$)).subscribe((user) => { | ||
| this.store.dispatch(fetchUserData({ username: user })); | ||
| }); | ||
| } | ||
|
|
||
| ngOnDestroy(): void { | ||
| this.destroy$.next(true); | ||
| this.destroy$.unsubscribe(); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ss/src/app/repository/components/repo-header/repo-navigation/repo-navigation.component.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.