|
|
|
@ -16,7 +16,6 @@ import {
|
|
|
|
|
getMessagesByConversation,
|
|
|
|
|
getUnreadByConversation,
|
|
|
|
|
getUnreadCountByConversation,
|
|
|
|
|
removeAllMessagesInConversation,
|
|
|
|
|
removeMessage as dataRemoveMessage,
|
|
|
|
|
saveMessages,
|
|
|
|
|
updateConversation,
|
|
|
|
@ -40,11 +39,7 @@ import { ConversationInteraction } from '../interactions';
|
|
|
|
|
import { OpenGroupVisibleMessage } from '../session/messages/outgoing/visibleMessage/OpenGroupVisibleMessage';
|
|
|
|
|
import { OpenGroupRequestCommonType } from '../opengroup/opengroupV2/ApiUtil';
|
|
|
|
|
import { getOpenGroupV2FromConversationId } from '../opengroup/utils/OpenGroupUtils';
|
|
|
|
|
import { NotificationForConvoOption } from '../components/conversation/ConversationHeader';
|
|
|
|
|
import { useDispatch } from 'react-redux';
|
|
|
|
|
import { updateConfirmModal } from '../state/ducks/modalDialog';
|
|
|
|
|
import { createTaskWithTimeout } from '../session/utils/TaskWithTimeout';
|
|
|
|
|
import { DURATION, SWARM_POLLING_TIMEOUT } from '../session/constants';
|
|
|
|
|
|
|
|
|
|
export enum ConversationTypeEnum {
|
|
|
|
|
GROUP = 'group',
|
|
|
|
@ -96,6 +91,7 @@ export interface ConversationAttributes {
|
|
|
|
|
accessKey?: any;
|
|
|
|
|
triggerNotificationsFor: ConversationNotificationSettingType;
|
|
|
|
|
isTrustedForAttachmentDownload: boolean;
|
|
|
|
|
isPinned?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ConversationAttributesOptionals {
|
|
|
|
@ -133,6 +129,7 @@ export interface ConversationAttributesOptionals {
|
|
|
|
|
accessKey?: any;
|
|
|
|
|
triggerNotificationsFor?: ConversationNotificationSettingType;
|
|
|
|
|
isTrustedForAttachmentDownload?: boolean;
|
|
|
|
|
isPinned?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -162,6 +159,7 @@ export const fillConvoAttributesWithDefaults = (
|
|
|
|
|
active_at: 0,
|
|
|
|
|
triggerNotificationsFor: 'all', // if the settings is not set in the db, this is the default
|
|
|
|
|
isTrustedForAttachmentDownload: false, // we don't trust a contact until we say so
|
|
|
|
|
isPinned: false,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -409,7 +407,7 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
|
|
|
|
|
left: !!this.get('left'),
|
|
|
|
|
groupAdmins,
|
|
|
|
|
members,
|
|
|
|
|
isPinned: this.getIsPinned() || false,
|
|
|
|
|
isPinned: this.getIsPinned(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -1095,6 +1093,17 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
|
|
|
|
|
await this.commit();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async setIsPinned(value: boolean) {
|
|
|
|
|
if (value !== this.get('isPinned')) {
|
|
|
|
|
this.set({
|
|
|
|
|
isPinned: value,
|
|
|
|
|
});
|
|
|
|
|
await this.commit();
|
|
|
|
|
console.log(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async setGroupName(name: string) {
|
|
|
|
|
const profileName = this.get('name');
|
|
|
|
|
if (profileName !== name) {
|
|
|
|
@ -1226,6 +1235,10 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
|
|
|
|
|
return this.get('name') || window.i18n('unknown');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getIsPinned() {
|
|
|
|
|
return this.get('isPinned');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getTitle() {
|
|
|
|
|
if (this.isPrivate()) {
|
|
|
|
|
const profileName = this.getProfileName();
|
|
|
|
@ -1438,10 +1451,6 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
|
|
|
|
|
|
|
|
|
|
return typeof expireTimer === 'number' && expireTimer > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private getIsPinned() {
|
|
|
|
|
return window.inboxStore?.getState().conversations.conversationLookup[this.id].isPinned;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class ConversationCollection extends Backbone.Collection<ConversationModel> {
|
|
|
|
|