Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425
  1. import { currentProfile } from '../services'
  2. const checkLoginStatus = (destination, nextCb) => {
  3. if(!currentProfile.isLoggedIn || !currentProfile.isComplete) {
  4. console.warn(`profile: ${currentProfile.id.value} | login: ${currentProfile.isLoggedIn} | completed: ${currentProfile.isComplete}`)
  5. }
  6. if (
  7. destination.meta.requiresCompleteProfile &&
  8. !currentProfile.isLoggedIn &&
  9. !currentProfile.isComplete
  10. ) {
  11. nextCb('survey')
  12. } else if(
  13. destination.meta.requiresCompleteProfile &&
  14. destination.meta.requiresAuth &&
  15. !currentProfile.isLoggedIn
  16. ) {
  17. nextCb('login')
  18. } else {
  19. nextCb()
  20. }
  21. }
  22. export { checkLoginStatus }