RocketChat/Autolinker.js

Name: Autolinker.js

Owner: Rocket.Chat

Description: Utility to Automatically Link URLs, Email Addresses, Phone Numbers, Twitter handles, and Hashtags in a given block of text/HTML.

Created: 2015-06-15 01:40:39.0

Updated: 2016-08-31 22:39:39.0

Pushed: 2015-10-19 12:02:26.0

Homepage:

Size: 2795

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Autolinker.js

Because I had so much trouble finding a good auto-linking implementation out in the wild, I decided to roll my own. It seemed that everything I found out there was either an implementation that didn't cover every case, or was just limited in one way or another.

So, this utility attempts to handle everything. It:

Hope that this utility helps you as well!

Installation
Download

Simply clone or download the zip of the project, and link to either dist/Autolinker.js or dist/Autolinker.min.js with a script tag:

ipt src="path/to/Autolinker.min.js"></script>
Using with the Bower package manager:

Command line:

r install Autolinker.js --save
Using with Node.js via npm:

Command Line:

install autolinker --save

JavaScript:

Autolinker = require( 'autolinker' );
ote: npm wants an all-lowercase package name, but the utility is a class and
hould be aliased with a capital letter
Usage

Using the static link() method:

linkedText = Autolinker.link( textToAutolink[, options] );

Using as a class:

autolinker = new Autolinker( [ options ] );

linkedText = autolinker.link( textToAutoLink );

Note: if using the same options to autolink multiple pieces of html/text, it is slightly more efficient to create a single Autolinker instance, and run the link() method repeatedly (i.e. use the “class” form above).

Example:
linkedText = Autolinker.link( "Check out google.com", { className: "myLink" } );
roduces: "Check out <a class="myLink myLink-url" href="http://google.com" target="_blank">google.com</a>"
Options

These are the options which may be specified for linking. These are specified by providing an Object as the second parameter to Autolinker.link(). These include:

For example, if you wanted to disable links from opening in new windows, you could do:

linkedText = Autolinker.link( "Check out google.com", { newWindow: false } );
roduces: "Check out <a href="http://google.com">google.com</a>"

And if you wanted to truncate the length of URLs (while also not opening in a new window), you could do:

linkedText = Autolinker.link( "http://www.yahoo.com/some/long/path/to/a/file", { truncate: 25, newWindow: false } );
roduces: "<a href="http://www.yahoo.com/some/long/path/to/a/file">yahoo.com/some/long/pat..</a>"
More Examples

One could update an entire DOM element that has unlinked text to auto-link them as such:

myTextEl = document.getElementById( 'text' );
xtEl.innerHTML = Autolinker.link( myTextEl.innerHTML );

Using the same pre-configured Autolinker instance in multiple locations of a codebase (usually by dependency injection):

autolinker = new Autolinker( { newWindow: false, truncate: 25 } );

.

linker.link( "Check out http://www.yahoo.com/some/long/path/to/a/file" );
roduces: "Check out <a href="http://www.yahoo.com/some/long/path/to/a/file">yahoo.com/some/long/pat..</a>"

.

linker.link( "Go to www.google.com" );
roduces: "Go to <a href="http://www.google.com">google.com</a>"
Custom Replacement Function

A custom replacement function (replaceFn) may be provided to replace url/email/phone/Twitter handle/hashtag matches on an individual basis, based on the return from this function.

Full example, for purposes of documenting the API:

input = "...";  // string with URLs, Email Addresses, Twitter Handles, and Hashtags

linkedText = Autolinker.link( input, {
replaceFn : function( autolinker, match ) {
    console.log( "href = ", match.getAnchorHref() );
    console.log( "text = ", match.getAnchorText() );

    switch( match.getType() ) {
        case 'url' :
            console.log( "url: ", match.getUrl() );

            if( match.getUrl().indexOf( 'mysite.com' ) === -1 ) {
                var tag = autolinker.getTagBuilder().build( match );  // returns an `Autolinker.HtmlTag` instance, which provides mutator methods for easy changes
                tag.setAttr( 'rel', 'nofollow' );
                tag.addClass( 'external-link' );

                return tag;

            } else {
                return true;  // let Autolinker perform its normal anchor tag replacement
            }

        case 'email' :
            var email = match.getEmail();
            console.log( "email: ", email );

            if( email === "my@own.address" ) {
                return false;  // don't auto-link this particular email address; leave as-is
            } else {
                return;  // no return value will have Autolinker perform its normal anchor tag replacement (same as returning `true`)
            }

        case 'phone' :
            var phoneNumber = match.getPhoneNumber();
            console.log( phoneNumber );

            return '<a href="http://newplace.to.link.phone.numbers.to/">' + phoneNumber + '</a>';

        case 'twitter' :
            var twitterHandle = match.getTwitterHandle();
            console.log( twitterHandle );

            return '<a href="http://newplace.to.link.twitter.handles.to/">' + twitterHandle + '</a>';

        case 'hashtag' :
            var hashtag = match.getHashtag();
            console.log( hashtag );

            return '<a href="http://newplace.to.link.hashtag.handles.to/">' + hashtag + '</a>';
    }
}

The function is provided two arguments:

  1. The Autolinker instance that is performing replacements. This can be used to query the options that the Autolinker instance is configured with, or to retrieve its TagBuilder instance (via autolinker.getTagBuilder()).
  2. An Autolinker.match.Match object which details the match that is to be replaced.

A replacement of the match is made based on the return value of the function. The following return values may be provided:

Full API Docs

The full API docs for Autolinker may be referenced at: http://gregjacobs.github.io/Autolinker.js/docs/

Contributing

Pull requests definitely welcome.

Changelog

See Releases


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.