2021-04-19 16:57:19 +00:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
2019-03-29 19:36:07 +00:00
|
|
|
import React from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { Dimensions, ScrollView } from 'react-native';
|
2021-04-19 16:57:19 +00:00
|
|
|
import { storiesOf } from '@storybook/react-native';
|
|
|
|
import { Provider } from 'react-redux';
|
2019-03-29 19:36:07 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
import { themes } from '../../app/constants/colors';
|
2020-07-31 17:06:22 +00:00
|
|
|
import RoomItemComponent from '../../app/presentation/RoomItem/RoomItem';
|
2020-10-30 13:59:44 +00:00
|
|
|
import { longText } from '../utils';
|
2021-10-06 20:30:10 +00:00
|
|
|
import { DISPLAY_MODE_CONDENSED, DISPLAY_MODE_EXPANDED } from '../../app/constants/constantDisplayMode';
|
2021-04-19 16:57:19 +00:00
|
|
|
import { store } from './index';
|
2019-03-29 19:36:07 +00:00
|
|
|
|
|
|
|
const baseUrl = 'https://open.rocket.chat';
|
2019-07-04 16:15:30 +00:00
|
|
|
const { width } = Dimensions.get('window');
|
2021-04-19 16:57:19 +00:00
|
|
|
const _theme = 'light';
|
2020-07-31 17:06:22 +00:00
|
|
|
const lastMessage = {
|
|
|
|
u: {
|
|
|
|
username: 'diego.mello'
|
|
|
|
},
|
|
|
|
msg: longText
|
|
|
|
};
|
|
|
|
const updatedAt = {
|
2020-12-04 19:25:51 +00:00
|
|
|
date: '10:00'
|
2020-07-31 17:06:22 +00:00
|
|
|
};
|
2019-03-29 19:36:07 +00:00
|
|
|
|
|
|
|
const RoomItem = props => (
|
|
|
|
<RoomItemComponent
|
|
|
|
type='d'
|
|
|
|
name='rocket.cat'
|
2020-07-31 17:06:22 +00:00
|
|
|
avatar='rocket.cat'
|
2019-03-29 19:36:07 +00:00
|
|
|
baseUrl={baseUrl}
|
2019-07-04 16:15:30 +00:00
|
|
|
width={width}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={_theme}
|
2021-10-06 20:30:10 +00:00
|
|
|
showAvatar
|
|
|
|
displayMode={DISPLAY_MODE_EXPANDED}
|
2020-07-31 17:06:22 +00:00
|
|
|
{...updatedAt}
|
2019-03-29 19:36:07 +00:00
|
|
|
{...props}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2021-04-19 16:57:19 +00:00
|
|
|
const stories = storiesOf('Room Item', module)
|
|
|
|
.addDecorator(story => <Provider store={store}>{story()}</Provider>)
|
|
|
|
.addDecorator(story => <ScrollView style={{ backgroundColor: themes[_theme].backgroundColor }}>{story()}</ScrollView>);
|
2019-03-29 19:36:07 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
stories.add('Basic', () => <RoomItem />);
|
2019-03-29 19:36:07 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
stories.add('Touch', () => <RoomItem onPress={() => alert('on press')} onLongPress={() => alert('on long press')} />);
|
2019-03-29 19:36:07 +00:00
|
|
|
|
2021-04-19 16:57:19 +00:00
|
|
|
stories.add('User', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem name='diego.mello' avatar='diego.mello' />
|
2021-09-13 20:41:05 +00:00
|
|
|
<RoomItem name={longText} />
|
2021-04-19 16:57:19 +00:00
|
|
|
</>
|
|
|
|
));
|
2019-03-29 19:36:07 +00:00
|
|
|
|
2021-04-19 16:57:19 +00:00
|
|
|
stories.add('Type', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem type='d' />
|
|
|
|
<RoomItem type='c' />
|
|
|
|
<RoomItem type='p' />
|
|
|
|
<RoomItem type='l' />
|
|
|
|
<RoomItem type='discussion' />
|
|
|
|
<RoomItem type='d' isGroupChat />
|
|
|
|
<RoomItem type='&' />
|
|
|
|
</>
|
|
|
|
));
|
2019-12-04 16:39:53 +00:00
|
|
|
|
2021-04-19 16:57:19 +00:00
|
|
|
stories.add('User status', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem status='online' />
|
|
|
|
<RoomItem status='away' />
|
|
|
|
<RoomItem status='busy' />
|
|
|
|
<RoomItem status='offline' />
|
|
|
|
<RoomItem status='loading' />
|
|
|
|
<RoomItem status='wrong' />
|
|
|
|
</>
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('Alerts', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem alert />
|
|
|
|
<RoomItem alert name='unread' unread={1} />
|
|
|
|
<RoomItem alert name='unread' unread={1000} />
|
|
|
|
<RoomItem alert name='user mentions' unread={1} userMentions={1} />
|
|
|
|
<RoomItem alert name='group mentions' unread={1} groupMentions={1} />
|
|
|
|
<RoomItem alert name='thread unread' tunread={[1]} />
|
|
|
|
<RoomItem alert name='thread unread user' tunread={[1]} tunreadUser={[1]} />
|
|
|
|
<RoomItem alert name='thread unread group' tunread={[1]} tunreadGroup={[1]} />
|
|
|
|
<RoomItem name='user mentions priority 1' alert unread={1} userMentions={1} groupMentions={1} tunread={[1]} />
|
|
|
|
<RoomItem name='group mentions priority 2' alert unread={1} groupMentions={1} tunread={[1]} />
|
|
|
|
<RoomItem name='thread unread priority 3' alert unread={1} tunread={[1]} />
|
|
|
|
</>
|
|
|
|
));
|
|
|
|
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
stories.add('Tag', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem autoJoin />
|
|
|
|
<RoomItem showLastMessage autoJoin />
|
|
|
|
<RoomItem name={longText} autoJoin />
|
|
|
|
<RoomItem name={longText} autoJoin showLastMessage />
|
|
|
|
</>
|
|
|
|
));
|
|
|
|
|
2021-04-19 16:57:19 +00:00
|
|
|
stories.add('Last Message', () => (
|
|
|
|
<>
|
2021-09-13 20:41:05 +00:00
|
|
|
<RoomItem showLastMessage />
|
2021-04-19 16:57:19 +00:00
|
|
|
<RoomItem
|
|
|
|
showLastMessage
|
|
|
|
lastMessage={{
|
|
|
|
u: {
|
|
|
|
username: 'rocket.chat'
|
|
|
|
},
|
|
|
|
msg: '2'
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<RoomItem
|
|
|
|
showLastMessage
|
|
|
|
lastMessage={{
|
|
|
|
u: {
|
|
|
|
username: 'diego.mello'
|
|
|
|
},
|
|
|
|
msg: '1'
|
|
|
|
}}
|
|
|
|
username='diego.mello'
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<RoomItem showLastMessage lastMessage={lastMessage} />
|
|
|
|
<RoomItem showLastMessage alert unread={1} lastMessage={lastMessage} />
|
|
|
|
<RoomItem showLastMessage alert unread={1000} lastMessage={lastMessage} />
|
|
|
|
<RoomItem showLastMessage alert tunread={[1]} lastMessage={lastMessage} />
|
2021-04-19 16:57:19 +00:00
|
|
|
</>
|
|
|
|
));
|
2021-10-06 20:30:10 +00:00
|
|
|
|
|
|
|
stories.add('Condensed Room Item', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem showLastMessage alert tunread={[1]} lastMessage={lastMessage} displayMode={DISPLAY_MODE_CONDENSED} />
|
|
|
|
<RoomItem showLastMessage alert name='unread' unread={1000} displayMode={DISPLAY_MODE_CONDENSED} />
|
|
|
|
|
|
|
|
<RoomItem type='c' displayMode={DISPLAY_MODE_CONDENSED} autoJoin />
|
|
|
|
</>
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('Condensed Room Item without Avatar', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem
|
|
|
|
showLastMessage
|
|
|
|
alert
|
|
|
|
tunread={[1]}
|
|
|
|
lastMessage={lastMessage}
|
|
|
|
displayMode={DISPLAY_MODE_CONDENSED}
|
|
|
|
showAvatar={false}
|
|
|
|
/>
|
|
|
|
<RoomItem type='p' displayMode={DISPLAY_MODE_CONDENSED} showAvatar={false} />
|
|
|
|
<RoomItem name={longText} autoJoin displayMode={DISPLAY_MODE_CONDENSED} showAvatar={false} />
|
|
|
|
</>
|
|
|
|
));
|
|
|
|
|
|
|
|
stories.add('Expanded Room Item without Avatar', () => (
|
|
|
|
<>
|
|
|
|
<RoomItem
|
|
|
|
showLastMessage
|
|
|
|
alert
|
|
|
|
tunread={[1]}
|
|
|
|
lastMessage={lastMessage}
|
|
|
|
displayMode={DISPLAY_MODE_EXPANDED}
|
|
|
|
showAvatar={false}
|
|
|
|
/>
|
|
|
|
<RoomItem
|
|
|
|
status='online'
|
|
|
|
showLastMessage
|
|
|
|
alert
|
|
|
|
tunread={[1]}
|
|
|
|
lastMessage={lastMessage}
|
|
|
|
displayMode={DISPLAY_MODE_EXPANDED}
|
|
|
|
showAvatar={false}
|
|
|
|
/>
|
|
|
|
<RoomItem
|
|
|
|
status='online'
|
|
|
|
showLastMessage
|
|
|
|
alert
|
|
|
|
lastMessage={lastMessage}
|
|
|
|
displayMode={DISPLAY_MODE_EXPANDED}
|
|
|
|
showAvatar={false}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
));
|