feat(twemoji): add types (#38719)

This commit is contained in:
Markus Tacker
2019-10-02 22:39:55 +02:00
committed by Ryan Cavanaugh
parent fd3952ba93
commit 3e698e4b98
4 changed files with 267 additions and 0 deletions

220
types/twemoji/index.d.ts vendored Normal file
View File

@@ -0,0 +1,220 @@
// Type definitions for twemoji 12.1
// Project: https://github.com/twitter/twemoji
// Definitions by: Markus Tacker <https://github.com/coderbyheart>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/**
* default assets url, by default will be Twitter Inc. CDN
*/
export const base: string;
/**
* default assets file extensions, by default '.png'
*/
export const ext: string;
/**
* default assets/folder size, by default "72x72"
* available via Twitter CDN: 72
*/
export const size: string;
/**
* default class name, by default 'emoji'
*/
export const className: string;
/**
* basic utilities / helpers to convert code points
* to JavaScript surrogates and vice versa
*/
export const convert: {
/**
* Given an HEX codepoint, returns UTF16 surrogate pairs.
*
* @param codepoint string generic codepoint, i.e. '1F4A9'
* @return string codepoint transformed into utf16 surrogates pair,
* i.e. \uD83D\uDCA9
*
* @example
* twemoji.convert.fromCodePoint('1f1e8');
* // "\ud83c\udde8"
*
* '1f1e8-1f1f3'.split('-').map(twemoji.convert.fromCodePoint).join('')
* // "\ud83c\udde8\ud83c\uddf3"
*/
fromCodePoint: (codepoint: string) => string;
/**
* Given UTF16 surrogate pairs, returns the equivalent HEX codepoint.
*
* @param unicodeSurrogates string generic utf16 surrogates pair, i.e. \uD83D\uDCA9
* @param sep string optional separator for double code points, default='-'
* @return string utf16 transformed into codepoint, i.e. '1F4A9'
*
* @example
* twemoji.convert.toCodePoint('\ud83c\udde8\ud83c\uddf3');
* // "1f1e8-1f1f3"
*
* twemoji.convert.toCodePoint('\ud83c\udde8\ud83c\uddf3', '~');
* // "1f1e8~1f1f3"
*/
toCodePoint: (unicodeSurrogates: string, sep?: string) => string;
};
/**
* User first: used to remove missing images
* preserving the original text intent when
* a fallback for network problems is desired.
* Automatically added to Image nodes via DOM
* It could be recycled for string operations via:
* $('img.emoji').on('error', twemoji.onerror)
*/
export function onerror(): void;
/**
* Given a string, invokes the callback argument
* per each emoji found in such string.
* This is the most raw version used by
* the .parse(string) method itself.
*
* @param text string generic string to parse
* @param callback Function a generic callback that will be
* invoked to replace the content.
* This calback wil receive standard
* String.prototype.replace(str, callback)
* arguments such:
* callback(
* rawText, // the emoji match
* );
*
* and others commonly received via replace.
*/
export function replace(text: string, callback: () => void): string;
/**
* Simplify string tests against emoji.
*
* @param text string some text that might contain emoji
* @return boolean true if any emoji was found, false otherwise.
*
* @example
*
* if (twemoji.test(someContent)) {
* console.log("emoji All The Things!");
* }
*/
export function test(text: string): boolean;
/**
* If given to parse, this callback will be invoked per each found emoji.
*
* If this callback returns a falsy value instead of a valid `src` to use for the image, nothing will actually change for that specific emoji.
*
* @param icon the lower case HEX code point i.e. "1f4a9"
* @param options all info for this parsing operation
* @param variant the optional \uFE0F ("as image") variant, in case this info is anyhow meaningful. By default this is ignored.
*/
export type ParseCallback = (icon: string, options: object, variant: string) => string | false;
/**
* If given to parse, this object with all properties will be used per each found emoji.
*
* callback Function the callback to invoke per each found emoji.
* base string the base url, by default twemoji.base
* ext string the image extension, by default twemoji.ext
* size string the assets size, by default twemoji.size
*/
export interface ParseObject {
/**
* the callback to invoke per each found emoji.
*
* default: the common replacer
*/
callback: ParseCallback;
/**
* The function to invoke in order to generate additional, custom attributes for the image tag.
*
* @param the lower case HEX code point i.e. "1f4a9"
* @param variant the optional \uFE0F ("as image") variant, in case this info is anyhow meaningful. By default this is ignored.
*/
attributes: (icon: string, variant: string) => object;
/**
* default: MaxCDN
*/
base: string;
/**
* default: ".png"
*/
ext: string;
/**
* default: "emoji"
*/
className: string;
/**
* default: "72x72"
*/
size: string | number;
/**
* in case it's specified it replaces .size info, if any
*/
folder: string;
}
/**
* Main method/logic to generate either <img> tags or HTMLImage nodes.
* "emojify" a generic text or DOM Element.
*
* @overloads
*
* String replacement for `innerHTML` or server side operations
* twemoji.parse(string);
* twemoji.parse(string, Function);
* twemoji.parse(string, Object);
*
* HTMLElement tree parsing for safer operations over existing DOM
* twemoji.parse(HTMLElement);
* twemoji.parse(HTMLElement, Function);
* twemoji.parse(HTMLElement, Object);
*
* @param what string|HTMLElement the source to parse and enrich with emoji.
*
* string replace emoji matches with <img> tags.
* Mainly used to inject emoji via `innerHTML`
* It does **not** parse the string or validate it,
* it simply replaces found emoji with a tag.
* NOTE: be sure this won't affect security.
*
* HTMLElement walk through the DOM tree and find emoji
* that are inside **text node only** (nodeType === 3)
* Mainly used to put emoji in already generated DOM
* without compromising surrounding nodes and
* **avoiding** the usage of `innerHTML`.
* NOTE: Using DOM elements instead of strings should
* improve security without compromising too much
* performance compared with a less safe `innerHTML`.
*
* @param how object|Function
*
* @example
*
* twemoji.parse("I \u2764\uFE0F emoji!");
* // I <img class="emoji" draggable="false" alt="❤️" src="/assets/2764.gif"/> emoji!
*
*
* twemoji.parse("I \u2764\uFE0F emoji!", function(iconId, options) {
* return '/assets/' + iconId + '.gif';
* });
* // I <img class="emoji" draggable="false" alt="❤️" src="/assets/2764.gif"/> emoji!
*
*
* twemoji.parse("I \u2764\uFE0F emoji!", {
* size: 72,
* callback: function(iconId, options) {
* return '/assets/' + options.size + '/' + iconId + options.ext;
* }
* });
* // I <img class="emoji" draggable="false" alt="❤️" src="/assets/72x72/2764.png"/> emoji!
*/
export function parse(what: string | HTMLElement, how?: Partial<ParseObject> | ParseCallback): string;

View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"twemoji-tests.ts"
]
}

View File

@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }

View File

@@ -0,0 +1,22 @@
import twemoji = require('twemoji');
twemoji.parse('foo', {
base: 'https://cdnjs.cloudflare.com/ajax/libs/twemoji/12.0.4/2/',
folder: 'svg',
ext: '.svg',
});
const foo: HTMLElement = undefined;
twemoji.parse(foo, {
base: 'https://cdnjs.cloudflare.com/ajax/libs/twemoji/12.0.4/2/',
folder: 'svg',
ext: '.svg',
});
twemoji.convert.fromCodePoint('1f1e8');
twemoji.convert.toCodePoint('\ud83c\udde8\ud83c\uddf3');
if (twemoji.test("foo")) {
console.log("emoji All The Things!");
}