2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/fyo/core/docHandler.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

175 lines
4.1 KiB
TypeScript
Raw Normal View History

import { Doc } from 'fyo/model/doc';
import { DocMap, ModelMap, SinglesMap } from 'fyo/model/types';
import { coreModels } from 'fyo/models';
import { NotFoundError, ValueError } from 'fyo/utils/errors';
import Observable from 'fyo/utils/observable';
2022-04-22 11:02:03 +00:00
import { Schema } from 'schemas/types';
import { getRandomString } from 'utils';
import { Fyo } from '..';
import { DocValueMap } from './types';
2022-03-22 09:28:36 +00:00
export class DocHandler {
fyo: Fyo;
models: ModelMap = {};
2022-04-18 08:01:41 +00:00
singles: SinglesMap = {};
docs: Observable<DocMap | undefined> = new Observable();
observer: Observable<never> = new Observable();
2022-03-22 09:28:36 +00:00
constructor(fyo: Fyo) {
this.fyo = fyo;
2022-03-22 09:28:36 +00:00
}
init() {
this.models = {};
2022-04-22 11:02:03 +00:00
this.singles = {};
2022-03-22 09:28:36 +00:00
this.docs = new Observable();
this.observer = new Observable();
2022-03-22 09:28:36 +00:00
}
2022-04-22 11:02:03 +00:00
purgeCache() {
this.init();
}
registerModels(models: ModelMap, regionalModels: ModelMap = {}) {
for (const schemaName in this.fyo.db.schemaMap) {
if (coreModels[schemaName] !== undefined) {
this.models[schemaName] = coreModels[schemaName];
} else if (regionalModels[schemaName] !== undefined) {
this.models[schemaName] = regionalModels[schemaName];
} else if (models[schemaName] !== undefined) {
this.models[schemaName] = models[schemaName];
} else {
this.models[schemaName] = Doc;
}
2022-03-22 09:28:36 +00:00
}
}
/**
* Doc Operations
*/
async getDoc(
schemaName: string,
name?: string,
2022-03-22 09:28:36 +00:00
options = { skipDocumentCache: false }
) {
if (name === undefined) {
name = schemaName;
}
if (name === schemaName && !this.fyo.schemaMap[schemaName]?.isSingle) {
throw new ValueError(`${schemaName} is not a Single Schema`);
}
let doc: Doc | undefined;
2022-03-22 09:28:36 +00:00
if (!options?.skipDocumentCache) {
doc = this.#getFromCache(schemaName, name);
2022-03-22 09:28:36 +00:00
}
if (doc) {
return doc;
}
doc = this.getNewDoc(schemaName, { name });
2022-03-22 09:28:36 +00:00
await doc.load();
this.#addToCache(doc);
2022-03-22 09:28:36 +00:00
return doc;
}
2022-04-22 11:02:03 +00:00
getNewDoc(
schemaName: string,
data: DocValueMap = {},
cacheDoc: boolean = true,
2022-04-22 11:02:03 +00:00
schema?: Schema,
Model?: typeof Doc
): Doc {
2022-04-22 12:01:04 +00:00
if (!this.models[schemaName] && Model) {
this.models[schemaName] = Model;
}
Model ??= this.models[schemaName];
2022-04-22 11:02:03 +00:00
schema ??= this.fyo.schemaMap[schemaName];
if (schema === undefined) {
throw new NotFoundError(`Schema not found for ${schemaName}`);
}
2022-04-22 12:01:04 +00:00
const doc = new Model!(schema, data, this.fyo);
doc.name ??= getRandomString();
if (cacheDoc) {
this.#addToCache(doc);
}
2022-03-22 09:28:36 +00:00
return doc;
}
/**
* Cache operations
*/
#addToCache(doc: Doc) {
if (!doc.name) {
2022-03-22 09:28:36 +00:00
return;
}
const name = doc.name;
const schemaName = doc.schemaName;
if (!this.docs[schemaName]) {
this.docs.set(schemaName, {});
this.#setCacheUpdationListeners(schemaName);
}
this.docs.get(schemaName)![name] = doc;
// singles available as first level objects too
if (schemaName === doc.name) {
this.singles[name] = doc;
2022-03-22 09:28:36 +00:00
}
// propagate change to `docs`
doc.on('change', (params: unknown) => {
this.docs!.trigger('change', params);
});
doc.on('afterSync', () => {
if (doc.name === name) {
return;
}
this.#removeFromCache(doc.schemaName, name);
this.#addToCache(doc);
});
}
#setCacheUpdationListeners(schemaName: string) {
this.fyo.db.observer.on(`delete:${schemaName}`, (name: string) => {
this.#removeFromCache(schemaName, name);
});
this.fyo.db.observer.on(
`rename:${schemaName}`,
(names: { oldName: string; newName: string }) => {
const doc = this.#getFromCache(schemaName, names.oldName);
if (doc === undefined) {
return;
}
this.#removeFromCache(schemaName, names.oldName);
this.#addToCache(doc);
}
);
}
#removeFromCache(schemaName: string, name: string) {
const docMap = this.docs.get(schemaName);
delete docMap?.[name];
}
#getFromCache(schemaName: string, name: string): Doc | undefined {
const docMap = this.docs.get(schemaName);
return docMap?.[name];
}
2022-03-22 09:28:36 +00:00
}