diff --git a/apps/comments-ui/src/components/modals/AdminContextMenu.js b/apps/comments-ui/src/components/modals/AdminContextMenu.js index 792b9649d7..a5a361a7c2 100644 --- a/apps/comments-ui/src/components/modals/AdminContextMenu.js +++ b/apps/comments-ui/src/components/modals/AdminContextMenu.js @@ -1,51 +1,35 @@ -import React from 'react'; +import React, {useContext} from 'react'; import AppContext from '../../AppContext'; -class AdminContextMenu extends React.Component { - static contextType = AppContext; +const AdminContextMenu = (props) => { + const {dispatchAction} = useContext(AppContext); - constructor(props) { - super(props); - this.state = {}; + const hideComment = (event) => { + dispatchAction('hideComment', props.comment); + props.close(); + }; - this.hideComment = this.hideComment.bind(this); - this.showComment = this.showComment.bind(this); - } + const showComment = (event) => { + dispatchAction('showComment', props.comment); + props.close(); + }; - hideComment(event) { - this.context.onAction('hideComment', this.props.comment); - this.close(); - } + const isHidden = props.comment.status !== 'published'; - showComment(event) { - this.context.onAction('showComment', this.props.comment); - this.close(); - } + return ( +