Git Product home page Git Product logo

telefonilo.js's Introduction

telefonilo.js

Build Status GitHub license npm version Open Source Helpers

Tiny JavaScript library, for making Phone call links, for modern mobile web browsers, this library is not needed, phone numbers are automatically detected, but on older ones, it's not, and if you manage to add a <a href='tel:XXX'> it may be clickable by non-mobile users and the link will lead to a wrong web page.

The name is from telefonillo means Call him (in Algerian dialect), and I found that it means Door Phone in Spanish.

TLDR: JS library for creating "click to call" links for mobile users.

Features

  • Replaces a selector containing the phone number with a clickable <a href=tel://###> if the visitor is on mobile device.
  • Accepts a decryption functions, you can write a crypted phone numbers in your markup to avoid crawlers, then pass your decryption function to Telefonilo contructor so it decrypt the phone number. Have an issue? A better trick? Open an issue, we'd like to hear from you!

Usage

  1. Inlude the telefonilo.js script in your HTML.

    • <script src="dist/telefonilo.min.js"></script>
    • Or, using a CDN
      <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/telefonilo.min.js" integrity="sha256-dHltx45U5E48U7ebYh/IR8UoQIKU5nzzYJluNLk+jLA=" crossorigin="anonymous"></script>
    • Or if you prefere NPM: npm i telefonilo.js
  2. Instantiate Telefonilo by calling Telefonilo();. you can pass a selector of the tags containing phone numbers (ex: Telefonilo('#my-phone-number') or Telefonilo('.phone-numbers')) By default Telefonilo lookup for .phone-num classes.

Example

<div class="container">
    <p>
        If you're on a mobile phone you should click on<span class="phone">0123456789</span>
    </p>
</div>
<script src="../dist/telefonilo.js"></script>
<script>Telefonilo('.phone'); </script>

Using an encryption method

To avoid spam and crawlers, you may want to encrypt phone numbers on your web pages. For example, you're using encryptionFct to encrypt phone numbers when rendering your page:

function encryptionFct(str){
    return str.split('').map(n => (n.charCodeAt(0)+5)).join('-')
}
// encryptionFct('0123456789') Will return "53-54-55-56-57-58-59-60-61-62"
    <p>
        If you're on a mobile phone you should click on
        <span class="phone">53-54-55-56-57-58-59-60-61-62</span>
    </p>

Then you can load Telefonilo and pass you decryption function, for example

    <p>
        If you're on a mobile phone you should click on
        <span class="phone">53-54-55-56-57-58-59-60-61-62</span>
    </p>

    <script src="../dist/telefonilo.js"></script>
    <script>
        var decrypTionFct = function(str) {
            return str.split('-').map(n => String.fromCharCode(n-5)).join('');
        }

        // Initialize Telefonilo inside a captcha-check callback, or after a certain time/event to avoid crawlers
        Telefonilo('.phone', true, decrypTionFct);
    </script>

Try Telephonilo.js

  • Open examples/example.html in any web browser.
  • If you're not on mobile, you should see the phone number as a normal test.
  • Press Ctrl+Shift+M, you should switch to the mobile view, you should see that the phone number became a clickable.

Output

  • Desktop users will see the output as you markup should render

If you're on a mobile phone you should click on 0123456789

  • Mobile users will see a <a href="tel://xxxx"> link to your phone number

If you're on a mobile phone you should click on 0123456789

 <p>If you're on a mobile phone you should click on <span class="phone"><a href="tel://0123456789">0123456789</a></span></p> 

Building and testing

Tests

# Running unit tests with Jest
$ npm test # Or: npm run watch-tests

# Getting the test coverage, it creates a [./coverage] directory
$ npm run coverage

Build

The file src/telefonilo.js is not production-ready, it exports the private functions in order to test them. To use Telefonilo, you can find two files (minified and unminified verion) in dist/.

# Build with Gulp, it generates two files
$ npm run build

The generated dist/telefonilo.js is a copy of src/telefonilo.js without that peice of code that exports the private functions. To verify run:

$ diff src/telefonilo.js dist/telefonilo.js

TODO

  • Write tests. Doing...
  • Setup a test API: Export private functions in developement mode, and strip that piece of code when building the minified function for production usage
  • Accept phone number decryption functions as parameter for decrypting phone numbers (Might be a anti-crawlers solution).

License

This project is licensed under the GNU GPL v3.0 License - see the LICENSE file for details

telefonilo.js's People

Contributors

fcmam5 avatar dependabot[bot] avatar amine-smahi avatar ericlemieux avatar

Stargazers

doha avatar Alaa Eddine Aouimeur avatar Faycel ARAB avatar Celestia Airdrop avatar hamida kheireddine  avatar AZZEDDINE BENEKA avatar Khadidja avatar Fabio Tea avatar Oussama Abderrahim avatar Puneet Kaura avatar Zakaria MELLAL avatar Amine avatar Aissa BOUGUERN avatar skouliou avatar Chama MAROUF avatar Behrouz Pooladrak avatar kebir abed avatar  avatar jinbe avatar abdelkader avatar  avatar Pascal Jufer avatar  avatar Joshua Boulton avatar Mohammed Benotmane avatar

Watchers

James Cloos avatar  avatar  avatar

telefonilo.js's Issues

Add missing tests

Current test coverage report (obtained by running npm run coverage ).

---------------|----------|----------|----------|----------|-------------------|
File           |  % Stmts | % Branch |  % Funcs |  % Lines | Uncovered Line #s |
---------------|----------|----------|----------|----------|-------------------|
All files      |    61.29 |    76.19 |      100 |    61.29 |                   |
 telefonilo.js |    61.29 |    76.19 |      100 |    61.29 |... 57,61,62,63,76 |
---------------|----------|----------|----------|----------|-------------------|

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.