mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
9877bf4fd3
- allow nulls in converter else not not null'll fail
76 lines
1.7 KiB
TypeScript
76 lines
1.7 KiB
TypeScript
import { Fyo } from 'fyo';
|
|
import { Doc } from 'fyo/model/doc';
|
|
import { Action } from 'fyo/model/types';
|
|
import { pesa } from 'pesa';
|
|
|
|
export function slug(str: string) {
|
|
return str
|
|
.replace(/(?:^\w|[A-Z]|\b\w)/g, function (letter, index) {
|
|
return index == 0 ? letter.toLowerCase() : letter.toUpperCase();
|
|
})
|
|
.replace(/\s+/g, '');
|
|
}
|
|
|
|
export function range(n: number) {
|
|
return Array(n)
|
|
.fill(null)
|
|
.map((_, i) => i);
|
|
}
|
|
|
|
export function unique<T>(list: T[], key = (it: T) => String(it)) {
|
|
const seen: Record<string, boolean> = {};
|
|
return list.filter((item) => {
|
|
const k = key(item);
|
|
return seen.hasOwnProperty(k) ? false : (seen[k] = true);
|
|
});
|
|
}
|
|
|
|
export function getDuplicates(array: unknown[]) {
|
|
const duplicates: unknown[] = [];
|
|
for (const i in array) {
|
|
const previous = array[parseInt(i) - 1];
|
|
const current = array[i];
|
|
|
|
if (current === previous) {
|
|
if (!duplicates.includes(current)) {
|
|
duplicates.push(current);
|
|
}
|
|
}
|
|
}
|
|
return duplicates;
|
|
}
|
|
|
|
export function isPesa(value: unknown): boolean {
|
|
return value instanceof pesa().constructor;
|
|
}
|
|
|
|
export function getActions(doc: Doc): Action[] {
|
|
const Model = doc.fyo.models[doc.schemaName];
|
|
if (Model === undefined) {
|
|
return [];
|
|
}
|
|
|
|
return Model.getActions(doc.fyo);
|
|
}
|
|
|
|
export async function getSingleValue(
|
|
fieldname: string,
|
|
parent: string,
|
|
fyo: Fyo
|
|
) {
|
|
if (!fyo.db.isConnected) {
|
|
return undefined;
|
|
}
|
|
|
|
const res = await fyo.db.getSingleValues({ fieldname, parent });
|
|
const singleValue = res.find(
|
|
(f) => f.fieldname === fieldname && f.parent === parent
|
|
);
|
|
|
|
if (singleValue === undefined) {
|
|
return undefined;
|
|
}
|
|
|
|
return singleValue.value;
|
|
}
|