2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/fyo/utils/index.ts

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

118 lines
2.6 KiB
TypeScript
Raw Normal View History

2022-04-22 11:02:03 +00:00
import { Fyo } from 'fyo';
import { Doc } from 'fyo/model/doc';
2022-04-20 06:38:47 +00:00
import { Action } from 'fyo/model/types';
2022-04-08 06:59:42 +00:00
import { pesa } from 'pesa';
import { Field, OptionField, SelectOption } from 'schemas/types';
2022-04-29 19:04:08 +00:00
import { getIsNullOrUndef } from 'utils';
2022-04-08 06:59:42 +00:00
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)) {
2022-04-08 06:59:42 +00:00
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;
}
2022-04-20 06:38:47 +00:00
export function getActions(doc: Doc): Action[] {
const Model = doc.fyo.models[doc.schemaName];
2022-04-20 06:38:47 +00:00
if (Model === undefined) {
return [];
}
return Model.getActions(doc.fyo);
2022-04-20 06:38:47 +00:00
}
2022-04-22 11:02:03 +00:00
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;
}
export function getOptionList(
field: Field,
2022-04-29 19:04:08 +00:00
doc: Doc | undefined | null
): SelectOption[] {
const list = getRawOptionList(field, doc);
return list.map((option) => {
if (typeof option === 'string') {
return {
label: option,
value: option,
};
}
return option;
});
}
2022-04-29 19:04:08 +00:00
function getRawOptionList(field: Field, doc: Doc | undefined | null) {
const options = (field as OptionField).options;
if (options && options.length > 0) {
return (field as OptionField).options;
}
2022-04-29 19:04:08 +00:00
if (getIsNullOrUndef(doc)) {
return [];
}
2022-04-29 19:04:08 +00:00
const Model = doc!.fyo.models[doc!.schemaName];
if (Model === undefined) {
return [];
}
const getList = Model.lists[field.fieldname];
if (getList === undefined) {
return [];
}
2022-04-29 19:04:08 +00:00
return getList(doc!);
}