import React from 'react'; import { LocalizerType } from '../../../types/Util'; import { TimerOption } from '../../conversation/ConversationHeader'; import { Item, Submenu } from 'react-contexify'; function showTimerOptions( isPublic: boolean, isRss: boolean, isKickedFromGroup: boolean, left: boolean, isBlocked: boolean ): boolean { return !isPublic && !isRss && !left && !isKickedFromGroup && !isBlocked; } function showMemberMenu( isPublic: boolean, isRss: boolean, isGroup: boolean ): boolean { return !isPublic && !isRss && isGroup; } function showSafetyNumber( isPublic: boolean, isRss: boolean, isGroup: boolean, isMe: boolean ): boolean { return !isPublic && !isRss && !isGroup && !isMe; } function showResetSession( isPublic: boolean, isRss: boolean, isGroup: boolean, isBlocked: boolean ): boolean { return !isPublic && !isRss && !isGroup && !isBlocked; } function showBlock(isMe: boolean, isPrivate: boolean): boolean { return !isMe && isPrivate; } function showClearNickname( isPublic: boolean, isRss: boolean, isMe: boolean, hasNickname: boolean ): boolean { return !isPublic && !isRss && !isMe && hasNickname; } function showDeleteMessages(isPublic: boolean): boolean { return !isPublic; } function showCopyId( isPublic: boolean, isRss: boolean, isGroup: boolean ): boolean { return !isGroup && !isRss; } function showDeleteContact( isMe: boolean, isClosable: boolean, isGroup: boolean, isPublic: boolean, isRss: boolean ): boolean { return !isMe && isClosable && !!(!isGroup || isPublic || isRss); } function showAddModerators( amMod: boolean, isKickedFromGroup: boolean ): boolean { return !isKickedFromGroup && amMod; } function showRemoveModerators( amMod: boolean, isKickedFromGroup: boolean ): boolean { return !isKickedFromGroup && amMod; } function showUpdateGroupName( amMod: boolean, isKickedFromGroup: boolean, left: boolean ): boolean { return !isKickedFromGroup && !left && amMod; } function showLeaveGroup( isKickedFromGroup: boolean, left: boolean, isGroup: boolean, isPublic: boolean, isRss: boolean ): boolean { return !isKickedFromGroup && !left && isGroup && !isPublic && !isRss; } function showInviteContact(isGroup: boolean, isPublic: boolean): boolean { return isGroup && isPublic; } /** Menu items standardized */ export function getInviteContactMenuItem( isGroup: boolean | undefined, isPublic: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if (showInviteContact(Boolean(isGroup), Boolean(isPublic))) { return {i18n('inviteContacts')}; } return null; } export function getDeleteContactMenuItem( isMe: boolean | undefined, isClosable: boolean | undefined, isGroup: boolean | undefined, isPublic: boolean | undefined, isRss: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showDeleteContact( Boolean(isMe), Boolean(isClosable), Boolean(isGroup), Boolean(isPublic), Boolean(isRss) ) ) { if (isPublic) { return {i18n('leaveGroup')}; } return {i18n('delete')}; } return null; } export function getLeaveGroupMenuItem( isKickedFromGroup: boolean | undefined, left: boolean | undefined, isGroup: boolean | undefined, isPublic: boolean | undefined, isRss: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showLeaveGroup( Boolean(isKickedFromGroup), Boolean(left), Boolean(isGroup), Boolean(isPublic), Boolean(isRss) ) ) { return {i18n('leaveGroup')}; } return null; } export function getUpdateGroupNameMenuItem( amMod: boolean | undefined, isKickedFromGroup: boolean | undefined, left: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showUpdateGroupName( Boolean(amMod), Boolean(isKickedFromGroup), Boolean(left) ) ) { return {i18n('editGroup')}; } return null; } export function getRemoveModeratorsMenuItem( amMod: boolean | undefined, isKickedFromGroup: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if (showRemoveModerators(Boolean(amMod), Boolean(isKickedFromGroup))) { return {i18n('removeModerators')}; } return null; } export function getAddModeratorsMenuItem( amMod: boolean | undefined, isKickedFromGroup: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if (showAddModerators(Boolean(amMod), Boolean(isKickedFromGroup))) { return {i18n('addModerators')}; } return null; } export function getCopyMenuItem( isPublic: boolean | undefined, isRss: boolean | undefined, isGroup: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if (showCopyId(Boolean(isPublic), Boolean(isRss), Boolean(isGroup))) { const copyIdLabel = i18n('copySessionID'); return {copyIdLabel}; } return null; } export function getDisappearingMenuItem( isPublic: boolean | undefined, isRss: boolean | undefined, isKickedFromGroup: boolean | undefined, left: boolean | undefined, isBlocked: boolean | undefined, timerOptions: Array, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showTimerOptions( Boolean(isPublic), Boolean(isRss), Boolean(isKickedFromGroup), Boolean(left), Boolean(isBlocked) ) ) { const isRtlMode = isRtlBody(); return ( // Remove the && false to make context menu work with RTL support {(timerOptions || []).map(item => ( { action(item.value); }} > {item.name} ))} ); } return null; } export function isRtlBody(): boolean { return ($('body') as any).hasClass('rtl'); } export function getShowMemberMenuItem( isPublic: boolean | undefined, isRss: boolean | undefined, isGroup: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if (showMemberMenu(Boolean(isPublic), Boolean(isRss), Boolean(isGroup))) { return {i18n('groupMembers')}; } return null; } export function getShowSafetyNumberMenuItem( isPublic: boolean | undefined, isRss: boolean | undefined, isGroup: boolean | undefined, isMe: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showSafetyNumber( Boolean(isPublic), Boolean(isRss), Boolean(isGroup), Boolean(isMe) ) ) { return {i18n('showSafetyNumber')}; } return null; } export function getResetSessionMenuItem( isPublic: boolean | undefined, isRss: boolean | undefined, isGroup: boolean | undefined, isBlocked: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showResetSession( Boolean(isPublic), Boolean(isRss), Boolean(isGroup), Boolean(isBlocked) ) ) { return {i18n('resetSession')}; } return null; } export function getBlockMenuItem( isMe: boolean | undefined, isPrivate: boolean | undefined, isBlocked: boolean | undefined, actionBlock: any, actionUnblock: any, i18n: LocalizerType ): JSX.Element | null { if (showBlock(Boolean(isMe), Boolean(isPrivate))) { const blockTitle = isBlocked ? i18n('unblockUser') : i18n('blockUser'); const blockHandler = isBlocked ? actionUnblock : actionBlock; return {blockTitle}; } return null; } export function getClearNicknameMenuItem( isPublic: boolean | undefined, isRss: boolean | undefined, isMe: boolean | undefined, hasNickname: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if ( showClearNickname( Boolean(isPublic), Boolean(isRss), Boolean(isMe), Boolean(hasNickname) ) ) { return {i18n('clearNickname')}; } return null; } export function getDeleteMessagesMenuItem( isPublic: boolean | undefined, action: any, i18n: LocalizerType ): JSX.Element | null { if (showDeleteMessages(Boolean(isPublic))) { return {i18n('deleteMessages')}; } return null; }