mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
add contacts
This commit is contained in:
@@ -123,6 +123,11 @@
|
||||
(showEmptyContainer)="showEmptyContainer()"
|
||||
(showEmptyContainer)="showEmptyContainer()"
|
||||
(openNewEventPage)="openNewEventPage($event)"
|
||||
|
||||
(openGroupContacts)="openGroupContactsPage($event)"
|
||||
(openEditGroupPage)="openEditGroupPage($event)"
|
||||
(getGroups)="getGroups($event)"
|
||||
|
||||
[style.display]="showMessages ? 'flex' : 'none'"
|
||||
[roomId]="roomId"
|
||||
[showMessages]="showMessages" #messagecontainer>
|
||||
|
||||
@@ -36,6 +36,8 @@ import { Store } from '@ngrx/store';
|
||||
import { RoomRemoteDataSourceState } from 'src/app/services/Repositorys/chat/data-source/room/room-memory-data-source';
|
||||
import { RoomRepositoryService } from 'src/app/services/Repositorys/chat/repository/room-repository.service'
|
||||
import { RoomListOutPutDTO } from 'src/app/services/Repositorys/chat/dto/room/roomListOutputDTO';
|
||||
import { Observable as DexieObservable } from 'Dexie';
|
||||
|
||||
|
||||
const { App } = Plugins;
|
||||
|
||||
@@ -115,7 +117,7 @@ export class ChatPage implements OnInit {
|
||||
routerSubscription
|
||||
|
||||
count$: Observable<RoomRemoteDataSourceState>;
|
||||
items$!: Observable<RoomListOutPutDTO[]>;
|
||||
items$!: DexieObservable<RoomListOutPutDTO[]>;
|
||||
|
||||
|
||||
constructor(
|
||||
@@ -409,7 +411,7 @@ export class ChatPage implements OnInit {
|
||||
this.showEmptyComponent = false;
|
||||
|
||||
|
||||
this.showGroupMessages = true;
|
||||
this.showMessages = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user