Skip to content

Instantly share code, notes, and snippets.

@ankitbtanna
Forked from NetanelBasal/OfflineService-1.ts
Created March 24, 2022 18:08
Show Gist options
  • Save ankitbtanna/da03355a1b0f3b2eeeaaa7cb01d447a1 to your computer and use it in GitHub Desktop.
Save ankitbtanna/da03355a1b0f3b2eeeaaa7cb01d447a1 to your computer and use it in GitHub Desktop.
@Injectable({ providedIn: 'root' })
export class OfflineService {
constructor(private toast: HotToastService) {
fromEvent(window, 'offline').pipe(
tap(() =>
this.toast.warning('There is no internet connection', {
duration: 10_000,
})
)
).subscribe()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment