mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import type { Meta } from '@storybook/react';
|
|
import type { Props as ReactionPickerProps } from './ReactionPicker.dom.js';
|
|
import { ReactionPicker } from './ReactionPicker.dom.js';
|
|
import { DEFAULT_PREFERRED_REACTION_EMOJI } from '../../reactions/constants.std.js';
|
|
|
|
const { i18n } = window.SignalContext;
|
|
|
|
export default {
|
|
title: 'Components/Conversation/ReactionPicker',
|
|
} satisfies Meta<ReactionPickerProps>;
|
|
|
|
export function Base(): JSX.Element {
|
|
return (
|
|
<ReactionPicker
|
|
i18n={i18n}
|
|
onPick={action('onPick')}
|
|
preferredReactionEmoji={DEFAULT_PREFERRED_REACTION_EMOJI}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function SelectedReaction(): JSX.Element {
|
|
return (
|
|
<>
|
|
{['❤️', '👍', '👎', '😂', '😮', '😢', '😡'].map(e => (
|
|
<div key={e} style={{ height: '100px' }}>
|
|
<ReactionPicker
|
|
i18n={i18n}
|
|
selected={e}
|
|
onPick={action('onPick')}
|
|
preferredReactionEmoji={DEFAULT_PREFERRED_REACTION_EMOJI}
|
|
/>
|
|
</div>
|
|
))}
|
|
</>
|
|
);
|
|
}
|