signal-desktop/ts/components/StoryViewsNRepliesModal.stories.tsx

205 lines
5 KiB
TypeScript
Raw Normal View History

2022-03-04 21:14:52 +00:00
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2022-07-25 18:55:44 +00:00
import type { Meta, Story } from '@storybook/react';
2022-03-04 21:14:52 +00:00
import React from 'react';
import type { PropsType } from './StoryViewsNRepliesModal';
import * as durations from '../util/durations';
import enMessages from '../../_locales/en/messages.json';
import { IMAGE_JPEG } from '../types/MIME';
2022-07-01 00:52:03 +00:00
import { SendStatus } from '../messages/MessageSendState';
2022-03-04 21:14:52 +00:00
import { StoryViewsNRepliesModal } from './StoryViewsNRepliesModal';
import { UUID } from '../types/UUID';
2022-03-04 21:14:52 +00:00
import { fakeAttachment } from '../test-both/helpers/fakeAttachment';
import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation';
import { setupI18n } from '../util/setupI18n';
const i18n = setupI18n('en', enMessages);
2022-06-07 00:48:02 +00:00
export default {
title: 'Components/StoryViewsNRepliesModal',
2022-07-25 18:55:44 +00:00
component: StoryViewsNRepliesModal,
argTypes: {
authorTitle: {
defaultValue: getDefaultConversation().title,
},
canReply: {
defaultValue: true,
},
getPreferredBadge: { action: true },
i18n: {
defaultValue: i18n,
},
onClose: { action: true },
onSetSkinTone: { action: true },
onReact: { action: true },
onReply: { action: true },
onTextTooLong: { action: true },
onUseEmoji: { action: true },
preferredReactionEmoji: {
defaultValue: ['❤️', '👍', '👎', '😂', '😮', '😢'],
},
renderEmojiPicker: { action: true },
replies: {
defaultValue: [],
},
storyPreviewAttachment: {
defaultValue: fakeAttachment({
thumbnail: {
contentType: IMAGE_JPEG,
height: 64,
objectUrl: '/fixtures/nathan-anderson-316188-unsplash.jpg',
path: '',
width: 40,
},
}),
},
views: {
defaultValue: [],
},
},
} as Meta;
2022-03-04 21:14:52 +00:00
function getViewsAndReplies() {
const p1 = getDefaultConversation();
const p2 = getDefaultConversation();
const p3 = getDefaultConversation();
const p4 = getDefaultConversation();
const p5 = getDefaultConversation();
const p6 = getDefaultConversation({
isMe: true,
});
2022-03-04 21:14:52 +00:00
const views = [
{
2022-07-01 00:52:03 +00:00
recipient: p1,
status: SendStatus.Viewed,
updatedAt: Date.now() - 20 * durations.MINUTE,
2022-03-04 21:14:52 +00:00
},
{
2022-07-01 00:52:03 +00:00
recipient: p2,
status: SendStatus.Viewed,
updatedAt: Date.now() - 25 * durations.MINUTE,
2022-03-04 21:14:52 +00:00
},
{
2022-07-01 00:52:03 +00:00
recipient: p3,
status: SendStatus.Viewed,
updatedAt: Date.now() - 15 * durations.MINUTE,
2022-03-04 21:14:52 +00:00
},
{
2022-07-01 00:52:03 +00:00
recipient: p4,
status: SendStatus.Viewed,
updatedAt: Date.now() - 5 * durations.MINUTE,
2022-03-04 21:14:52 +00:00
},
{
2022-07-01 00:52:03 +00:00
recipient: p5,
status: SendStatus.Viewed,
updatedAt: Date.now() - 30 * durations.MINUTE,
2022-03-04 21:14:52 +00:00
},
];
const replies = [
{
author: p2,
2022-03-04 21:14:52 +00:00
body: 'So cute ❤️',
conversationId: p2.id,
id: UUID.generate().toString(),
2022-03-04 21:14:52 +00:00
timestamp: Date.now() - 24 * durations.MINUTE,
},
{
author: p3,
2022-03-04 21:14:52 +00:00
body: "That's awesome",
conversationId: p3.id,
id: UUID.generate().toString(),
2022-03-04 21:14:52 +00:00
timestamp: Date.now() - 13 * durations.MINUTE,
},
{
author: p3,
body: 'Very awesome',
conversationId: p3.id,
id: UUID.generate().toString(),
timestamp: Date.now() - 13 * durations.MINUTE,
},
{
author: p3,
body: 'Did I mention how awesome this is?',
conversationId: p3.id,
id: UUID.generate().toString(),
timestamp: Date.now() - 12 * durations.MINUTE,
},
{
author: p4,
conversationId: p4.id,
id: UUID.generate().toString(),
2022-03-04 21:14:52 +00:00
reactionEmoji: '❤️',
timestamp: Date.now() - 5 * durations.MINUTE,
},
{
author: p6,
body: 'Thanks everyone!',
conversationId: p6.id,
id: UUID.generate().toString(),
sendStateByConversationId: {
[p1.id]: {
status: SendStatus.Pending,
},
},
timestamp: Date.now(),
},
2022-03-04 21:14:52 +00:00
];
return {
views,
replies,
};
}
2022-07-25 18:55:44 +00:00
const Template: Story<PropsType> = args => (
<StoryViewsNRepliesModal {...args} />
2022-06-07 00:48:02 +00:00
);
2022-03-04 21:14:52 +00:00
2022-07-25 18:55:44 +00:00
export const CanReply = Template.bind({});
CanReply.args = {};
CanReply.storyName = 'Can reply';
2022-06-07 00:48:02 +00:00
2022-07-25 18:55:44 +00:00
export const ViewsOnly = Template.bind({});
ViewsOnly.args = {
views: getViewsAndReplies().views,
2022-06-07 00:48:02 +00:00
};
2022-07-25 18:55:44 +00:00
ViewsOnly.storyName = 'Views only';
2022-03-04 21:14:52 +00:00
2022-07-25 18:55:44 +00:00
export const InAGroupNoReplies = Template.bind({});
InAGroupNoReplies.args = {
isGroupStory: true,
2022-06-07 00:48:02 +00:00
};
2022-07-25 18:55:44 +00:00
InAGroupNoReplies.storyName = 'In a group (no replies)';
2022-06-07 00:48:02 +00:00
2022-07-25 18:55:44 +00:00
export const InAGroup = Template.bind({});
{
2022-03-04 21:14:52 +00:00
const { views, replies } = getViewsAndReplies();
2022-07-25 18:55:44 +00:00
InAGroup.args = {
isGroupStory: true,
replies,
views,
};
}
InAGroup.storyName = 'In a group';
2022-03-04 21:14:52 +00:00
2022-07-25 18:55:44 +00:00
export const CantReply = Template.bind({});
CantReply.args = {
canReply: false,
2022-06-07 00:48:02 +00:00
};
2022-07-25 18:55:44 +00:00
export const InAGroupCantReply = Template.bind({});
{
const { views, replies } = getViewsAndReplies();
InAGroupCantReply.args = {
canReply: false,
isGroupStory: true,
replies,
views,
};
}
InAGroupCantReply.storyName = "In a group (can't reply)";