Coder Social home page Coder Social logo

lotphy / react-emoji-textarea Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nikaera/react-emoji-textarea

0.0 0.0 0.0 183 KB

You can use Slack-like emoji shortcuts on textarea! πŸ¦Έβ€β™‚οΈβŒ¨οΈ

Home Page: https://www.npmjs.com/package/@nikaera/react-emoji-textarea

Shell 0.54% JavaScript 53.82% TypeScript 45.65%

react-emoji-textarea's Introduction

react-emoji-textarea πŸ˜†πŸ’–

You can use Slack-like emoji shortcuts on textarea! πŸ¦Έβ€β™‚οΈβŒ¨οΈ

Image from Gyazo

πŸ”¨ Minimum requirements

πŸ’Ύ Installation

Install the plugin via Yarn (recommended)

yarn add @nikaera/react-emoji-textarea

or via NPM

npm i @nikaera/react-emoji-textarea

πŸƒ Getting Started

Include component

import ReactEmojiTextArea from "@nikaera/react-emoji-textarea";

Make some elegant textarea

<ReactEmojiTextArea
  style={{ fontSize: "1em" }}
  ref={textAreaEl}
  onChange={(text) => console.log(text)}
  placeholder={"Try typing emoji like a Slack shortcut! πŸ˜†πŸ’–"}
  emojiPickerProps={{
    showSkinTones: true,
  }}
/>

πŸ› οΈ Configuring the plugin

Props for ReactEmojiTextArea include the following, which you can customize as you see fit. 🀡

export interface EmojiTextAreaProps {
  ref?: React.RefObject<HTMLTextAreaElement>;
  rows?: number;
  cols?: number;
  style?: React.CSSProperties;
  placeholder?: string;
  showPicker?: boolean;
  emojiPickerProps?: PickerProps;
  onClick?: (e: React.MouseEvent<HTMLTextAreaElement>) => void;
  onSuggesting?: (val: boolean) => void;
  onChange: (val: string) => void;
}
Attribute Required Type Default Description
ref - React.RefObject<HTMLTextAreaElement> null Use this when you want to refer to a textarea element.
rows - number 3 Specifying rows for textarea.
cols - number 40 Specifying cols for textarea.
style - React.CSSProperties null Specifying the style of a textarea.
placeholder - string null Specifying a placeholder for a textarea.
showPicker - boolean false Toggle the display of emoji-mart's Picker.
emojiPickerProps - PickerProps null Specify the props for emoji-mart's Picker. onSelect is used in react-emoji-textarea.
onClick - function null Function to determine that a textarea field has been clicked.
onSuggesting - function null Function to determine while an emoji input candidate is displayed.
onChange βœ… function null Function used to get the content of the textarea.

πŸ”¨ How to develop

  1. Use create-react-app to create a typescript project for react-emoji-textarea development.
  2. Clone react-emoji-textarea with git clone [email protected]:nikaera/react-emoji-textarea.git.
  3. Go into the react-emoji-textarea folder and run yarn or npm install to install the necessary libraries.
  4. Run npm link or yarn link to link from the project you created in step 1. for development.
  5. Add "react-emoji-textarea": "link:<1.'s project path>" to dependencies in package.json of the project created in 1..
  6. Go into the react-emoji-textarea folder and run yarn build:watch or npm run build:watch to continue to be compiled for development.
  7. Run yarn start or npm start in the project folder created in 1. to develop react-emoji-textarea.

🎁 Contributing

If you have any questions, please feel free to create an Issue or PR for you! πŸ™Œ

License

MIT

react-emoji-textarea's People

Contributors

lotphy avatar nikaera 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.