create DotMenu components and add dotmenu IDs to posts at center and RHS (#6642)
Этот коммит содержится в:
коммит произвёл
Joram Wilander
родитель
5b017171cd
Коммит
0e89d9be1d
70
webapp/components/dot_menu/dot_menu_flag.jsx
Обычный файл
70
webapp/components/dot_menu/dot_menu_flag.jsx
Обычный файл
@@ -0,0 +1,70 @@
|
||||
// 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 {flagPost, unflagPost} from 'actions/post_actions.jsx';
|
||||
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();
|
||||
flagPost(props.postId);
|
||||
}
|
||||
|
||||
function onUnflagPost(e) {
|
||||
e.preventDefault();
|
||||
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
|
||||
};
|
||||
|
||||
DotMenuFlag.defaultProps = {
|
||||
idCount: -1,
|
||||
postId: '',
|
||||
isFlagged: false
|
||||
};
|
||||
Ссылка в новой задаче
Block a user