502ea174ab
Co-authored-by: Scott Nonnenberg <scott@signal.org>
163 lines
4.8 KiB
TypeScript
163 lines
4.8 KiB
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { Meta, StoryFn } from '@storybook/react';
|
|
import React, { useContext } from 'react';
|
|
import casual from 'casual';
|
|
import { action } from '@storybook/addon-actions';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import type { Props } from './ConversationHero';
|
|
import { ConversationHero } from './ConversationHero';
|
|
import { HasStories } from '../../types/Stories';
|
|
import { StorybookThemeContext } from '../../../.storybook/StorybookThemeContext';
|
|
import { getDefaultConversation } from '../../test-both/helpers/getDefaultConversation';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import { ThemeType } from '../../types/Util';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/Conversation/ConversationHero',
|
|
component: ConversationHero,
|
|
args: {
|
|
conversationType: 'direct',
|
|
i18n,
|
|
theme: ThemeType.light,
|
|
unblurAvatar: action('unblurAvatar'),
|
|
updateSharedGroups: action('updateSharedGroups'),
|
|
viewUserStories: action('viewUserStories'),
|
|
},
|
|
} satisfies Meta<Props>;
|
|
|
|
// eslint-disable-next-line react/function-component-definition
|
|
const Template: StoryFn<Props> = args => {
|
|
const theme = useContext(StorybookThemeContext);
|
|
return (
|
|
<div style={{ width: '480px' }}>
|
|
<ConversationHero {...getDefaultConversation()} {...args} theme={theme} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const DirectFiveOtherGroups = Template.bind({});
|
|
DirectFiveOtherGroups.args = {
|
|
sharedGroupNames: Array.from(Array(5), () => casual.title),
|
|
};
|
|
|
|
export const DirectFourOtherGroups = Template.bind({});
|
|
DirectFourOtherGroups.args = {
|
|
sharedGroupNames: Array.from(Array(4), () => casual.title),
|
|
};
|
|
|
|
export const DirectThreeOtherGroups = Template.bind({});
|
|
DirectThreeOtherGroups.args = {
|
|
sharedGroupNames: Array.from(Array(3), () => casual.title),
|
|
};
|
|
|
|
export const DirectTwoOtherGroups = Template.bind({});
|
|
DirectTwoOtherGroups.args = {
|
|
sharedGroupNames: Array.from(Array(2), () => casual.title),
|
|
};
|
|
|
|
export const DirectOneOtherGroup = Template.bind({});
|
|
DirectOneOtherGroup.args = {
|
|
sharedGroupNames: [casual.title],
|
|
};
|
|
|
|
export const DirectNoGroupsName = Template.bind({});
|
|
DirectNoGroupsName.args = {
|
|
about: '👍 Free to chat',
|
|
};
|
|
|
|
export const DirectNoGroupsJustProfile = Template.bind({});
|
|
DirectNoGroupsJustProfile.args = {
|
|
phoneNumber: casual.phone,
|
|
};
|
|
|
|
export const DirectNoGroupsJustPhoneNumber = Template.bind({});
|
|
DirectNoGroupsJustPhoneNumber.args = {
|
|
phoneNumber: casual.phone,
|
|
profileName: '',
|
|
title: '',
|
|
};
|
|
|
|
export const DirectNoGroupsNoData = Template.bind({});
|
|
DirectNoGroupsNoData.args = {
|
|
avatarPath: undefined,
|
|
phoneNumber: '',
|
|
profileName: '',
|
|
title: '',
|
|
};
|
|
|
|
export const DirectNoGroupsNoDataNotAccepted = Template.bind({});
|
|
DirectNoGroupsNoDataNotAccepted.args = {
|
|
acceptedMessageRequest: false,
|
|
avatarPath: undefined,
|
|
phoneNumber: '',
|
|
profileName: '',
|
|
title: '',
|
|
};
|
|
|
|
export const DirectNoGroupsNotAcceptedWithAvatar = Template.bind({});
|
|
DirectNoGroupsNotAcceptedWithAvatar.args = {
|
|
...getDefaultConversation(),
|
|
acceptedMessageRequest: false,
|
|
profileName: '',
|
|
};
|
|
|
|
export const GroupManyMembers = Template.bind({});
|
|
GroupManyMembers.args = {
|
|
conversationType: 'group',
|
|
groupDescription: casual.sentence,
|
|
membersCount: casual.integer(20, 100),
|
|
title: casual.title,
|
|
};
|
|
|
|
export const GroupOneMember = Template.bind({});
|
|
GroupOneMember.args = {
|
|
avatarPath: undefined,
|
|
conversationType: 'group',
|
|
groupDescription: casual.sentence,
|
|
membersCount: 1,
|
|
title: casual.title,
|
|
};
|
|
|
|
export const GroupZeroMembers = Template.bind({});
|
|
GroupZeroMembers.args = {
|
|
avatarPath: undefined,
|
|
conversationType: 'group',
|
|
groupDescription: casual.sentence,
|
|
membersCount: 0,
|
|
title: casual.title,
|
|
};
|
|
|
|
export const GroupLongGroupDescription = Template.bind({});
|
|
GroupLongGroupDescription.args = {
|
|
conversationType: 'group',
|
|
groupDescription:
|
|
"This is a group for all the rock climbers of NYC. We really like to climb rocks and these NYC people climb any rock. No rock is too small or too big to be climbed. We will ascend upon all rocks, and not just in NYC, in the whole world. We are just getting started, NYC is just the beginning, watch out rocks in the galaxy. Kuiper belt I'm looking at you. We will put on a space suit and climb all your rocks. No rock is near nor far for the rock climbers of NYC.",
|
|
membersCount: casual.integer(1, 10),
|
|
title: casual.title,
|
|
};
|
|
|
|
export const GroupNoName = Template.bind({});
|
|
GroupNoName.args = {
|
|
conversationType: 'group',
|
|
membersCount: 0,
|
|
title: '',
|
|
};
|
|
|
|
export const NoteToSelf = Template.bind({});
|
|
NoteToSelf.args = {
|
|
isMe: true,
|
|
};
|
|
|
|
export const UnreadStories = Template.bind({});
|
|
UnreadStories.args = {
|
|
hasStories: HasStories.Unread,
|
|
};
|
|
|
|
export const ReadStories = Template.bind({});
|
|
ReadStories.args = {
|
|
hasStories: HasStories.Read,
|
|
};
|