Open h-yabi2 opened 4 months ago
import data from '@emoji-mart/data' import { init, SearchIndex } from 'emoji-mart' init({ data }) // ← これはなくても検索自体はできた async function search(value) { const emojis = await SearchIndex.search(value) const results = emojis.map((emoji) => { return emoji.skins[0].native }) console.log(results) } search('christmas') // => ['🎄', '🇨🇽', '🧑🎄', '🔔', '🤶', '🎁', '☃️', '❄️', '🎅', '⛄']
'grinning-N'
grinning
'+1-1'
'raised_hands-1'
〇〇-1
その他補足情報
'grinning-N'
-> -N がつくと検索結果がでない、grinning
のみだと -> ['😀', '😄', '😃', '😆', '😸', '😺', '😅', '🤪', '🤩'] になる'+1-1'
-> ['👍']'raised_hands-1'
-> ['🙌']〇〇-1
というのは、その絵文字が1つついているという意味