|
|
@ -9,15 +9,14 @@ import {
|
|
|
|
PropsForGroupUpdateType,
|
|
|
|
PropsForGroupUpdateType,
|
|
|
|
} from '../../../../state/ducks/conversations';
|
|
|
|
} from '../../../../state/ducks/conversations';
|
|
|
|
import { useSelectedNicknameOrProfileNameOrShortenedPubkey } from '../../../../state/selectors/selectedConversation';
|
|
|
|
import { useSelectedNicknameOrProfileNameOrShortenedPubkey } from '../../../../state/selectors/selectedConversation';
|
|
|
|
import { assertUnreachable } from '../../../../types/sqlSharedTypes';
|
|
|
|
|
|
|
|
import { ExpirableReadableMessage } from './ExpirableReadableMessage';
|
|
|
|
import { ExpirableReadableMessage } from './ExpirableReadableMessage';
|
|
|
|
import { NotificationBubble } from './notification-bubble/NotificationBubble';
|
|
|
|
import { NotificationBubble } from './notification-bubble/NotificationBubble';
|
|
|
|
import { I18n } from '../../../basic/I18n';
|
|
|
|
import { I18n } from '../../../basic/I18n';
|
|
|
|
import { I18nProps, LocalizerToken } from '../../../../types/Localizer';
|
|
|
|
import { type I18nPropsObject } from '../../../../types/Localizer';
|
|
|
|
|
|
|
|
|
|
|
|
// This component is used to display group updates in the conversation view.
|
|
|
|
// This component is used to display group updates in the conversation view.
|
|
|
|
|
|
|
|
|
|
|
|
const ChangeItemJoined = (added: Array<string>) => {
|
|
|
|
const ChangeItemJoined = (added: Array<string>): I18nPropsObject => {
|
|
|
|
const groupName = useSelectedNicknameOrProfileNameOrShortenedPubkey();
|
|
|
|
const groupName = useSelectedNicknameOrProfileNameOrShortenedPubkey();
|
|
|
|
|
|
|
|
|
|
|
|
if (!added.length) {
|
|
|
|
if (!added.length) {
|
|
|
@ -27,7 +26,7 @@ const ChangeItemJoined = (added: Array<string>) => {
|
|
|
|
return getJoinedGroupUpdateChangeStr(added, groupName);
|
|
|
|
return getJoinedGroupUpdateChangeStr(added, groupName);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const ChangeItemKicked = (kicked: Array<string>) => {
|
|
|
|
const ChangeItemKicked = (kicked: Array<string>): I18nPropsObject => {
|
|
|
|
if (!kicked.length) {
|
|
|
|
if (!kicked.length) {
|
|
|
|
throw new Error('Group update kicked is missing details');
|
|
|
|
throw new Error('Group update kicked is missing details');
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -36,7 +35,7 @@ const ChangeItemKicked = (kicked: Array<string>) => {
|
|
|
|
return getKickedGroupUpdateStr(kicked, groupName);
|
|
|
|
return getKickedGroupUpdateStr(kicked, groupName);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const ChangeItemLeft = (left: Array<string>) => {
|
|
|
|
const ChangeItemLeft = (left: Array<string>): I18nPropsObject => {
|
|
|
|
const groupName = useSelectedNicknameOrProfileNameOrShortenedPubkey();
|
|
|
|
const groupName = useSelectedNicknameOrProfileNameOrShortenedPubkey();
|
|
|
|
|
|
|
|
|
|
|
|
if (!left.length) {
|
|
|
|
if (!left.length) {
|
|
|
@ -46,7 +45,7 @@ const ChangeItemLeft = (left: Array<string>) => {
|
|
|
|
return getLeftGroupUpdateChangeStr(left, groupName);
|
|
|
|
return getLeftGroupUpdateChangeStr(left, groupName);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const ChangeItem = (change: PropsForGroupUpdateType) => {
|
|
|
|
const ChangeItem = (change: PropsForGroupUpdateType): I18nPropsObject => {
|
|
|
|
const { type } = change;
|
|
|
|
const { type } = change;
|
|
|
|
switch (type) {
|
|
|
|
switch (type) {
|
|
|
|
case 'name':
|
|
|
|
case 'name':
|
|
|
@ -62,18 +61,15 @@ const ChangeItem = (change: PropsForGroupUpdateType) => {
|
|
|
|
return ChangeItemKicked(change.kicked);
|
|
|
|
return ChangeItemKicked(change.kicked);
|
|
|
|
|
|
|
|
|
|
|
|
case 'general':
|
|
|
|
case 'general':
|
|
|
|
return { token: 'groupUpdated' };
|
|
|
|
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
assertUnreachable(type, `ChangeItem: Missing case error "${type}"`);
|
|
|
|
return { token: 'groupUpdated' };
|
|
|
|
return null;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const GroupUpdateMessage = (props: PropsForGroupUpdate) => {
|
|
|
|
export const GroupUpdateMessage = (props: PropsForGroupUpdate) => {
|
|
|
|
const { change, messageId } = props;
|
|
|
|
const { change, messageId } = props;
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: clean up this typing
|
|
|
|
const changeItem = ChangeItem(change);
|
|
|
|
const changeItem = ChangeItem(change) as I18nProps<LocalizerToken> | null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<ExpirableReadableMessage
|
|
|
|
<ExpirableReadableMessage
|
|
|
|