formiojs
Version:
Common js library for client side interaction with <form.io>
126 lines (121 loc) • 3.46 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _Formio = _interopRequireDefault(require("../../../Formio"));
var _lodash = _interopRequireDefault(require("lodash"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _default = [{
type: 'select',
input: true,
key: 'storage',
label: 'Storage',
placeholder: 'Select your file storage provider',
weight: 0,
tooltip: 'Which storage to save the files in.',
valueProperty: 'value',
dataSrc: 'custom',
data: {
custom: function custom() {
return _lodash.default.map(_Formio.default.providers.storage, function (storage, key) {
return {
label: storage.title,
value: key
};
});
}
}
}, {
type: 'textfield',
input: true,
key: 'url',
label: 'Url',
weight: 10,
placeholder: 'Enter the url to post the files to.',
tooltip: "See <a href='https://github.com/danialfarid/ng-file-upload#server-side' target='_blank'>https://github.com/danialfarid/ng-file-upload#server-side</a> for how to set up the server.",
conditional: {
json: {
'===': [{
var: 'data.storage'
}, 'url']
}
}
}, {
type: 'textfield',
input: true,
key: 'dir',
label: 'Directory',
placeholder: '(optional) Enter a directory for the files',
tooltip: 'This will place all the files uploaded in this field in the directory',
weight: 20
}, {
type: 'checkbox',
input: true,
key: 'image',
label: 'Display as image(s)',
tooltip: 'Instead of a list of linked files, images will be rendered in the view.',
weight: 30
}, {
type: 'textfield',
input: true,
key: 'imageSize',
label: 'Image Size',
placeholder: '100',
tooltip: 'The image size for previewing images.',
weight: 40,
conditional: {
json: {
'==': [{
var: 'data.image'
}, true]
}
}
}, {
type: 'checkbox',
input: true,
key: 'webcam',
label: 'Enable web camera',
tooltip: 'This will allow using an attached camera to directly take a picture instead of uploading an existing file.',
weight: 32
}, {
type: 'textfield',
input: true,
key: 'webcamSize',
label: 'Webcam Width',
placeholder: '320',
tooltip: 'The webcam size for taking pictures.',
weight: 38,
conditional: {
json: {
'==': [{
var: 'data.webcam'
}, true]
}
}
}, {
type: 'textfield',
input: true,
key: 'filePattern',
label: 'File Pattern',
placeholder: '.pdf,.jpg',
tooltip: 'See <a href=\'https://github.com/danialfarid/ng-file-upload#full-reference\' target=\'_blank\'>https://github.com/danialfarid/ng-file-upload#full-reference</a> for how to specify file patterns.',
weight: 50
}, {
type: 'textfield',
input: true,
key: 'fileMinSize',
label: 'File Minimum Size',
placeholder: '1MB',
tooltip: 'See <a href=\'https://github.com/danialfarid/ng-file-upload#full-reference\' target=\'_blank\'>https://github.com/danialfarid/ng-file-upload#full-reference</a> for how to specify file sizes.',
weight: 60
}, {
type: 'textfield',
input: true,
key: 'fileMaxSize',
label: 'File Maximum Size',
placeholder: '10MB',
tooltip: 'See <a href=\'https://github.com/danialfarid/ng-file-upload#full-reference\' target=\'_blank\'>https://github.com/danialfarid/ng-file-upload#full-reference</a> for how to specify file sizes.',
weight: 70
}];
exports.default = _default;