mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import Storage from "./storage";
|
|
import HyperSearch from "hypersearch";
|
|
import { getSchema } from "./schemas";
|
|
import PersistentCachedMap from "./persistentcachedmap";
|
|
import sort from "fast-sort";
|
|
import IndexedCollection from "./indexed-collection";
|
|
|
|
export default class CachedCollection extends IndexedCollection {
|
|
async init() {
|
|
const index = new PersistentCachedMap(`${this.type}Index`, this.storage);
|
|
const store = new PersistentCachedMap(`${this.type}Store`, this.storage);
|
|
await index.init();
|
|
await store.init();
|
|
this.search = new HyperSearch({
|
|
schema: getSchema(this.type),
|
|
tokenizer: "forward",
|
|
index,
|
|
store,
|
|
});
|
|
}
|
|
|
|
exists(id) {
|
|
const item = this.getItem(id);
|
|
return item && !item.deleted;
|
|
}
|
|
|
|
getRaw() {
|
|
return Array.from(this.search.getAllDocs());
|
|
}
|
|
|
|
getItems(sortFn = (u) => u.dateCreated) {
|
|
let items = [];
|
|
this.search.options.store.forEach((value) => {
|
|
if (!value || value.deleted) return;
|
|
items[items.length] = value;
|
|
});
|
|
return sort(items).desc(sortFn);
|
|
}
|
|
}
|