hydrogen-web/src/matrix/storage/idb/stores/RoomSummaryStore.ts

62 lines
1.6 KiB
TypeScript
Raw Normal View History

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
*/
import {Store} from "../Store";
import {SummaryData} from "../../../room/RoomSummary";
2021-05-04 17:04:42 +05:30
/** Used for both roomSummary and archivedRoomSummary stores */
export class RoomSummaryStore {
private _summaryStore: Store<SummaryData>;
2019-02-07 06:21:48 +05:30
constructor(summaryStore: Store<SummaryData>) {
this._summaryStore = summaryStore;
}
2019-02-11 01:55:29 +05:30
getAll(): Promise<SummaryData[]> {
return this._summaryStore.selectAll();
}
2021-05-04 17:04:42 +05:30
set(summary: SummaryData): Promise<IDBValidKey> {
return this._summaryStore.put(summary);
}
2021-05-07 16:40:10 +05:30
get(roomId: string): Promise<SummaryData | null> {
return this._summaryStore.get(roomId);
}
async has(roomId: string): Promise<boolean> {
const fetchedKey = await this._summaryStore.getKey(roomId);
return roomId === fetchedKey;
}
remove(roomId: string): Promise<undefined> {
return this._summaryStore.delete(roomId);
}
2019-02-07 06:21:48 +05:30
}