252 lines
5.2 KiB
TypeScript
252 lines
5.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 { boolean } from '@storybook/addon-knobs';
|
|
|
|
import type { Props } from './ContactDetail';
|
|
import { ContactDetail } from './ContactDetail';
|
|
import { AddressType, ContactFormType } from '../../types/EmbeddedContact';
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
import enMessages from '../../../_locales/en/messages.json';
|
|
import { IMAGE_GIF } from '../../types/MIME';
|
|
|
|
import { fakeAttachment } from '../../test-both/helpers/fakeAttachment';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/Conversation/ContactDetail',
|
|
};
|
|
|
|
const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|
contact: overrideProps.contact || {},
|
|
hasSignalAccount: boolean(
|
|
'hasSignalAccount',
|
|
overrideProps.hasSignalAccount || false
|
|
),
|
|
i18n,
|
|
onSendMessage: action('onSendMessage'),
|
|
});
|
|
|
|
const fullContact = {
|
|
address: [
|
|
{
|
|
type: AddressType.HOME,
|
|
street: '555 Main St.',
|
|
city: 'Boston',
|
|
region: 'MA',
|
|
postcode: '33333',
|
|
pobox: '2323-444',
|
|
country: 'US',
|
|
neighborhood: 'Garden Place',
|
|
},
|
|
{
|
|
type: AddressType.WORK,
|
|
street: '333 Another St.',
|
|
city: 'Boston',
|
|
region: 'MA',
|
|
postcode: '33344',
|
|
pobox: '2424-555',
|
|
country: 'US',
|
|
neighborhood: 'Factory Place',
|
|
},
|
|
{
|
|
type: AddressType.CUSTOM,
|
|
street: '111 Dream St.',
|
|
city: 'Miami',
|
|
region: 'FL',
|
|
postcode: '44232',
|
|
pobox: '111-333',
|
|
country: 'US',
|
|
neighborhood: 'BeachVille',
|
|
label: 'vacation',
|
|
},
|
|
{
|
|
type: AddressType.CUSTOM,
|
|
street: '333 Fake St.',
|
|
city: 'Boston',
|
|
region: 'MA',
|
|
postcode: '33345',
|
|
pobox: '123-444',
|
|
country: 'US',
|
|
neighborhood: 'Downtown',
|
|
},
|
|
],
|
|
avatar: {
|
|
avatar: fakeAttachment({
|
|
path: '/fixtures/giphy-GVNvOUpeYmI7e.gif',
|
|
contentType: IMAGE_GIF,
|
|
}),
|
|
isProfile: true,
|
|
},
|
|
email: [
|
|
{
|
|
value: 'jerjor@fakemail.com',
|
|
type: ContactFormType.HOME,
|
|
},
|
|
{
|
|
value: 'jerry.jordan@fakeco.com',
|
|
type: ContactFormType.WORK,
|
|
},
|
|
{
|
|
value: 'jj@privatething.net',
|
|
type: ContactFormType.CUSTOM,
|
|
label: 'private',
|
|
},
|
|
{
|
|
value: 'jordan@another.net',
|
|
type: ContactFormType.CUSTOM,
|
|
},
|
|
],
|
|
name: {
|
|
givenName: 'Jerry',
|
|
familyName: 'Jordan',
|
|
prefix: 'Dr.',
|
|
suffix: 'Jr.',
|
|
middleName: 'James',
|
|
displayName: 'Jerry Jordan',
|
|
},
|
|
number: [
|
|
{
|
|
value: '555-444-2323',
|
|
type: ContactFormType.HOME,
|
|
},
|
|
{
|
|
value: '555-444-3232',
|
|
type: ContactFormType.WORK,
|
|
},
|
|
{
|
|
value: '555-666-3232',
|
|
type: ContactFormType.MOBILE,
|
|
},
|
|
{
|
|
value: '333-666-3232',
|
|
type: ContactFormType.CUSTOM,
|
|
label: 'special',
|
|
},
|
|
{
|
|
value: '333-777-3232',
|
|
type: ContactFormType.CUSTOM,
|
|
},
|
|
],
|
|
};
|
|
|
|
export const FullyFilledOut = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: fullContact,
|
|
hasSignalAccount: true,
|
|
});
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
export const OnlyEmail = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: {
|
|
email: [
|
|
{
|
|
value: 'jerjor@fakemail.com',
|
|
type: ContactFormType.HOME,
|
|
},
|
|
],
|
|
},
|
|
hasSignalAccount: true,
|
|
});
|
|
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
export const GivenName = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: {
|
|
name: {
|
|
givenName: 'Jerry',
|
|
},
|
|
},
|
|
hasSignalAccount: true,
|
|
});
|
|
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
export const Organization = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: {
|
|
organization: 'Company 5',
|
|
},
|
|
hasSignalAccount: true,
|
|
});
|
|
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
export const GivenFamilyName = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: {
|
|
name: {
|
|
givenName: 'Jerry',
|
|
familyName: 'FamilyName',
|
|
},
|
|
},
|
|
hasSignalAccount: true,
|
|
});
|
|
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
GivenFamilyName.story = {
|
|
name: 'Given + Family Name',
|
|
};
|
|
|
|
export const FamilyName = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: {
|
|
name: {
|
|
familyName: 'FamilyName',
|
|
},
|
|
},
|
|
hasSignalAccount: true,
|
|
});
|
|
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
export const LoadingAvatar = (): JSX.Element => {
|
|
const props = createProps({
|
|
contact: {
|
|
avatar: {
|
|
avatar: fakeAttachment({
|
|
contentType: IMAGE_GIF,
|
|
pending: true,
|
|
}),
|
|
isProfile: true,
|
|
},
|
|
},
|
|
hasSignalAccount: true,
|
|
});
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
export const EmptyWithAccount = (): JSX.Element => {
|
|
const props = createProps({
|
|
hasSignalAccount: true,
|
|
});
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
EmptyWithAccount.story = {
|
|
name: 'Empty with Account',
|
|
};
|
|
|
|
export const EmptyWithoutAccount = (): JSX.Element => {
|
|
const props = createProps({
|
|
hasSignalAccount: false,
|
|
});
|
|
return <ContactDetail {...props} />;
|
|
};
|
|
|
|
EmptyWithoutAccount.story = {
|
|
name: 'Empty without Account',
|
|
};
|