calvh / mooden

A simple tool to track your mood
0 stars 1 forks source link

Implement logout monitoring via localStorage #30

Closed calvh closed 3 years ago

calvh commented 3 years ago

Logging out in one tab will log out in all tabs

calvh commented 3 years ago
window.addEventListener('storage', this.syncLogout) 

//....

syncLogout (event) {
  if (event.key === 'logout') {
    console.log('logged out from storage!')
    Router.push('/login')
  }
}
calvh commented 3 years ago

Merged with #27