create DotMenu components and add dotmenu IDs to posts at center and RHS (#6642)
Этот коммит содержится в:
коммит произвёл
Joram Wilander
родитель
5b017171cd
Коммит
0e89d9be1d
58
webapp/components/dot_menu/dot_menu_edit.jsx
Обычный файл
58
webapp/components/dot_menu/dot_menu_edit.jsx
Обычный файл
@@ -0,0 +1,58 @@
|
||||
// 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';
|
||||
|
||||
export default function DotMenuEdit(props) {
|
||||
let editId = null;
|
||||
if (props.idCount > -1) {
|
||||
editId = Utils.createSafeId(props.idPrefix + props.idCount);
|
||||
}
|
||||
|
||||
if (props.idPrefix.indexOf(Constants.RHS_ROOT) === 0) {
|
||||
editId = props.idPrefix;
|
||||
}
|
||||
|
||||
return (
|
||||
<li
|
||||
id={Utils.createSafeId(editId)}
|
||||
key={props.idPrefix}
|
||||
role='presentation'
|
||||
>
|
||||
<a
|
||||
href='#'
|
||||
role='menuitem'
|
||||
data-toggle='modal'
|
||||
data-target='#edit_post'
|
||||
data-refocusid={props.idPrefix.indexOf(Constants.CENTER) === 0 ? '#post_textbox' : '#reply_textbox'}
|
||||
data-title={props.idPrefix.indexOf(Constants.CENTER) === 0 ? props.type : Utils.localizeMessage('rhs_comment.comment', 'Comment')}
|
||||
data-message={props.post.message}
|
||||
data-postid={props.post.id}
|
||||
data-channelid={props.post.channel_id}
|
||||
data-comments={props.commentCount}
|
||||
>
|
||||
<FormattedMessage
|
||||
id='post_info.edit'
|
||||
defaultMessage='Edit'
|
||||
/>
|
||||
</a>
|
||||
</li>
|
||||
);
|
||||
}
|
||||
|
||||
DotMenuEdit.propTypes = {
|
||||
idPrefix: PropTypes.string.isRequired,
|
||||
idCount: PropTypes.number,
|
||||
post: PropTypes.object,
|
||||
type: PropTypes.string,
|
||||
commentCount: PropTypes.number
|
||||
};
|
||||
|
||||
DotMenuEdit.defaultProps = {
|
||||
idCount: -1
|
||||
};
|
||||
Ссылка в новой задаче
Block a user