🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more
Socket
Book a DemoInstallSign in
Socket

ngx-page-click

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-page-click

Angular module to detect page events outside your wrapped component. Flexible and easy, how it should be ⇢

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

NGX Page Click

Dependency Status npm

NPM NPM

Build Status Coverage Status npm bundle size (minified + gzip) npm

ngx-page-click in action

Angular module to detect page events outside your wrapped component. Flexible and easy, how it should be ⇢

Why a module to handle click outside the element?

The idea of this component is make the process flexible, transparent and easier. So the main point is integrate this component with other components, such as:

  • Slide menu;
  • Modals elements in the page;
  • Wizards;
  • Anything else. Use your imagination 😉

It's totally transparent for you and you can integrate easier in your application, improving your user experience 🎉

Demo

Try out our demo on Stackblitz!

Install

You can get it on NPM installing ngx-page-click module as a project dependency.

npm install ngx-page-click --save

Setup

You'll need to add NgxPageClickModule to your application module. So that, the <ngx-page-click> components will be accessible in your application.

...
import { NgxPageClickModule } from 'ngx-page-click';
...
@NgModule({
  declarations: [
    YourAppComponent
  ],
  imports: [
    ...
    NgxPageClickModule,
    ...
  ],
  providers: [],
  bootstrap: [YourAppComponent]
})

export class YourAppComponent {}

After that, you can use the component in your templates, passing the configuration data into the component itself.

  • ngx-page-click: Handle the user clicks when it clicks outside your wrapped component;
<div class="item">
  <ngx-page-click
    [disabled]="disabled"
    [outsideClickHandler]="outsideClickHandler"
    [listenTo]="on"
  >
    <div><p>Content goes here</p></div>
  </ngx-page-click>
</div>

Development

Run demo locally

  • This project uses Angular CLI as base. That means you just need to run npm start and access the link http://localhost:4200 in your browser

Run tests

  • Run npm test for run tests. In case you want to test using watch, please use npm run tdd

Publish

this project is using np package to publish, which makes things straightforward. EX: np <patch|minor|major> --contents=dist/ngx-page-click

For more details, please check np package on npmjs.com

Contribute

For any type of contribution, please follow the instructions in CONTRIBUTING.md and read CODE_OF_CONDUCT.md files.

Author

Wilson Mendes (willmendesneto)

Keywords

angular

FAQs

Package last updated on 18 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts