Git Product home page Git Product logo

angular-emoji-map's Introduction

angular-emoji-map

Convert emoji "short codes" to their unicode counterpart:

I :heart: the Indianapolis Colts. :smile:

becomes

I \u2764 the Indianapolis Colts. \ud83d\ude04

Getting Started

  1. Install via bower bower install angular-emoji-map --save
  2. Include angular-emoji-map.js in your HTML file after including Angular itself.
  3. Add mm.emoji.utils to your main module's list.

Example Usage:

In your index.html:

<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-emoji-map/angular-emoji-map.js"></script>

In your app.js:

angular.module('myApp', [
  // ...
  'mm.emoji.utils'
]);

Getting an associative array of short codes

module.controller('MyCtrl', ['emojiMap', function(emojiMap) {
  var heart = emojiMap[':heart:']; // heart is now \u2764
}]);

Converting short codes into an emoji with angular-twemoji

<p data-ng-bind-html="message | emojiToUnicode | twemojoi"></p>

Converting short codes within a controller

module.controller('MyCtrl', ['emojiToUnicodeFilter', function(emojiToUnicodeFilter) {
  $scope.submit = function() {
    // subsititude emoji "short codes" with it's unicode string.
    $scope.text = emojiToUnicodeFilter($scope.text);
    // use twemoji to convert the message to html.
    var html = $window.twemoji.parse($scope.text);
}]);

angular-emoji-map's People

Watchers

 avatar  avatar

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.