Here I am changing some data in one component ex: change user profile picture of one module and the same profile picture should be reflected in another component of some oth
I would recommend you to store the user in some service (user-service.) When Component1 updates the user profile URL, update the user in the user-service. Make sure both the components are subscribed to the user in the user-service. This way the Component2 would always see the same user as Component1
Sample code
export class UserService {
public userReplaySubject = new ReplaySubject(1);
setUser(u: User){
this.userReplaySubject.next(u);
}
}
export class Component1 {
user: User;
constructor(private userService: UserService) {
// Will always have the latest user in the service
this.userService.userReplaySubject.subscribe(user => {
this.user = user;
});
}
updateUserProfile(){
//when the profile-url changes, update the user service
this.userService.setUser(user);
}
}
export class Component2 {
user: User;
constructor(private userService: UserService) {
// Will always have the latest user in the service
this.userService.userReplaySubject.subscribe(user => {
this.user = user;
});
}
}