2021-09-09 16:29:01 +00:00
|
|
|
// Copyright 2020-2021 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-05-05 19:49:34 +00:00
|
|
|
import * as React from 'react';
|
|
|
|
|
2020-09-01 00:09:28 +00:00
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
2020-05-05 19:49:34 +00:00
|
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
import { EmojiPicker } from './EmojiPicker';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2022-06-07 00:48:02 +00:00
|
|
|
export default {
|
|
|
|
title: 'Components/Emoji/EmojiPicker',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Base = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<EmojiPicker
|
|
|
|
i18n={i18n}
|
|
|
|
onPickEmoji={action('onPickEmoji')}
|
|
|
|
onSetSkinTone={action('onSetSkinTone')}
|
|
|
|
onClose={action('onClose')}
|
|
|
|
skinTone={0}
|
|
|
|
recentEmojis={[
|
|
|
|
'grinning',
|
|
|
|
'grin',
|
|
|
|
'joy',
|
|
|
|
'rolling_on_the_floor_laughing',
|
|
|
|
'smiley',
|
|
|
|
'smile',
|
|
|
|
'sweat_smile',
|
|
|
|
'laughing',
|
|
|
|
'wink',
|
|
|
|
'blush',
|
|
|
|
'yum',
|
|
|
|
'sunglasses',
|
|
|
|
'heart_eyes',
|
|
|
|
'kissing_heart',
|
|
|
|
'kissing',
|
|
|
|
'kissing_smiling_eyes',
|
|
|
|
'kissing_closed_eyes',
|
|
|
|
'relaxed',
|
|
|
|
'slightly_smiling_face',
|
|
|
|
'hugging_face',
|
|
|
|
'grinning_face_with_star_eyes',
|
|
|
|
'thinking_face',
|
|
|
|
'face_with_one_eyebrow_raised',
|
|
|
|
'neutral_face',
|
|
|
|
'expressionless',
|
|
|
|
'no_mouth',
|
|
|
|
'face_with_rolling_eyes',
|
|
|
|
'smirk',
|
|
|
|
'persevere',
|
|
|
|
'disappointed_relieved',
|
|
|
|
'open_mouth',
|
|
|
|
'zipper_mouth_face',
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const NoRecents = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<EmojiPicker
|
|
|
|
i18n={i18n}
|
|
|
|
onPickEmoji={action('onPickEmoji')}
|
|
|
|
onSetSkinTone={action('onSetSkinTone')}
|
|
|
|
onClose={action('onClose')}
|
|
|
|
skinTone={0}
|
|
|
|
recentEmojis={[]}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const WithSettingsButton = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<EmojiPicker
|
|
|
|
i18n={i18n}
|
|
|
|
onPickEmoji={action('onPickEmoji')}
|
|
|
|
onSetSkinTone={action('onSetSkinTone')}
|
|
|
|
onClickSettings={action('onClickSettings')}
|
|
|
|
onClose={action('onClose')}
|
|
|
|
skinTone={0}
|
|
|
|
recentEmojis={[]}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
WithSettingsButton.story = {
|
|
|
|
name: 'With settings button',
|
|
|
|
};
|