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-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 {
|
2019-02-07 06:21:48 +05:30
|
|
|
constructor(summaryStore) {
|
|
|
|
this._summaryStore = summaryStore;
|
|
|
|
}
|
|
|
|
|
|
|
|
getAll() {
|
|
|
|
return this._summaryStore.selectAll();
|
|
|
|
}
|
2019-02-11 01:55:29 +05:30
|
|
|
|
|
|
|
set(summary) {
|
|
|
|
return this._summaryStore.put(summary);
|
|
|
|
}
|
2021-05-04 17:04:42 +05:30
|
|
|
|
2021-05-07 16:38:39 +05:30
|
|
|
async has(roomId) {
|
|
|
|
const fetchedKey = await this._summaryStore.getKey(roomId);
|
|
|
|
return roomId === fetchedKey;
|
|
|
|
}
|
|
|
|
|
2021-05-04 17:04:42 +05:30
|
|
|
remove(roomId) {
|
|
|
|
return this._summaryStore.delete(roomId);
|
|
|
|
}
|
2019-02-07 06:21:48 +05:30
|
|
|
}
|