All Projects → needim → Wdt Emoji Bundle

needim / Wdt Emoji Bundle

Licence: mit
Slack like emoji picker with apple/ios, twitter/twemoji, google, emojione, facebook, messenger emoji support

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wdt Emoji Bundle

Ngx Auth Firebaseui
Angular Material UI component for firebase authentication
Stars: ✭ 518 (+26.03%)
Mutual labels:  apple, twitter, facebook
D3 Digest
SlackBot that watch channels looking for links and reactions, and generates digests based on those reactions
Stars: ✭ 15 (-96.35%)
Mutual labels:  slack, twitter, emoji
Integrations
Connect your App to Multiple Messaging Channels with the W3C Open standard.
Stars: ✭ 721 (+75.43%)
Mutual labels:  slack, messenger, twitter
Assent
Multi-provider framework in Elixir
Stars: ✭ 126 (-69.34%)
Mutual labels:  slack, twitter, facebook
Botmaster
The chatbot framework for your serious projects
Stars: ✭ 239 (-41.85%)
Mutual labels:  slack, messenger, twitter
Pow assent
Multi-provider authentication for your Pow enabled app
Stars: ✭ 236 (-42.58%)
Mutual labels:  slack, twitter, facebook
Broid Kit
Bot framework powered by Broid
Stars: ✭ 58 (-85.89%)
Mutual labels:  slack, messenger, twitter
Hackathon Starter Kit
A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Discord, Slack), Authorization, and CRUD functionality + PWA Support!
Stars: ✭ 242 (-41.12%)
Mutual labels:  slack, twitter, facebook
Daily Coding Problem
Series of the problem 💯 and solution ✅ asked by Daily Coding problem👨‍🎓 website.
Stars: ✭ 90 (-78.1%)
Mutual labels:  apple, twitter, facebook
Rofimoji
An emoji and character picker for rofi 😁
Stars: ✭ 319 (-22.38%)
Mutual labels:  emoji, emoji-picker
Social Media Profiles Regexs
📇 Extract social media profiles and more with regular expressions
Stars: ✭ 324 (-21.17%)
Mutual labels:  twitter, facebook
React Native Social Share
Use the iOS and Android native Twitter and Facebook share popup with React Native https://github.com/doefler/react-native-social-share
Stars: ✭ 405 (-1.46%)
Mutual labels:  twitter, facebook
Hybridauth
Open source social sign on PHP Library. HybridAuth goal is to act as an abstract api between your application and various social apis and identities providers such as Facebook, Twitter and Google.
Stars: ✭ 3,223 (+684.18%)
Mutual labels:  twitter, facebook
Laravel Social Auto Posting
🌈Laravel social auto posting
Stars: ✭ 306 (-25.55%)
Mutual labels:  twitter, facebook
Alfred Emoj
Alfred 3 workflow to find relevant emoji from text
Stars: ✭ 325 (-20.92%)
Mutual labels:  emoji, emoji-picker
Slack Emojinator
Bulk upload emoji into Slack
Stars: ✭ 296 (-27.98%)
Mutual labels:  slack, emoji
Supernova Emoji
library to implement and render emojis For Android
Stars: ✭ 334 (-18.73%)
Mutual labels:  emoji, emoji-picker
Socialbox Termux
SocialBox is a Bruteforce Attack Framework [ Facebook , Gmail , Instagram ,Twitter ] , Coded By Belahsan Ouerghi Edit By init__0 for termux on android
Stars: ✭ 324 (-21.17%)
Mutual labels:  twitter, facebook
Socialmanagertools Gui
🤖 👻 Desktop application for Instagram Bot, Twitter Bot and Facebook Bot
Stars: ✭ 293 (-28.71%)
Mutual labels:  twitter, facebook
Sockethub
A protocol gateway for the Web.
Stars: ✭ 329 (-19.95%)
Mutual labels:  twitter, facebook

wdt-emoji-bundle

Slack like emoji selector with apple/ios, twitter/twemoji, google, emojione, facebook, messenger and custom emoji support. I ❤️ opensource.

Thanks to Cal Henderson @iamcal.

Demo

wdt-emoji-bundle gif

Installation

Use one of the following:

  • npm npm i wdt-emoji-bundle
  • bower bower i wdt-emoji-bundle
  • pull in the source directly, load wdt-emoji-bundle.min.js, wdt-emoji-bundle.css and the sheets/ directory

Initialize

wdtEmojiBundle.init('.your-inputs-selector');

Advanced configuration

Tell the widget where to get the sheets from

wdtEmojiBundle.defaults.emojiSheets.apple = './sheet_apple.png';        // default /sheets/sheet_apple_64.png
wdtEmojiBundle.defaults.emojiSheets.google = './sheet_google.png';      // default /sheets/sheet_google_64.png
wdtEmojiBundle.defaults.emojiSheets.twitter = './sheet_twitter.png';    // default /sheets/sheet_twitter_64.png
wdtEmojiBundle.defaults.emojiSheets.emojione = './sheet_emojione.png';  // default /sheets/sheet_emojione_64.png
wdtEmojiBundle.defaults.emojiSheets.facebook = './sheet_facebook.png';  // default /sheets/sheet_facebook_64.png
wdtEmojiBundle.defaults.emojiSheets.messenger = './sheet_messenger.png';  // default /sheets/sheet_messenger_64.png

===

Set emoji set default sheet (this has to be done before the init)

wdtEmojiBundle.defaults.emojiType = 'apple';

otherwise use

wdtEmojiBundle.changeType(emojiType);

===

Hover color classes for picker's emoji's

wdtEmojiBundle.defaults.pickerColors = [
  'green', 'pink', 'yellow', 'blue', 'gray'
];

===

Picker tab section's orders, higher is first. Bundle render the sections according to this values.

wdtEmojiBundle.defaults.sectionOrders = { 
  'Recent'  : 10, 
  'Custom'  : 9, 
  'People'  : 8, 
  'Nature'  : 7, 
  'Foods'   : 6, 
  'Activity': 5, 
  'Places'  : 4, 
  'Objects' : 3, 
  'Symbols' : 2, 
  'Flags'   : 1
};

API

Render function takes any html string and convert to emojies based on the current bundle emoji type. (apple, google, twitter, emojione)

var output = wdtEmojiBundle.render('Lorem ipsum :) 🙊');

===

Event listeners: 'select', 'afterSelect', 'afterPickerOpen'

wdtEmojiBundle.on('afterSelect', function (event) {
  console.log('element', event.el);
  console.log('emoji', event.emoji);
})

===

Auto open the emoji picker when the user types the colon key : in the input:

  • Add class '.wdt-emoji-open-on-colon' to the input field that is going to have the emoji picker

TODO:

  • Better documentation :)
  • Responsive Improvements.
  • Better popup positioning.
  • Open on colon support for contenteditables.
  • Frequently used emoji list with localstorage and/or API.
  • Provide more events; open, close, pickeropen, pickerclose etc.
  • Custom emoji support.
  • Skin color support for apple icons.
  • Better contenteditable support, WYSIWYG?
  • Check browser compatibilities.

http://ned.im/wdt-emoji-bundle

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].