NAV Navbar
ruby java js
  • Client Module Overview
  • Collections
  • Client Module Overview

    emojidex tools are generally developed with the same composition. Each Module implements a Collection class which is used to store and access all the emoji information. Extensions to this class may enables acquisition of assets and caching when appropriate. Different modules may also come packaged with front end tools that automatically implement text areas with emoji automatically embedded, input tools such as soft keboards and searching etc. As a general guideline to where emojidex modules or libraries fit in your application we made this chart ... entirely out of emoji. service to module to app

    Collections

    Tools handle emoji in collections. Whenever possible all the emoji the user has used or viewed are kept in a local collection cache [usually in a folder named "emojidex" or a hidden folder named ".emojidex"]. Each collection folder for each client will share the same layout and same types of commonly parsible files.

    emoji are generally obtained from emojidex from the master collection, but there are two special static collections; the UTF and Extended collections.

    emojidex Collection

    These are all the emoji available on the emojidex service, searchable and indexed in the emojidex API. This collection DOES contain the UTF and Extended emoji - so in general this is the only collection you ever need to worry about. The UTF and Extended collections generally exist only for seeding and for clients with Closed Licenses who are not using the emojidex service.

    UTF Collection

    The UTF collection contains a completely original set of all the emoji with UTF codes (the Unicode Standard emoji). The index can be found at http://assets.emojidex.com/utf/emoji.json and assets can be found at standard locations, with SVG found at http://assets.emojidex.com/utf/{:emoji_code}.svg and PNG found in sized folders such as http://assets.emojidex.com/utf/px32/{:emoji_code}.png .

    Extended Collection

    The Extended collection contains a completely original set of all the emoji we wanted to see. Extended emoji DO NOT have UTF/Unicode entries. The index can be found at http://assets.emojidex.com/extended/emoji.json and assets can be found at standard locations, with SVG found at http://assets.emojidex.com/extended/{:emoji_code}.svg and PNG found in sized folders such as http://assets.emojidex.com/extended/px32/{:emoji_code}.png .

    UTF/Extended Packages

    The UTF and Extended emoji are also available in static git repositories or as Ruby gems. emojidex-vectors and emojidex-rasters repositories hold vectors and rasters respectedl. There is no need to use these unless you wish to bundle seed emoji with your application.