UNPKG

ngoffline2

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.10.

74 lines (50 loc) 1.26 kB
# NgOffLine This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.10. ## Table of Contents - [About](#About) - [Imports](#Imports) - [Usage](#Usage) ## About > this package used to detect **offline/online** status and **show/hide** messages based on network status ## Imports ```js @NgModule({ declarations: [ AppComponent, ], imports: [ ... NgofflineModule // <--- here ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } ``` ## Usage ```html <ngoffline></ngoffline> ``` > The default message is *You are not connected*, but you can change it ```html <ngoffline message="Custom message"></ngoffline> ``` > You can use **directive** to display or hide any html selector ```html <div ngoffline> this message will be displayed only if the status is offline </div> <div ngonline> this message will be displayed only if the status is online </div> ``` > Network status output return **false** if the status **Offline** ```html <ngoffline (isOnline)="checkNetworkStatus($event)"></ngoffline> ``` > Or in the directive ```html <div (isOnline)="checkNetworkStatus($event)"> this message will be displayed only if the status is offline </div> ```