chore: add emitErrorCreateDirectMessage helper function

This commit is contained in:
GleidsonDaniel 2024-02-27 14:19:24 -03:00
parent f56f19abc6
commit c2ba383234
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import { LISTENER } from '../../../containers/Toast';
import i18n from '../../../i18n';
import EventEmitter from './events';
import log from './log';
export const emitErrorCreateDirectMessage = (e: any): void => {
if (e?.errorType === 'error-not-allowed') {
if (e?.details?.method === 'createDirectMessage')
EventEmitter.emit(LISTENER, {
message: i18n.t('error-action-not-allowed', { action: i18n.t('Create_Direct_Messages') })
});
} else {
log(e);
}
};