Files
mattermost/webapp/components/dot_menu/dot_menu_flag.jsx
Joram Wilander ab67f6e257 PLT-6215 Major post list refactor (#6501)
* Major post list refactor

* Fix post and thread deletion

* Fix preferences not selecting correctly

* Fix military time displaying

* Fix UP key for editing posts

* Fix ESLint error

* Various fixes and updates per feedback

* Fix for permalink view

* Revert to old scrolling method and various fixes

* Add floating timestamp, new message indicator, scroll arrows

* Update post loading for focus mode and add visibility limit

* Fix pinning posts and a react warning

* Add loading UI updates from Asaad

* Fix refreshing loop

* Temporarily bump post visibility limit

* Update infinite scrolling

* Remove infinite scrolling
2017-06-18 14:42:32 -04:00

84 lines
1.9 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import {FormattedMessage} from 'react-intl';
import PropTypes from 'prop-types';
import * as Utils from 'utils/utils.jsx';
import Constants from 'utils/constants.jsx';
function formatMessage(isFlagged) {
return (
<FormattedMessage
id={isFlagged ? 'rhs_root.mobile.unflag' : 'rhs_root.mobile.flag'}
defaultMessage={isFlagged ? 'Unflag' : 'Flag'}
/>
);
}
export default function DotMenuFlag(props) {
function onFlagPost(e) {
e.preventDefault();
props.actions.flagPost(props.postId);
}
function onUnflagPost(e) {
e.preventDefault();
props.actions.unflagPost(props.postId);
}
const flagFunc = props.isFlagged ? onUnflagPost : onFlagPost;
let flagId = null;
if (props.idCount > -1) {
flagId = Utils.createSafeId(props.idPrefix + props.idCount);
}
if (props.idPrefix.indexOf(Constants.RHS_ROOT) === 0) {
flagId = props.idPrefix;
}
return (
<li
key={props.idPrefix}
role='presentation'
>
<a
id={flagId}
href='#'
onClick={flagFunc}
>
{formatMessage(props.isFlagged)}
</a>
</li>
);
}
DotMenuFlag.propTypes = {
idCount: PropTypes.number,
idPrefix: PropTypes.string.isRequired,
postId: PropTypes.string.isRequired,
isFlagged: PropTypes.bool.isRequired,
actions: PropTypes.shape({
/*
* Function flag the post
*/
flagPost: PropTypes.func.isRequired,
/*
* Function to unflag the post
*/
unflagPost: PropTypes.func.isRequired
}).isRequired
};
DotMenuFlag.defaultProps = {
idCount: -1,
postId: '',
isFlagged: false
};