Files
talk/plugins/coral-plugin-respect/client/index.js
T

93 lines
2.5 KiB
JavaScript

import React from 'react';
import styles from './style.css';
import Icon from './components/Icon';
import {I18n} from 'coral-framework';
import cn from 'classnames';
import translations from './translations.json';
const lang = new I18n(translations);
import {getActionSummary} from 'coral-framework/utils';
class RespectButton extends React.Component {
constructor(props) {
super(props);
this.state = {
localPost: null, // Set to the ID of an action if one is posted
localDelete: false // Set to true is the user deletes an action, unless localPost is already set.
};
}
handleClick = () => {
const {comment, postRespect, showSignInDialog, currentUser, deleteAction} = this.props.context;
const {localPost, localDelete} = this.state;
const respect = getActionSummary('RespectActionSummary', comment);
const respected = (respect && respect.current_user && !localDelete) || localPost;
/**
* If the current user does not exist, trigger signIn Box
*/
if (!currentUser) {
const offset = document.getElementById(`c_${comment.id}`).getBoundingClientRect().top - 75;
showSignInDialog(offset);
return;
}
/**
* If the current user is banned, do nothing
*/
if (currentUser.banned) {
return;
}
if (!respected) {
this.setState({
localPost: 'temp'
});
postRespect({
item_id: comment.id,
item_type: 'COMMENTS'
}).then(({data}) => {
this.setState({
localPost: data.createRespect.respect.id
});
});
} else {
this.setState((prev) => prev.localPost ? {...prev, localPost: null} : {...prev, localDelete: true});
deleteAction(localPost || respect.current_user.id);
}
}
render() {
const {comment} = this.props.context;
const {localPost, localDelete} = this.state;
const respect = getActionSummary('RespectActionSummary', comment);
const respected = (respect && respect.current_user && !localDelete) || localPost;
let count = respect ? respect.count : 0;
if (localPost) {count += 1;}
if (localDelete) {count -= 1;}
return (
<div className={styles.respect}>
<button
className={cn(styles.button, {[styles.respected]: respected})}
onClick={this.handleClick} >
<span>{lang.t(respected ? 'respected' : 'respect')}</span>
<Icon className={cn(styles.icon, {[styles.respected]: respected})} />
{count > 0 && count}
</button>
</div>
);
}
}
export default RespectButton;