1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/builder/src/constants/backend/index.js

157 lines
3 KiB
JavaScript
Raw Normal View History

2020-06-16 03:41:31 +12:00
export const FIELDS = {
2020-08-08 03:13:57 +12:00
STRING: {
name: "Text",
2020-06-17 07:29:18 +12:00
type: "string",
constraints: {
2020-06-16 03:41:31 +12:00
type: "string",
2020-06-17 07:29:18 +12:00
length: {},
presence: false,
2020-06-16 03:41:31 +12:00
},
},
LONGFORM: {
name: "Long Form Text",
type: "longform",
constraints: {
type: "string",
length: {},
presence: false,
},
},
OPTIONS: {
name: "Options",
type: "options",
constraints: {
type: "string",
2020-10-12 08:42:30 +13:00
presence: false,
inclusion: [],
},
},
ARRAY: {
2021-08-27 01:04:18 +12:00
name: "Multi-select",
type: "array",
constraints: {
type: "array",
presence: false,
inclusion: [],
},
},
2020-06-16 03:41:31 +12:00
NUMBER: {
name: "Number",
2020-06-17 07:29:18 +12:00
type: "number",
constraints: {
2020-06-16 03:41:31 +12:00
type: "number",
presence: false,
numericality: { greaterThanOrEqualTo: "", lessThanOrEqualTo: "" },
2020-06-16 03:41:31 +12:00
},
},
BOOLEAN: {
2021-02-23 22:38:24 +13:00
name: "Boolean",
2020-06-17 07:29:18 +12:00
type: "boolean",
constraints: {
2020-06-16 03:41:31 +12:00
type: "boolean",
presence: false,
2020-06-16 03:41:31 +12:00
},
},
DATETIME: {
name: "Date/Time",
type: "datetime",
constraints: {
type: "string",
length: {},
presence: false,
datetime: {
latest: "",
earliest: "",
},
},
},
2020-09-12 02:09:56 +12:00
ATTACHMENT: {
name: "Attachment",
type: "attachment",
constraints: {
type: "array",
presence: false,
2020-09-12 02:09:56 +12:00
},
},
LINK: {
name: "Relationship",
type: "link",
constraints: {
type: "array",
2020-10-12 08:42:30 +13:00
presence: false,
},
2021-02-16 08:59:49 +13:00
},
FORMULA: {
name: "Formula",
type: "formula",
constraints: {
type: "string",
presence: false,
},
},
}
export const AUTO_COLUMN_SUB_TYPES = {
AUTO_ID: "autoID",
CREATED_BY: "createdBy",
CREATED_AT: "createdAt",
UPDATED_BY: "updatedBy",
UPDATED_AT: "updatedAt",
}
export const AUTO_COLUMN_DISPLAY_NAMES = {
AUTO_ID: "Auto ID",
CREATED_BY: "Created By",
CREATED_AT: "Created At",
UPDATED_BY: "Updated By",
UPDATED_AT: "Updated At",
2020-06-16 03:41:31 +12:00
}
2020-09-17 23:45:28 +12:00
export const FILE_TYPES = {
IMAGE: ["png", "tiff", "gif", "raw", "jpg", "jpeg"],
CODE: ["js", "rs", "py", "java", "rb", "hs", "yml"],
2020-09-18 03:36:39 +12:00
DOCUMENT: ["odf", "docx", "doc", "pdf", "csv"],
}
export const HostingTypes = {
CLOUD: "cloud",
SELF: "self",
}
2021-02-11 11:23:27 +13:00
export const Roles = {
ADMIN: "ADMIN",
POWER: "POWER",
BASIC: "BASIC",
PUBLIC: "PUBLIC",
BUILDER: "BUILDER",
}
export function isAutoColumnUserRelationship(subtype) {
2021-02-16 08:59:49 +13:00
return (
subtype === AUTO_COLUMN_SUB_TYPES.CREATED_BY ||
subtype === AUTO_COLUMN_SUB_TYPES.UPDATED_BY
2021-02-16 08:59:49 +13:00
)
}
export const RelationshipTypes = {
MANY_TO_MANY: "many-to-many",
ONE_TO_MANY: "one-to-many",
MANY_TO_ONE: "many-to-one",
}
export const ALLOWABLE_STRING_OPTIONS = [FIELDS.STRING, FIELDS.OPTIONS]
export const ALLOWABLE_STRING_TYPES = ALLOWABLE_STRING_OPTIONS.map(
opt => opt.type
)
export const ALLOWABLE_NUMBER_OPTIONS = [FIELDS.NUMBER, FIELDS.BOOLEAN]
export const ALLOWABLE_NUMBER_TYPES = ALLOWABLE_NUMBER_OPTIONS.map(
opt => opt.type
)
export const SWITCHABLE_TYPES = ALLOWABLE_NUMBER_TYPES.concat(
ALLOWABLE_STRING_TYPES
)