Chats: report user from message, fixes #391

chats-push-2
Alex Gleason 4 years ago
parent ed4abfdce3
commit 41eb69ecd1
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -25,6 +25,17 @@ export function initReport(account, status) {
};
};
export function initReportById(accountId) {
return (dispatch, getState) => {
dispatch({
type: REPORT_INIT,
account: getState().getIn(['accounts', accountId]),
});
dispatch(openModal('REPORT'));
};
};
export function cancelReport() {
return {
type: REPORT_CANCEL,

@ -13,6 +13,7 @@ import { escape, throttle } from 'lodash';
import { MediaGallery } from 'soapbox/features/ui/util/async-components';
import Bundle from 'soapbox/features/ui/components/bundle';
import DropdownMenuContainer from 'soapbox/containers/dropdown_menu_container';
import { initReportById } from 'soapbox/actions/reports';
const messages = defineMessages({
today: { id: 'chats.dividers.today', defaultMessage: 'Today' },
@ -224,7 +225,7 @@ class ChatMessageList extends ImmutablePureComponent {
handleReportUser = (userId) => {
return () => {
console.log(`should report user ${userId}`);
this.props.dispatch(initReportById(userId));
};
}

Loading…
Cancel
Save