shlomiassaf / ngx-ip

An Angular network address component (IPv4, IPv6 and MAC)

Home Page:https://shlomiassaf.github.io/ngx-ip

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#ngx-ip

An angular network address (IPv4, IPv6 and MAC) input component.

ngx-ip is a network address input component for IPv4/6 & MAC address formats. Each block has it's own input element for better UX control This allows highlighting specific blocks with invalid syntax, disabling specific blocks (limit pools, etc...) and more.

ngx-ip is NOT a mask component, masking is a different approach which uses one input element for the whole IP address.

Install:

npm install ngx-ip --save or yarn add ngx-ip --save

DEMO:

https://shlomiassaf.github.io/ngx-ip

Features

  • Ability to customize the internal input controls (rendering, not css)
  • Supports IPv4, IPv6 and MAC address
  • Supports IPv4 with subnet mask (ipv4WithMask)
  • Control if user can type invalid characters
  • Separator behaves like TAB (e.g: in IPv4 pressing dot (.) is like pressing TAB)
  • Support paste (single value or whole address)
  • Support copy block or address
  • Disable specific blocks
  • Highlight invalid blocks (does not replace validation)
  • Themes
  • Implements OnPush
  • Supports AOT
  • Angular packaging format included (FESM, FESM2015, UMD)

Validation

ngx-ip performs internal validation at the block level to allow invalid block highlighting.

Block validation does not replace form validation, if you use angular forms you still need to validate the output, as you need with any other control.

Should I use ngx-ip or mask?

Well, this depends on your requirements, here are some key points:

Copy / Paste

ngx-ip offers better UX but since it has multiple input elements it has a different copy/paste (CMD/CTRL-C/V) behaviour.

When pasting, ngx-ip will auto detect the content and handle full address automatically.

When copying, ngx-ip has 3 copy modes to choose from, these modes fire only if the whole text in a block is selected otherwise copy behavior is native.

  • Block mode: This is similar to the native copy mode, when fired it will copy the content of the block.
  • Address mode: This will copy the whole address.
  • Select mode: Once fired the user will be prompted to select Block or Address copy.
    This mode is not supported in browsers that does not support the document.execCommand('copy'); method (Safari 9), if set in such browser it will fallback to Block mode.

Rendering

ngx-ip renders more input elements.
This should have no effect on performance, unless you render 1000+ components and if you do you're doing something wrong :)

If these are deal breakers for you you should definitely use a mask component, here are some examples Text Mask, PrimeNG Input Mask, etc...

About

An Angular network address component (IPv4, IPv6 and MAC)

https://shlomiassaf.github.io/ngx-ip

License:MIT License


Languages

Language:TypeScript 56.4%Language:JavaScript 32.4%Language:HTML 9.0%Language:CSS 1.7%Language:Shell 0.4%