mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
add uuidv4
This commit is contained in:
@@ -441,7 +441,7 @@ export class MessagesPage implements OnInit, OnChanges, AfterViewInit, OnDestroy
|
|||||||
this.chatServiceService.sendReadAt({
|
this.chatServiceService.sendReadAt({
|
||||||
memberId: SessionStore.user.UserId,
|
memberId: SessionStore.user.UserId,
|
||||||
messageId: message.id,
|
messageId: message.id,
|
||||||
requestId: '',
|
requestId: uuidv4(),
|
||||||
roomId: this.room.id
|
roomId: this.room.id
|
||||||
})
|
})
|
||||||
this.messageDelete(message)
|
this.messageDelete(message)
|
||||||
@@ -508,7 +508,7 @@ export class MessagesPage implements OnInit, OnChanges, AfterViewInit, OnDestroy
|
|||||||
this.chatServiceService.sendReadAt({
|
this.chatServiceService.sendReadAt({
|
||||||
memberId: SessionStore.user.UserId,
|
memberId: SessionStore.user.UserId,
|
||||||
messageId: message.id,
|
messageId: message.id,
|
||||||
requestId: '',
|
requestId: uuidv4(),
|
||||||
roomId: this.room.id
|
roomId: this.room.id
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ import { EditGroupPage } from '../edit-group/edit-group.page';
|
|||||||
import { imageMimeTypes } from 'src/app/utils/allowedImageExtension';
|
import { imageMimeTypes } from 'src/app/utils/allowedImageExtension';
|
||||||
import { GroupContactsPage, IGroupContactsPageOutPutSchema } from '../group-contacts/group-contacts.page';
|
import { GroupContactsPage, IGroupContactsPageOutPutSchema } from '../group-contacts/group-contacts.page';
|
||||||
import { ChatServiceService } from 'src/app/module/chat/domain/chat-service.service';
|
import { ChatServiceService } from 'src/app/module/chat/domain/chat-service.service';
|
||||||
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-messages',
|
selector: 'app-messages',
|
||||||
@@ -755,7 +756,7 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
this.chatServiceService.sendReadAt({
|
this.chatServiceService.sendReadAt({
|
||||||
memberId: SessionStore.user.UserId,
|
memberId: SessionStore.user.UserId,
|
||||||
messageId: message.id,
|
messageId: message.id,
|
||||||
requestId: '',
|
requestId: uuidv4(),
|
||||||
roomId: this.room.id
|
roomId: this.room.id
|
||||||
})
|
})
|
||||||
this.messageDelete(message)
|
this.messageDelete(message)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { NavParams, ModalController } from '@ionic/angular';
|
|||||||
import { ChatServiceService } from 'src/app/module/chat/domain/chat-service.service';
|
import { ChatServiceService } from 'src/app/module/chat/domain/chat-service.service';
|
||||||
import { SessionStore } from 'src/app/store/session.service';
|
import { SessionStore } from 'src/app/store/session.service';
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
|
|
||||||
|
|
||||||
const ViewOncesImagePageInputSchema = z.object({
|
const ViewOncesImagePageInputSchema = z.object({
|
||||||
@@ -48,7 +49,7 @@ export class ViewOncesImagePage implements OnInit {
|
|||||||
this.chatServiceService.sendReadAt({
|
this.chatServiceService.sendReadAt({
|
||||||
memberId: SessionStore.user.UserId,
|
memberId: SessionStore.user.UserId,
|
||||||
messageId: this.params.messageId,
|
messageId: this.params.messageId,
|
||||||
requestId: '',
|
requestId: uuidv4(),
|
||||||
roomId: this.params.roomId
|
roomId: this.params.roomId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user