最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

angular - app.component ngOnInit loads after component ngOnInit - Stack Overflow

programmeradmin1浏览0评论

I am using a signal to store the logged in user. When loading a page I want to load the logged in user from a token. This is done in ngOnInit in appponent:

ngOnInit(): void {
// Check if `the user is logged in
const token = localStorage.getItem('token');
if (token) {
  this.userService.getUser().subscribe((user) => {
    if (user) {
      this.authService.currentUserSig.set(user)
    }
  });
} else {
  // User is not logged in, redirect to login page or perform other actions
  console.log('User is not logged in');
}

}

Within my component I want to check if a user is authenticated before loading the component, otherwise redirect to the login page:

ngOnInit(): void {
  if (this.authService.currentUserSig()) {
    this.loadStudents()
  }
  else {
    this.router.navigateByUrl('/login');
  }

}

The problem is the signal is undefined when the ngOnInit is loaded in the component because the asynchronous call in the appponent has not set the value yet. How can I make sure the logic in ngOnInit in the appponent finished loading before the component attempts to load?

I am using a signal to store the logged in user. When loading a page I want to load the logged in user from a token. This is done in ngOnInit in appponent:

ngOnInit(): void {
// Check if `the user is logged in
const token = localStorage.getItem('token');
if (token) {
  this.userService.getUser().subscribe((user) => {
    if (user) {
      this.authService.currentUserSig.set(user)
    }
  });
} else {
  // User is not logged in, redirect to login page or perform other actions
  console.log('User is not logged in');
}

}

Within my component I want to check if a user is authenticated before loading the component, otherwise redirect to the login page:

ngOnInit(): void {
  if (this.authService.currentUserSig()) {
    this.loadStudents()
  }
  else {
    this.router.navigateByUrl('/login');
  }

}

The problem is the signal is undefined when the ngOnInit is loaded in the component because the asynchronous call in the appponent has not set the value yet. How can I make sure the logic in ngOnInit in the appponent finished loading before the component attempts to load?

Share Improve this question edited 30 mins ago Naren Murali 59.8k5 gold badges44 silver badges77 bronze badges asked 9 hours ago BrianBrian 1,4799 gold badges33 silver badges51 bronze badges 1
  • check provideAppInitializer functionality – Andrei Commented 8 hours ago
Add a comment  | 

1 Answer 1

Reset to default 0

Wrap the logic in an effect, so that it is execute only when the signal is ready and has a value (anything other than undefined).

constructor(): void {
  effect(() => {
    const currentUserSig = this.authService.currentUserSig();
    if(currentUserSig !== undefined) {
      if (currentUserSig) {
        this.loadStudents()
      }
      else {
        this.router.navigateByUrl('/login');
      }
    }
  });
}

Now make sure your currentUserSig has an initial value of undefined:

@Injectable({ providedIn: 'root' })
export class authService {
  currentUserSig =  signal<string | undefined>(undefined); // initial value before setting.
  ...
}

Now after the ngOnInit runs you need to ensure it either has a valid token value, or null so that the expression is evaluated.

ngOnInit(): void {
  // Check if `the user is logged in
  const token = localStorage.getItem('token');
  if (token) {
    this.userService.getUser().subscribe((user) => {
      if (user) {
        this.authService.currentUserSig.set(user);
      } else {
        this.authService.currentUserSig.set(null);
      }
    });
  } else {
    // User is not logged in, redirect to login page or perform other actions
    console.log('User is not logged in');
    this.authService.currentUserSig.set(null);
  }
}
发布评论

评论列表(0)

  1. 暂无评论