* MM-10193 for landscape Feature Commit for MM-10193 to the landscape feature with latest pull. This is the initial commit with SafeAreaView in place, but should not be merged into master as this is step one and not suitable for production. Another commit will be following with adjustments to allow SafeAreaView to display correctly for users. * MM-10193 for landscape Feature Commit for MM-10193 to the landscape feature with latest pull. This is the initial commit with SafeAreaView in place, but should not be merged into master as this is step one and not suitable for production. Another commit will be following with adjustments to allow SafeAreaView to display correctly for users. * MM-10193 Extend design elements for iPhoneX SafeAreaViews This is the second portion of the MM-10193 changes for the landscape feature. This item was to extend the design elements for the application into the SafeAreaView so the application looks uniform on the iPhoneX. * MM-10193 Patch for Snapshot tests and eslint * MM-10193 Re-Patch These chanbes mistakenly got reverted from last Patch * MM-10193 Updates for PR Fixed the 4 screens from the text box that were missed. Updated the padding to run from a method. * Revert "MM-10193 Updates for PR" This reverts commit fe8d650ce3ca2828d8c94e4af470649aa2582ec1. * MM-10193 Updates for PR This reverts commit 4966d83d5401720d26ca22a55cf8f92f1657b7e2. Applied Updated Snapshots * MM-10193 Updated Modifier for iphone_x_spacing Updated Modifier for iphone_x_spacing * MM-10193 Updates for Review Review changes for Post Textbox and a few states that were unavailable. * MM-10193 Fix Longpress padding Fixed longpress padding for Channel Info and Edit Post views. * MM-10193 Update isLandscape Updated isLandscape to pull directly from dimensions. Updated padding for Recent Mentions and Flagged Posts. * MM-10193 Updates for review longpost Updated for longpost padding. Fixed issue with notifications not padding right correctly. * MM-10193 Update with Cleanup Reverted Cocoapods back to 1.5.3. Cleaned up spacing in two files. * MM-10193 Merge Conflict Updates Updates to resolve merge conflicts
389 lines
12 KiB
JavaScript
389 lines
12 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from 'react-native';
|
|
import {getFullName} from 'mattermost-redux/utils/user_utils';
|
|
import {General} from 'mattermost-redux/constants';
|
|
import {injectIntl, intlShape} from 'react-intl';
|
|
import {paddingHorizontal as padding} from 'app/components/safe_area_view/iphone_x_spacing';
|
|
import ProfilePicture from 'app/components/profile_picture';
|
|
import BotTag from 'app/components/bot_tag';
|
|
import GuestTag from 'app/components/guest_tag';
|
|
import {preventDoubleTap} from 'app/utils/tap';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
|
|
import {t} from 'app/utils/i18n';
|
|
import {isGuest} from 'app/utils/users';
|
|
|
|
class ChannelIntro extends PureComponent {
|
|
static propTypes = {
|
|
actions: PropTypes.shape({
|
|
goToScreen: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
creator: PropTypes.object,
|
|
currentChannel: PropTypes.object.isRequired,
|
|
currentChannelMembers: PropTypes.array.isRequired,
|
|
intl: intlShape.isRequired,
|
|
theme: PropTypes.object.isRequired,
|
|
isLandscape: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
static defaultProps = {
|
|
currentChannelMembers: [],
|
|
};
|
|
|
|
goToUserProfile = (userId) => {
|
|
const {actions, intl} = this.props;
|
|
const screen = 'UserProfile';
|
|
const title = intl.formatMessage({id: 'mobile.routes.user_profile', defaultMessage: 'Profile'});
|
|
const passProps = {
|
|
userId,
|
|
};
|
|
|
|
actions.goToScreen(screen, title, passProps);
|
|
};
|
|
|
|
getDisplayName = (member) => {
|
|
if (!member) {
|
|
return null;
|
|
}
|
|
|
|
const displayName = getFullName(member);
|
|
|
|
if (!displayName) {
|
|
return member.username;
|
|
}
|
|
|
|
return displayName;
|
|
};
|
|
|
|
buildProfiles = () => {
|
|
const {currentChannelMembers, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
return currentChannelMembers.map((member) => (
|
|
<TouchableOpacity
|
|
key={member.id}
|
|
onPress={preventDoubleTap(() => this.goToUserProfile(member.id))}
|
|
style={style.profile}
|
|
>
|
|
<ProfilePicture
|
|
userId={member.id}
|
|
size={64}
|
|
statusBorderWidth={2}
|
|
statusSize={25}
|
|
/>
|
|
</TouchableOpacity>
|
|
));
|
|
};
|
|
|
|
buildNames = () => {
|
|
const {currentChannelMembers, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
return currentChannelMembers.map((member, index) => {
|
|
return (
|
|
<TouchableOpacity
|
|
key={member.id}
|
|
onPress={preventDoubleTap(() => this.goToUserProfile(member.id))}
|
|
>
|
|
<View style={style.indicatorContainer}>
|
|
<Text style={style.displayName}>
|
|
{this.getDisplayName(member)}
|
|
</Text>
|
|
<BotTag
|
|
show={Boolean(member.is_bot)}
|
|
theme={theme}
|
|
/>
|
|
<GuestTag
|
|
show={isGuest(member)}
|
|
theme={theme}
|
|
/>
|
|
<Text style={style.displayName}>
|
|
{index === currentChannelMembers.length - 1 ? '' : ', '}
|
|
</Text>
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
});
|
|
};
|
|
|
|
buildDMContent = () => {
|
|
const {currentChannelMembers, intl, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
if (currentChannelMembers.length) {
|
|
const teammate = this.getDisplayName(currentChannelMembers[0]);
|
|
|
|
return (
|
|
<Text style={style.message}>
|
|
{intl.formatMessage({
|
|
id: 'mobile.intro_messages.DM',
|
|
defaultMessage: 'This is the start of your direct message history with {teammate}. Direct messages and files shared here are not shown to people outside this area.',
|
|
}, {
|
|
teammate,
|
|
})}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
buildGMContent = () => {
|
|
const {intl, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
return (
|
|
<Text style={style.message}>
|
|
{intl.formatMessage({
|
|
id: 'intro_messages.group_message',
|
|
defaultMessage: 'This is the start of your group message history with these teammates. Messages and files shared here are not shown to people outside this area.',
|
|
})}
|
|
</Text>
|
|
);
|
|
};
|
|
|
|
buildOpenChannelContent = () => {
|
|
const {creator, currentChannel, intl, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
const date = intl.formatDate(currentChannel.create_at, {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
});
|
|
|
|
let mainMessageIntl;
|
|
if (creator) {
|
|
const creatorName = this.getDisplayName(creator);
|
|
mainMessageIntl = {
|
|
id: t('intro_messages.creator'),
|
|
defaultMessage: 'This is the start of the {name} channel, created by {creator} on {date}.',
|
|
values: {
|
|
name: currentChannel.display_name,
|
|
creator: creatorName,
|
|
date,
|
|
},
|
|
};
|
|
} else {
|
|
mainMessageIntl = {
|
|
id: t('intro_messages.noCreator'),
|
|
defaultMessage: 'This is the start of the {name} channel, created on {date}.',
|
|
values: {
|
|
name: currentChannel.display_name,
|
|
date,
|
|
},
|
|
};
|
|
}
|
|
|
|
const mainMessage = intl.formatMessage({
|
|
id: mainMessageIntl.id,
|
|
defaultMessage: mainMessageIntl.defaultMessage,
|
|
}, mainMessageIntl.values);
|
|
|
|
const anyMemberMessage = intl.formatMessage({
|
|
id: 'intro_messages.anyMember',
|
|
defaultMessage: ' Any member can join and read this channel.',
|
|
});
|
|
|
|
return (
|
|
<View>
|
|
<Text style={style.channelTitle}>
|
|
{intl.formatMessage({
|
|
id: 'intro_messages.beginning',
|
|
defaultMessage: 'Beginning of {name}',
|
|
}, {
|
|
name: currentChannel.display_name,
|
|
})}
|
|
</Text>
|
|
<Text style={style.message}>
|
|
{`${mainMessage} ${anyMemberMessage}`}
|
|
</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
buildPrivateChannelContent = () => {
|
|
const {creator, currentChannel, intl, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
const creatorName = this.getDisplayName(creator);
|
|
const date = intl.formatDate(currentChannel.create_at, {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
});
|
|
|
|
const mainMessage = intl.formatMessage({
|
|
id: 'intro_messages.creatorPrivate',
|
|
defaultMessage: 'This is the start of the {name} private channel, created by {creator} on {date}.',
|
|
}, {
|
|
name: currentChannel.display_name,
|
|
creator: creatorName,
|
|
date,
|
|
});
|
|
|
|
const onlyInvitedMessage = intl.formatMessage({
|
|
id: 'intro_messages.onlyInvited',
|
|
defaultMessage: ' Only invited members can see this private channel.',
|
|
});
|
|
|
|
return (
|
|
<View>
|
|
<Text style={style.channelTitle}>
|
|
{intl.formatMessage({
|
|
id: 'intro_messages.beginning',
|
|
defaultMessage: 'Beginning of {name}',
|
|
}, {
|
|
name: currentChannel.display_name,
|
|
})}
|
|
</Text>
|
|
<Text style={style.message}>
|
|
{`${mainMessage} ${onlyInvitedMessage}`}
|
|
</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
buildTownSquareContent = () => {
|
|
const {currentChannel, intl, theme} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
|
|
return (
|
|
<View>
|
|
<Text style={style.channelTitle}>
|
|
{intl.formatMessage({
|
|
id: 'intro_messages.beginning',
|
|
defaultMessage: 'Beginning of {name}',
|
|
}, {
|
|
name: currentChannel.display_name,
|
|
})}
|
|
</Text>
|
|
<Text style={style.channelWelcome}>
|
|
{intl.formatMessage({
|
|
id: 'mobile.intro_messages.default_welcome',
|
|
defaultMessage: 'Welcome to {name}!',
|
|
}, {
|
|
name: currentChannel.display_name,
|
|
})}
|
|
</Text>
|
|
<Text style={style.message}>
|
|
{intl.formatMessage({
|
|
id: 'mobile.intro_messages.default_message',
|
|
defaultMessage: 'This is the first channel teammates see when they sign up - use it for posting updates everyone needs to know.',
|
|
})}
|
|
</Text>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
buildContent = () => {
|
|
const {currentChannel} = this.props;
|
|
|
|
switch (currentChannel.type) {
|
|
default:
|
|
case General.DM_CHANNEL:
|
|
return this.buildDMContent();
|
|
|
|
case General.GM_CHANNEL:
|
|
return this.buildGMContent();
|
|
|
|
case General.OPEN_CHANNEL: {
|
|
if (currentChannel.name === General.DEFAULT_CHANNEL) {
|
|
return this.buildTownSquareContent();
|
|
}
|
|
|
|
return this.buildOpenChannelContent();
|
|
}
|
|
|
|
case General.PRIVATE_CHANNEL:
|
|
return this.buildPrivateChannelContent();
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {currentChannel, theme, isLandscape} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
const channelType = currentChannel.type;
|
|
|
|
let profiles;
|
|
if (channelType === General.DM_CHANNEL || channelType === General.GM_CHANNEL) {
|
|
profiles = (
|
|
<View>
|
|
<View style={[style.profilesContainer, padding(isLandscape)]}>
|
|
{this.buildProfiles()}
|
|
</View>
|
|
<View style={[style.namesContainer, padding(isLandscape)]}>
|
|
{this.buildNames()}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={style.container}>
|
|
{profiles}
|
|
<View style={[style.contentContainer, padding(isLandscape)]}>
|
|
{this.buildContent()}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
channelTitle: {
|
|
color: theme.centerChannelColor,
|
|
fontSize: 19,
|
|
fontWeight: '600',
|
|
marginBottom: 12,
|
|
},
|
|
channelWelcome: {
|
|
color: theme.centerChannelColor,
|
|
marginBottom: 12,
|
|
},
|
|
container: {
|
|
marginTop: 60,
|
|
marginHorizontal: 12,
|
|
marginBottom: 12,
|
|
overflow: 'hidden',
|
|
},
|
|
displayName: {
|
|
color: theme.centerChannelColor,
|
|
fontSize: 15,
|
|
fontWeight: '600',
|
|
},
|
|
message: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.8),
|
|
fontSize: 15,
|
|
lineHeight: 22,
|
|
},
|
|
namesContainer: {
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
marginBottom: 12,
|
|
},
|
|
profile: {
|
|
height: 67,
|
|
marginBottom: 12,
|
|
marginRight: 12,
|
|
},
|
|
profilesContainer: {
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
justifyContent: 'flex-start',
|
|
},
|
|
indicatorContainer: {
|
|
flexDirection: 'row',
|
|
},
|
|
};
|
|
});
|
|
|
|
export default injectIntl(ChannelIntro);
|