Rocket.Chat.ReactNative/storybook/stories/Message.js

448 lines
11 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { ScrollView, StyleSheet } from 'react-native';
import MessageComponent from '../../app/containers/message/Message';
import StoriesSeparator from './StoriesSeparator';
import messagesStatus from '../../app/constants/messagesStatus';
import MessageSeparator from '../../app/views/RoomView/Separator';
const styles = StyleSheet.create({
separator: {
2019-03-27 20:06:57 +00:00
marginTop: 30,
marginBottom: 0
}
});
const user = {
id: 'y8bd77ptZswPj3EW8',
username: 'diego.mello',
token: '79q6lH40W4ZRGLOshDiDiVlQaCc4f_lU9HNdHLAzuHz'
};
const author = {
_id: 'userid',
username: 'diego.mello'
};
const baseUrl = 'https://open.rocket.chat';
const customEmojis = { react_rocket: 'png', nyan_rocket: 'png', marioparty: 'gif' };
const date = new Date(2017, 10, 10, 10);
const Message = props => (
<MessageComponent
baseUrl={baseUrl}
customEmojis={customEmojis}
user={user}
author={author}
ts={date}
timeFormat='LT'
header
{...props}
/>
);
// eslint-disable-next-line react/prop-types
const Separator = ({ title }) => <StoriesSeparator title={title} style={styles.separator} />;
export default (
2019-03-27 20:06:57 +00:00
<ScrollView style={{ flex: 1 }} contentContainerStyle={{ marginVertical: 30 }}>
<Separator title='Simple' />
2019-03-27 20:06:57 +00:00
<Message msg='Message' />
<Separator title='Long message' />
2019-03-27 20:06:57 +00:00
<Message msg='Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum' />
2019-03-27 20:06:57 +00:00
<Separator title='Grouped messages' />
<Message msg='...' />
<Message
msg='Different user'
author={{
...author,
username: 'rocket.cat'
}}
/>
<Message msg='This is the third message' header={false} />
<Message msg='This is the second message' header={false} />
<Message msg='This is the first message' />
<Separator title='Without header' />
2019-03-27 20:06:57 +00:00
<Message msg='Message' header={false} />
<Separator title='With alias' />
2019-03-27 20:06:57 +00:00
<Message msg='Message' alias='Diego Mello' />
<Separator title='Edited' />
2019-03-27 20:06:57 +00:00
<Message msg='Message' edited />
2019-03-27 20:06:57 +00:00
<Separator title='Static avatar' />
<Message
msg='Message'
avatar='https://pbs.twimg.com/profile_images/1016397063649660929/14EIApTi_400x400.jpg'
/>
2019-03-27 20:06:57 +00:00
<Separator title='Full name' />
<Message
msg='Message'
author={{
...author,
username: 'diego.mello',
name: 'Diego Mello'
}}
useRealName
/>
<Separator title='Mentions' />
2019-03-27 20:06:57 +00:00
<Message msg='@rocket.cat @diego.mello @all @here #general' />
<Separator title='Emojis' />
2019-03-27 20:06:57 +00:00
<Message msg='👊🤙👏' />
<Separator title='Custom Emojis' />
2019-03-27 20:06:57 +00:00
<Message msg=':react_rocket: :nyan_rocket: :marioparty:' />
<Separator title='Time format' />
2019-03-27 20:06:57 +00:00
<Message msg='Testing' timeFormat='DD MMMM YYYY' />
2019-03-27 20:06:57 +00:00
<Separator title='Reactions' />
<Message
msg='Reactions'
reactions={[{
emoji: ':joy:',
usernames: [{ value: 'username' }, { value: 'rocket.cat' }, { value: 'diego.mello' }]
}, {
emoji: ':marioparty:',
usernames: [{ value: 'username' }, { value: 'rocket.cat' }, { value: 'diego.mello' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }, { value: 'user1' }]
}, {
emoji: ':thinking:',
usernames: [{ value: 'username' }]
}]}
onReactionPress={() => {}}
/>
2019-03-27 20:06:57 +00:00
<Separator title='Multiple reactions' />
<Message
msg='Multiple Reactions'
reactions={[{
emoji: ':marioparty:',
usernames: [{ value: 'username' }]
}, {
emoji: ':react_rocket:',
usernames: [{ value: 'username' }]
}, {
emoji: ':nyan_rocket:',
usernames: [{ value: 'username' }]
}, {
emoji: ':heart:',
usernames: [{ value: 'username' }]
}, {
emoji: ':dog:',
usernames: [{ value: 'username' }]
}, {
emoji: ':grinning:',
usernames: [{ value: 'username' }]
}, {
emoji: ':grimacing:',
usernames: [{ value: 'username' }]
}, {
emoji: ':grin:',
usernames: [{ value: 'username' }]
}]}
onReactionPress={() => {}}
/>
2019-03-27 20:06:57 +00:00
<Separator title='Intercalated users' />
<Message
msg='Fourth message'
author={{
...author,
username: 'rocket.cat'
}}
/>
<Message msg='Third message' />
<Message
msg='Second message'
author={{
...author,
username: 'rocket.cat'
}}
/>
<Message msg='First message' />
2019-03-27 20:06:57 +00:00
<Separator title='Date and Unread separators' />
<Message
msg='Fourth message'
author={{
...author,
username: 'rocket.cat'
}}
/>
<MessageSeparator ts={date} unread />
<Message msg='Third message' />
<MessageSeparator unread />
<Message
msg='Second message'
author={{
...author,
username: 'rocket.cat'
}}
header={false}
/>
<Message
msg='Second message'
author={{
...author,
username: 'rocket.cat'
}}
/>
<MessageSeparator ts={date} />
<Message msg='First message' />
2019-03-27 20:06:57 +00:00
<Separator title='With image' />
<Message
attachments={[{
title: 'This is a title',
description: 'This is a description',
image_url: '/file-upload/2ZrxuwcGeTrsoh376/Clipboard%20-%20September%205,%202018%204:10%20PM'
}]}
/>
<Message
attachments={[{
title: 'This is a title',
description: 'This is a description',
image_url: '/file-upload/sxLXBzjwuqxMnebyP/Clipboard%20-%2029%20de%20Agosto%20de%202018%20%C3%A0s%2018:10'
}]}
/>
2019-03-27 20:06:57 +00:00
<Separator title='With video' />
<Message
attachments={[{
title: 'This is a title',
description: 'This is a description',
video_url: '/file-upload/cqnKqb6kdajky5Rxj/WhatsApp%20Video%202018-08-22%20at%2019.09.55.mp4'
}]}
/>
2019-03-27 20:06:57 +00:00
<Separator title='With audio' />
<Message
attachments={[{
title: 'This is a title',
description: 'This is a description',
audio_url: '/file-upload/c4wcNhrbXJLBvAJtN/1535569819516.aac'
}]}
/>
2019-03-27 20:06:57 +00:00
<Separator title='Message with reply' />
<Message
msg="I'm fine!"
attachments={[{
author_name: 'This is a long title and i\'ll break',
ts: date,
timeFormat: 'LT',
text: 'How are you?'
}]}
/>
<Message
msg="I'm fine!"
attachments={[{
author_name: 'rocket.cat',
ts: date,
timeFormat: 'LT',
text: 'How are you?'
}]}
/>
2019-03-27 20:06:57 +00:00
<Separator title='URL' />
<Message
urls={[{
url: 'https://rocket.chat',
image: 'https://rocket.chat/images/blog/post.jpg',
title: 'Rocket.Chat - Free, Open Source, Enterprise Team Chat',
description: 'Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting.'
}, {
url: 'https://google.com',
title: 'Google',
description: 'Search the world\'s information, including webpages, images, videos and more. Google has many special features to help you find exactly what you\'re looking for.'
}]}
/>
2019-03-27 20:06:57 +00:00
<Separator title='Custom fields' />
<Message
msg='Message'
attachments={[{
author_name: 'rocket.cat',
ts: date,
timeFormat: 'LT',
text: 'Custom fields',
fields: [{
title: 'Field 1',
value: 'Value 1'
}, {
title: 'Field 2',
value: 'Value 2'
}, {
title: 'Field 3',
value: 'Value 3'
}, {
title: 'Field 4',
value: 'Value 4'
}, {
title: 'Field 5',
value: 'Value 5'
}]
}]}
/>
2019-03-27 20:06:57 +00:00
<Separator title='Two short custom fields' />
<Message
msg='Message'
attachments={[{
author_name: 'rocket.cat',
ts: date,
timeFormat: 'LT',
text: 'Custom fields',
fields: [{
title: 'Field 1',
value: 'Value 1',
short: true
}, {
title: 'Field 2',
value: 'Value 2',
short: true
}]
}, {
author_name: 'rocket.cat',
ts: date,
timeFormat: 'LT',
text: 'Custom fields 2',
fields: [{
title: 'Field 1',
value: 'Value 1',
short: true
}, {
title: 'Field 2',
value: 'Value 2',
short: true
}]
}]}
/>
<Separator title='Broadcast' />
2019-03-27 20:06:57 +00:00
<Message msg='Broadcasted message' broadcast replyBroadcast={() => alert('broadcast!')} />
<Separator title='Archived' />
2019-03-27 20:06:57 +00:00
<Message msg='This message is inside an archived room' archived />
2019-03-27 20:06:57 +00:00
<Separator title='Error' />
<Message msg='This message has error too' status={messagesStatus.ERROR} onErrorPress={() => alert('Error pressed')} header={false} />
<Message msg='This message has error' status={messagesStatus.ERROR} onErrorPress={() => alert('Error pressed')} />
<Separator title='Temp' />
2019-03-27 20:06:57 +00:00
<Message msg='Temp message' status={messagesStatus.TEMP} />
<Separator title='Editing' />
2019-03-27 20:06:57 +00:00
<Message msg='Message being edited' editing />
<Separator title='Removed' />
2019-03-27 20:06:57 +00:00
<Message type='rm' />
<Separator title='Joined' />
2019-03-27 20:06:57 +00:00
<Message type='uj' />
<Separator title='Room name changed' />
2019-03-27 20:06:57 +00:00
<Message msg='New name' type='r' />
2019-03-27 20:06:57 +00:00
<Separator title='Message pinned' />
<Message
msg='New name'
type='message_pinned'
attachments={[{
author_name: 'rocket.cat',
ts: date,
timeFormat: 'LT',
text: 'First message'
}]}
/>
<Separator title='Has left the channel' />
2019-03-27 20:06:57 +00:00
<Message type='ul' />
<Separator title='User removed' />
2019-03-27 20:06:57 +00:00
<Message msg='rocket.cat' type='ru' />
<Separator title='User added' />
2019-03-27 20:06:57 +00:00
<Message msg='rocket.cat' type='au' />
<Separator title='User muted' />
2019-03-27 20:06:57 +00:00
<Message msg='rocket.cat' type='user-muted' />
<Separator title='User unmuted' />
2019-03-27 20:06:57 +00:00
<Message msg='rocket.cat' type='user-unmuted' />
2019-03-27 20:06:57 +00:00
<Separator title='Role added' />
<Message
msg='rocket.cat'
role='admin' // eslint-disable-line
type='subscription-role-added'
/>
2019-03-27 20:06:57 +00:00
<Separator title='Role removed' />
<Message
msg='rocket.cat'
role='admin' // eslint-disable-line
type='subscription-role-removed'
/>
<Separator title='Changed description' />
2019-03-27 20:06:57 +00:00
<Message msg='new description' type='room_changed_description' />
<Separator title='Changed announcement' />
2019-03-27 20:06:57 +00:00
<Message msg='new announcement' type='room_changed_announcement' />
<Separator title='Changed topic' />
2019-03-27 20:06:57 +00:00
<Message msg='new topic' type='room_changed_topic' />
<Separator title='Changed type' />
2019-03-27 20:06:57 +00:00
<Message msg='public' type='room_changed_privacy' />
<Separator title='Custom style' />
2019-03-27 20:06:57 +00:00
<Message msg='Message' style={[styles.normalize, { backgroundColor: '#ddd' }]} />
<Separator title='Markdown emphasis' />
2019-03-27 20:06:57 +00:00
<Message msg='Italic with *asterisks* or _underscores_. Bold with **asterisks** or __underscores__. ~~Strikethrough~~' />
2019-03-27 20:06:57 +00:00
<Separator title='Markdown headers' />
<Message
msg='# H1
## H2
### H3
#### H4
##### H5
###### H6'
/>
<Separator title='Markdown links' />
2019-03-27 20:06:57 +00:00
<Message msg='Support <http://google.com|Google> [I`m an inline-style link](https://www.google.com) https://google.com' />
<Separator title='Markdown image' />
2019-03-27 20:06:57 +00:00
<Message msg='![alt text](https://play.google.com/intl/en_us/badges/images/badge_new.png)' />
2019-03-27 20:06:57 +00:00
<Separator title='Markdown code' />
<Message
msg='Inline `code` has `back-ticks around` it.
```
Code block
```'
/>
<Separator title='Markdown quote' />
2019-03-27 20:06:57 +00:00
<Message msg='> Quote' />
2019-03-27 20:06:57 +00:00
<Separator title='Markdown table' />
<Message
msg='First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column'
/>
</ScrollView>
);