Coder Social home page Coder Social logo

react-twemojify's Introduction

react-twemojify

CI

A React Component converts emoji (like ๐Ÿ™†) to img tag <img src="https://twemoji.maxcdn.com/v/latest/svg/1f646.svg" width=32 height=32 /> .

  • Support web component img tag, like amp-img.

install

$ npm i react-twemojify

usage

using basic img tag

const { twemojify } = require('react-twemojify');
const { createImgElement }  = require('react-twemojify/lib/img');
const result = twemojify('Hello World ๐Ÿ™†', createImgElement);

// Hello World <img src="https://twemoji.maxcdn.com/v/latest/svg/1f646.svg" alt="๐Ÿ™†" width=32 height=32 class="emoji">
console.log(result);

using amp-img tag

const { twemojify } = require('react-twemojify');
const { createImgElement }  = require('react-twemojify/lib/amp-img');
const result = twemojify('Hello World ๐Ÿ™†', createImgElement);

// Hello World <amp-img src="https://twemoji.maxcdn.com/v/latest/svg/1f646.svg" alt="๐Ÿ™†" width=32 height=32 class="emoji">
console.log(result);

custom webcomponent tag

const { twemojify } = require('react-twemojify');
const createImgElement = ({
  url,
  size,
  className,
  alt,
  key,
}) => {
  return React.createElement("x-some-special-webcomponent-img", {
    key,
    width: size,
    height: size,
    class: className,
    src: url,
    alt,
  });
};
const result = twemojify('Hello World ๐Ÿ™†', createImgElement);

// Hello World <x-some-special-webcomponent-img src="https://twemoji.maxcdn.com/v/latest/svg/1f646.svg" alt="๐Ÿ™†" width=32 height=32 class="emoji">
console.log(result);

options

  • size: number, default 32, width and height are changed if size is specified.
  • class: classname, default emoji, class name is changed if class is specified.
  • style: react style properties, default is null.

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.