Moving FlagComment to seperate file.

This commit is contained in:
David Jay
2016-12-09 12:54:15 -05:00
parent f0108e1434
commit ee187469e0
4 changed files with 74 additions and 48 deletions
@@ -17,7 +17,7 @@ import PubDate from '../../coral-plugin-pubdate/PubDate';
import Count from '../../coral-plugin-comment-count/CommentCount';
import AuthorName from '../../coral-plugin-author-name/AuthorName';
import {ReplyBox, ReplyButton} from '../../coral-plugin-replies';
import FlagButton from '../../coral-plugin-flags/FlagButton';
import FlagComment from '../../coral-plugin-flags/FlagComment';
import LikeButton from '../../coral-plugin-likes/LikeButton';
import PermalinkButton from '../../coral-plugin-permalinks/PermalinkButton';
import SignInContainer from '../../coral-sign-in/containers/SignInContainer';
@@ -161,7 +161,7 @@ class CommentStream extends Component {
currentUser={this.props.auth.user}/>
</div>
<div className="commentActionsRight">
<FlagButton
<FlagComment
addNotification={this.props.addNotification}
id={commentId}
author_id={comment.author_id}
@@ -212,7 +212,7 @@ class CommentStream extends Component {
currentUser={this.props.auth.user}/>
</div>
<div className="replyActionsRight">
<FlagButton
<FlagComment
addNotification={this.props.addNotification}
id={replyId}
author_id={comment.author_id}
+19 -45
View File
@@ -17,6 +17,7 @@ class FlagButton extends Component {
step: 1
}
// When the "report" button is clicked expand the menu
onReportClick = () => {
if (!this.props.currentUser) {
const offset = document.getElementById(`c_${this.props.id}`).getBoundingClientRect().top - 75;
@@ -30,11 +31,23 @@ class FlagButton extends Component {
const {postAction, addItem, updateItem, flag, id, author_id} = this.props;
const {itemType, field, detail, step, otherText} = this.state;
//Proceed to the next step
this.setState({step: step + 1});
// If itemType and detail are both set, post the action
if (itemType && detail) {
// Set the text from the "other" field if it exists.
const updatedDetail = otherText || detail;
const item_id = itemType === 'comments' ? id : author_id;
let item_id;
switch(itemType) {
case 'comments':
item_id = id;
break;
case 'user':
item_id = author_id;
break;
}
const action = {
action_type: 'flag',
field,
@@ -49,49 +62,10 @@ class FlagButton extends Component {
}
}
getPopupMenu = (step) => {
switch(step) {
case 1: {
return {
header: lang.t('step-1-header'),
options: [
{val: 'user', text: lang.t('flag-username')},
{val: 'comments', text: lang.t('flag-comment')}
],
button: lang.t('continue'),
sets: 'itemType'
};
}
case 2: {
const options = this.state.itemType === 'comments' ?
[
{val: 'I don\'t agree with this comment', text: lang.t('no-agree-comment')},
{val: 'This comment is offensive', text: lang.t('comment-offensive')},
{val: 'This comment reveals personally identifiable infomration', text: lang.t('personal-info')},
{val: 'other', text: lang.t('other')}
]
: [
{val: 'This username is offensive', text: lang.t('username-offensive')},
{val: 'I don\'t like this username', text: lang.t('no-like-username')},
{val: 'This looks like an ad/marketing', text: lang.t('marketing')},
{val: 'other', text: lang.t('other')}
];
return {
header: lang.t('step-2-header'),
options,
button: lang.t('continue'),
sets: 'detail'
};
}
case 3: {
return {
header: lang.t('step-3-header'),
text: lang.t('thank-you')
};
}}
}
// When a popup option is clicked, update the state
onPopupOptionClick = (sets) => (e) => {
// If the "other" option is clicked, show the other textbox
if(sets === 'detail' && e.target.value === 'other') {
this.setState({showOther: true});
}
@@ -113,9 +87,9 @@ class FlagButton extends Component {
}
render () {
const {flag} = this.props;
const {flag, getPopupMenu} = this.props;
const flagged = flag && flag.current_user;
const popupMenu = this.getPopupMenu(this.state.step);
const popupMenu = getPopupMenu(this.state.step, this.state.itemType);
return <div className={`${name}-container`}>
<button onClick={this.onReportClick} className={`${name}-button`}>
+52
View File
@@ -0,0 +1,52 @@
import React from 'react';
import FlagButton from './FlagButton';
import {I18n} from '../coral-framework';
import translations from './translations.json';
const FlagComment = (props) => <FlagButton {...props} getPopupMenu={getPopupMenu} />;
const getPopupMenu = (step, itemType) => {
switch(step) {
case 1: {
return {
header: lang.t('step-1-header'),
options: [
{val: 'user', text: lang.t('flag-username')},
{val: 'comments', text: lang.t('flag-comment')}
],
button: lang.t('continue'),
sets: 'itemType'
};
}
case 2: {
const options = itemType === 'comments' ?
[
{val: 'I don\'t agree with this comment', text: lang.t('no-agree-comment')},
{val: 'This comment is offensive', text: lang.t('comment-offensive')},
{val: 'This comment reveals personally identifiable infomration', text: lang.t('personal-info')},
{val: 'other', text: lang.t('other')}
]
: [
{val: 'This username is offensive', text: lang.t('username-offensive')},
{val: 'I don\'t like this username', text: lang.t('no-like-username')},
{val: 'This looks like an ad/marketing', text: lang.t('marketing')},
{val: 'other', text: lang.t('other')}
];
return {
header: lang.t('step-2-header'),
options,
button: lang.t('continue'),
sets: 'detail'
};
}
case 3: {
return {
header: lang.t('step-3-header'),
text: lang.t('thank-you')
};
}}
};
export default FlagComment;
const lang = new I18n(translations);