mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-13 04:03:22 +00:00
137 lines
3.4 KiB
JavaScript
137 lines
3.4 KiB
JavaScript
import {
|
|
ensureNonEmptyString,
|
|
ensurePositiveInteger,
|
|
} from '@baserow/modules/core/utils/validator'
|
|
import {
|
|
DataSourceDataProviderType,
|
|
PageParameterDataProviderType,
|
|
CurrentRecordDataProviderType,
|
|
FormDataProviderType,
|
|
PreviousActionDataProviderType,
|
|
UserDataProviderType,
|
|
} from '@baserow/modules/builder/dataProviderTypes'
|
|
|
|
export const PLACEMENTS = {
|
|
BEFORE: 'before',
|
|
AFTER: 'after',
|
|
LEFT: 'left',
|
|
RIGHT: 'right',
|
|
}
|
|
export const PAGE_PARAM_TYPE_VALIDATION_FUNCTIONS = {
|
|
numeric: ensurePositiveInteger,
|
|
text: ensureNonEmptyString,
|
|
}
|
|
|
|
export const TEXT_FORMAT_TYPES = {
|
|
PLAIN: 'plain',
|
|
MARKDOWN: 'markdown',
|
|
}
|
|
|
|
export const IMAGE_SOURCE_TYPES = {
|
|
UPLOAD: 'upload',
|
|
URL: 'url',
|
|
}
|
|
|
|
export const IFRAME_SOURCE_TYPES = {
|
|
URL: 'url',
|
|
EMBED: 'embed',
|
|
}
|
|
|
|
export const HORIZONTAL_ALIGNMENTS = {
|
|
LEFT: {
|
|
name: 'horizontalAlignmentSelector.alignmentLeft',
|
|
value: 'left',
|
|
icon: 'iconoir-align-left',
|
|
},
|
|
CENTER: {
|
|
name: 'horizontalAlignmentSelector.alignmentCenter',
|
|
value: 'center',
|
|
icon: 'iconoir-align-center',
|
|
},
|
|
RIGHT: {
|
|
name: 'horizontalAlignmentSelector.alignmentRight',
|
|
value: 'right',
|
|
icon: 'iconoir-align-right',
|
|
},
|
|
}
|
|
|
|
export const VERTICAL_ALIGNMENTS = {
|
|
TOP: {
|
|
name: 'verticalAlignmentSelector.alignmentTop',
|
|
value: 'top',
|
|
icon: 'iconoir-align-top-box',
|
|
},
|
|
CENTER: {
|
|
name: 'verticalAlignmentSelector.alignmentCenter',
|
|
value: 'center',
|
|
icon: 'iconoir-center-align',
|
|
},
|
|
BOTTOM: {
|
|
name: 'verticalAlignmentSelector.alignmentBottom',
|
|
value: 'bottom',
|
|
icon: 'iconoir-align-bottom-box',
|
|
},
|
|
}
|
|
|
|
export const WIDTHS = {
|
|
AUTO: { value: 'auto', name: 'widthSelector.widthAuto' },
|
|
FULL: { value: 'full', name: 'widthSelector.widthFull' },
|
|
}
|
|
|
|
export const BACKGROUND_TYPES = {
|
|
NONE: { value: 'none', name: 'backgroundTypes.none' },
|
|
COLOR: { value: 'color', name: 'backgroundTypes.color' },
|
|
}
|
|
|
|
export const WIDTH_TYPES = {
|
|
FULL: { value: 'full', name: 'widthTypes.full' },
|
|
NORMAL: { value: 'normal', name: 'widthTypes.normal' },
|
|
MEDIUM: { value: 'medium', name: 'widthTypes.medium' },
|
|
SMALL: { value: 'small', name: 'widthTypes.small' },
|
|
}
|
|
|
|
/**
|
|
* A list of all the data providers that can be used in the formula field on the right
|
|
* sidebar in the application builder.
|
|
*
|
|
* @type {String[]}
|
|
*/
|
|
export const DATA_PROVIDERS_ALLOWED_ELEMENTS = [
|
|
UserDataProviderType.getType(),
|
|
CurrentRecordDataProviderType.getType(),
|
|
PageParameterDataProviderType.getType(),
|
|
DataSourceDataProviderType.getType(),
|
|
FormDataProviderType.getType(),
|
|
]
|
|
|
|
export const DATA_PROVIDERS_ALLOWED_FORM_ELEMENTS = [
|
|
UserDataProviderType.getType(),
|
|
CurrentRecordDataProviderType.getType(),
|
|
PageParameterDataProviderType.getType(),
|
|
DataSourceDataProviderType.getType(),
|
|
]
|
|
|
|
/**
|
|
* A list of all the data provider that can be used to configure data sources.
|
|
*
|
|
* @type {String[]}
|
|
*/
|
|
export const DATA_PROVIDERS_ALLOWED_DATA_SOURCES = [
|
|
UserDataProviderType.getType(),
|
|
PageParameterDataProviderType.getType(),
|
|
]
|
|
|
|
/**
|
|
* A list of all the data providers that can be used to configure workflow actions.
|
|
*
|
|
* @type {String[]}
|
|
*/
|
|
export const DATA_PROVIDERS_ALLOWED_WORKFLOW_ACTIONS = [
|
|
PreviousActionDataProviderType.getType(),
|
|
...DATA_PROVIDERS_ALLOWED_ELEMENTS,
|
|
]
|
|
|
|
export const ELEMENT_EVENTS = {
|
|
DATA_SOURCE_REMOVED: 'DATA_SOURCE_REMOVED',
|
|
DATA_SOURCE_AFTER_UPDATE: 'DATA_SOURCE_AFTER_UPDATE',
|
|
}
|