288 lines
8.6 KiB
JavaScript
288 lines
8.6 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 {intlShape} from 'react-intl';
|
|
import {
|
|
Keyboard,
|
|
FlatList,
|
|
StyleSheet,
|
|
SafeAreaView,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
import ChannelLoader from 'app/components/channel_loader';
|
|
import DateHeader from 'app/components/post_list/date_header';
|
|
import {isDateLine} from 'app/components/post_list/date_header/utils';
|
|
import FailedNetworkAction from 'app/components/failed_network_action';
|
|
import NoResults from 'app/components/no_results';
|
|
import PostSeparator from 'app/components/post_separator';
|
|
import StatusBar from 'app/components/status_bar';
|
|
import mattermostManaged from 'app/mattermost_managed';
|
|
import SearchResultPost from 'app/screens/search/search_result_post';
|
|
import {changeOpacity} from 'app/utils/theme';
|
|
import noResultsImage from 'assets/images/no_results/pin.png';
|
|
|
|
export default class PinnedPosts extends PureComponent {
|
|
static propTypes = {
|
|
actions: PropTypes.shape({
|
|
clearSearch: PropTypes.func.isRequired,
|
|
loadChannelsByTeamName: PropTypes.func.isRequired,
|
|
loadThreadIfNecessary: PropTypes.func.isRequired,
|
|
getPinnedPosts: PropTypes.func.isRequired,
|
|
selectFocusedPostId: PropTypes.func.isRequired,
|
|
selectPost: PropTypes.func.isRequired,
|
|
showSearchModal: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
currentChannelId: PropTypes.string.isRequired,
|
|
didFail: PropTypes.bool,
|
|
isLoading: PropTypes.bool,
|
|
navigator: PropTypes.object,
|
|
postIds: PropTypes.array,
|
|
theme: PropTypes.object.isRequired,
|
|
};
|
|
|
|
static defaultProps = {
|
|
postIds: [],
|
|
};
|
|
|
|
static contextTypes = {
|
|
intl: intlShape.isRequired,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
props.navigator.setOnNavigatorEvent(this.onNavigatorEvent);
|
|
|
|
this.state = {
|
|
managedConfig: {},
|
|
};
|
|
}
|
|
|
|
componentWillMount() {
|
|
this.listenerId = mattermostManaged.addEventListener('change', this.setManagedConfig);
|
|
}
|
|
|
|
componentDidMount() {
|
|
const {actions, currentChannelId} = this.props;
|
|
this.setManagedConfig();
|
|
actions.clearSearch();
|
|
actions.getPinnedPosts(currentChannelId);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
mattermostManaged.removeEventListener(this.listenerId);
|
|
}
|
|
|
|
goToThread = (post) => {
|
|
const {actions, navigator, theme} = this.props;
|
|
const channelId = post.channel_id;
|
|
const rootId = (post.root_id || post.id);
|
|
|
|
Keyboard.dismiss();
|
|
actions.loadThreadIfNecessary(rootId, channelId);
|
|
actions.selectPost(rootId);
|
|
|
|
const options = {
|
|
screen: 'Thread',
|
|
animated: true,
|
|
backButtonTitle: '',
|
|
navigatorStyle: {
|
|
navBarTextColor: theme.sidebarHeaderTextColor,
|
|
navBarBackgroundColor: theme.sidebarHeaderBg,
|
|
navBarButtonColor: theme.sidebarHeaderTextColor,
|
|
screenBackgroundColor: theme.centerChannelBg,
|
|
},
|
|
passProps: {
|
|
channelId,
|
|
rootId,
|
|
},
|
|
};
|
|
|
|
navigator.push(options);
|
|
};
|
|
|
|
handleClosePermalink = () => {
|
|
const {actions} = this.props;
|
|
actions.selectFocusedPostId('');
|
|
this.showingPermalink = false;
|
|
};
|
|
|
|
handlePermalinkPress = (postId, teamName) => {
|
|
this.props.actions.loadChannelsByTeamName(teamName);
|
|
this.showPermalinkView(postId, true);
|
|
};
|
|
|
|
handleHashtagPress = async (hashtag) => {
|
|
const {actions, navigator} = this.props;
|
|
|
|
await navigator.dismissModal();
|
|
|
|
actions.showSearchModal(navigator, '#' + hashtag);
|
|
};
|
|
|
|
keyExtractor = (item) => item;
|
|
|
|
onNavigatorEvent = (event) => {
|
|
if (event.type === 'NavBarButtonPress') {
|
|
if (event.id === 'close-settings') {
|
|
this.props.navigator.dismissModal({
|
|
animationType: 'slide-down',
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
previewPost = (post) => {
|
|
Keyboard.dismiss();
|
|
|
|
this.showPermalinkView(post.id, false);
|
|
};
|
|
|
|
renderEmpty = () => {
|
|
const {formatMessage} = this.context.intl;
|
|
const {theme} = this.props;
|
|
|
|
return (
|
|
<NoResults
|
|
description={formatMessage({
|
|
id: 'mobile.pinned_posts.empty_description',
|
|
defaultMessage: 'Pin important items by holding down on any message and selecting "Pin to Channel".',
|
|
})}
|
|
image={noResultsImage}
|
|
title={formatMessage({id: 'mobile.pinned_posts.empty_title', defaultMessage: 'No Pinned Posts'})}
|
|
theme={theme}
|
|
/>
|
|
);
|
|
};
|
|
|
|
renderPost = ({item, index}) => {
|
|
const {postIds, theme} = this.props;
|
|
const {managedConfig} = this.state;
|
|
if (isDateLine(item)) {
|
|
return (
|
|
<DateHeader
|
|
dateLineString={item}
|
|
index={index}
|
|
/>
|
|
);
|
|
}
|
|
|
|
let separator;
|
|
const nextPost = postIds[index + 1];
|
|
if (nextPost && !isDateLine(nextPost)) {
|
|
separator = <PostSeparator theme={theme}/>;
|
|
}
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<SearchResultPost
|
|
postId={item}
|
|
previewPost={this.previewPost}
|
|
highlightPinnedOrFlagged={true}
|
|
goToThread={this.goToThread}
|
|
navigator={this.props.navigator}
|
|
onHashtagPress={this.handleHashtagPress}
|
|
onPermalinkPress={this.handlePermalinkPress}
|
|
managedConfig={managedConfig}
|
|
showFullDate={false}
|
|
skipFlaggedHeader={false}
|
|
skipPinnedHeader={true}
|
|
/>
|
|
{separator}
|
|
</React.Fragment>
|
|
);
|
|
};
|
|
|
|
setManagedConfig = async (config) => {
|
|
let nextConfig = config;
|
|
if (!nextConfig) {
|
|
nextConfig = await mattermostManaged.getLocalConfig();
|
|
}
|
|
|
|
this.setState({
|
|
managedConfig: nextConfig,
|
|
});
|
|
};
|
|
|
|
showPermalinkView = (postId, isPermalink) => {
|
|
const {actions, navigator} = this.props;
|
|
|
|
actions.selectFocusedPostId(postId);
|
|
|
|
if (!this.showingPermalink) {
|
|
const options = {
|
|
screen: 'Permalink',
|
|
animationType: 'none',
|
|
backButtonTitle: '',
|
|
overrideBackPress: true,
|
|
navigatorStyle: {
|
|
navBarHidden: true,
|
|
screenBackgroundColor: changeOpacity('#000', 0.2),
|
|
modalPresentationStyle: 'overCurrentContext',
|
|
},
|
|
passProps: {
|
|
isPermalink,
|
|
onClose: this.handleClosePermalink,
|
|
},
|
|
};
|
|
|
|
this.showingPermalink = true;
|
|
navigator.showModal(options);
|
|
}
|
|
};
|
|
|
|
retry = () => {
|
|
const {actions, currentChannelId} = this.props;
|
|
actions.getPinnedPosts(currentChannelId);
|
|
};
|
|
|
|
render() {
|
|
const {didFail, isLoading, postIds, theme} = this.props;
|
|
|
|
let component;
|
|
if (didFail) {
|
|
component = (
|
|
<FailedNetworkAction
|
|
onRetry={this.retry}
|
|
theme={theme}
|
|
/>
|
|
);
|
|
} else if (isLoading) {
|
|
component = (
|
|
<ChannelLoader channelIsLoading={true}/>
|
|
);
|
|
} else if (postIds.length) {
|
|
component = (
|
|
<FlatList
|
|
ref='list'
|
|
contentContainerStyle={style.sectionList}
|
|
data={postIds}
|
|
keyExtractor={this.keyExtractor}
|
|
keyboardShouldPersistTaps='always'
|
|
keyboardDismissMode='interactive'
|
|
renderItem={this.renderPost}
|
|
/>
|
|
);
|
|
} else {
|
|
component = this.renderEmpty();
|
|
}
|
|
|
|
return (
|
|
<SafeAreaView style={style.container}>
|
|
<View style={style.container}>
|
|
<StatusBar/>
|
|
{component}
|
|
</View>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
const style = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
});
|