2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-02-07 06:21:48 +05:30
|
|
|
/**
|
|
|
|
store contains:
|
|
|
|
roomId
|
|
|
|
name
|
|
|
|
lastMessage
|
|
|
|
unreadCount
|
|
|
|
mentionCount
|
|
|
|
isEncrypted
|
|
|
|
isDirectMessage
|
|
|
|
membership
|
2019-02-11 01:55:29 +05:30
|
|
|
inviteCount
|
|
|
|
joinCount
|
2019-02-07 06:21:48 +05:30
|
|
|
*/
|
2021-08-11 04:58:47 +05:30
|
|
|
import {Store} from "../Store";
|
|
|
|
import {SummaryData} from "../../../room/RoomSummary";
|
2021-05-04 17:04:42 +05:30
|
|
|
|
|
|
|
/** Used for both roomSummary and archivedRoomSummary stores */
|
2020-04-21 00:56:39 +05:30
|
|
|
export class RoomSummaryStore {
|
2021-08-11 04:58:47 +05:30
|
|
|
private _summaryStore: Store<SummaryData>;
|
2019-02-07 06:21:48 +05:30
|
|
|
|
2021-08-11 04:58:47 +05:30
|
|
|
constructor(summaryStore: Store<SummaryData>) {
|
|
|
|
this._summaryStore = summaryStore;
|
|
|
|
}
|
2019-02-11 01:55:29 +05:30
|
|
|
|
2021-08-11 04:58:47 +05:30
|
|
|
getAll(): Promise<SummaryData[]> {
|
|
|
|
return this._summaryStore.selectAll();
|
|
|
|
}
|
2021-05-04 17:04:42 +05:30
|
|
|
|
2021-09-01 00:11:07 +05:30
|
|
|
set(summary: SummaryData): void {
|
|
|
|
this._summaryStore.put(summary);
|
2021-08-11 04:58:47 +05:30
|
|
|
}
|
2021-05-07 16:40:10 +05:30
|
|
|
|
2021-08-11 04:58:47 +05:30
|
|
|
get(roomId: string): Promise<SummaryData | null> {
|
|
|
|
return this._summaryStore.get(roomId);
|
|
|
|
}
|
|
|
|
|
|
|
|
async has(roomId: string): Promise<boolean> {
|
2021-05-07 16:38:39 +05:30
|
|
|
const fetchedKey = await this._summaryStore.getKey(roomId);
|
|
|
|
return roomId === fetchedKey;
|
2021-08-11 04:58:47 +05:30
|
|
|
}
|
2021-05-07 16:38:39 +05:30
|
|
|
|
2021-08-11 04:58:47 +05:30
|
|
|
remove(roomId: string): Promise<undefined> {
|
|
|
|
return this._summaryStore.delete(roomId);
|
|
|
|
}
|
2019-02-07 06:21:48 +05:30
|
|
|
}
|