2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 14:50:56 +00:00
books/backend/common.ts

36 lines
752 B
TypeScript
Raw Normal View History

import { Field, FieldTypeEnum, SchemaMap } from '../schemas/types';
2022-03-23 06:16:13 +00:00
export const sqliteTypeMap = {
AutoComplete: 'text',
Currency: 'text',
Int: 'integer',
Float: 'float',
Percent: 'float',
Check: 'integer',
Code: 'text',
Date: 'text',
Datetime: 'text',
Time: 'text',
Text: 'text',
Data: 'text',
Link: 'text',
DynamicLink: 'text',
Password: 'text',
Select: 'text',
File: 'text',
Attach: 'text',
AttachImage: 'text',
Color: 'text',
};
export const validTypes = Object.keys(sqliteTypeMap);
export function getFieldsByType(
schemaName: string,
schemaMap: SchemaMap,
type: FieldTypeEnum
): Field[] {
const fields = schemaMap[schemaName].fields ?? [];
return fields.filter((f) => f.fieldtype === type);
}