UNPKG

aurelia-form

Version:

Makes working with forms just a tad more pleasant.

225 lines (179 loc) 8.82 kB
define(['exports', 'aurelia-framework', 'aurelia-view-manager', 'aurelia-config'], function (exports, _aureliaFramework, _aureliaViewManager, _aureliaConfig) { 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.FormGroup = undefined; function _initDefineProp(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); } function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object['ke' + 'ys'](descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object['define' + 'Property'](target, property, desc); desc = null; } return desc; } function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that transform-class-properties is enabled.'); } var _dec, _dec2, _dec3, _dec4, _class, _desc, _value, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22; var FormGroup = exports.FormGroup = (_dec = (0, _aureliaViewManager.resolvedView)('spoonx/form', 'form-group'), _dec2 = (0, _aureliaFramework.customElement)('form-group'), _dec3 = (0, _aureliaFramework.inject)(_aureliaConfig.Configuration.of('aurelia-form')), _dec4 = (0, _aureliaFramework.bindable)({ defaultBindingMode: _aureliaFramework.bindingMode.twoWay }), _dec(_class = _dec2(_class = _dec3(_class = (_class2 = function () { function FormGroup(config) { _initDefineProp(this, 'value', _descriptor, this); _initDefineProp(this, 'classes', _descriptor2, this); _initDefineProp(this, 'elementClasses', _descriptor3, this); _initDefineProp(this, 'labelClasses', _descriptor4, this); _initDefineProp(this, 'element', _descriptor5, this); _initDefineProp(this, 'placeholder', _descriptor6, this); _initDefineProp(this, 'state', _descriptor7, this); _initDefineProp(this, 'name', _descriptor8, this); _initDefineProp(this, 'label', _descriptor9, this); _initDefineProp(this, 'error', _descriptor10, this); _initDefineProp(this, 'message', _descriptor11, this); _initDefineProp(this, 'type', _descriptor12, this); _initDefineProp(this, 'behavior', _descriptor13, this); _initDefineProp(this, 'readonly', _descriptor14, this); _initDefineProp(this, 'disabled', _descriptor15, this); _initDefineProp(this, 'autofocus', _descriptor16, this); _initDefineProp(this, 'required', _descriptor17, this); _initDefineProp(this, 'options', _descriptor18, this); _initDefineProp(this, 'multiple', _descriptor19, this); _initDefineProp(this, 'selectOptions', _descriptor20, this); _initDefineProp(this, 'optionLabel', _descriptor21, this); _initDefineProp(this, 'translate', _descriptor22, this); this.config = config; this.behavior = config.defaultBehavior; } FormGroup.prototype.is = function is(oneOf, then, source) { if (typeof oneOf === 'string') { oneOf = oneOf.split(',').map(function (one) { return one.trim(); }); } source = source || this.element; then = then || true; return oneOf.indexOf(source) > -1 ? then : false; }; FormGroup.prototype.byPattern = function byPattern(pattern, defaults) { var overrides = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : ''; var regex = new RegExp(pattern, 'gi'); if (regex.test(overrides)) { defaults = defaults.replace(regex, ''); } return (defaults + ' ' + overrides).replace(' ', ' ').trim(); }; FormGroup.prototype.when = function when(conditional, value, otherwise) { return conditional ? value : otherwise || ''; }; return FormGroup; }(), (_descriptor = _applyDecoratedDescriptor(_class2.prototype, 'value', [_dec4], { enumerable: true, initializer: function initializer() { return null; } }), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'classes', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'elementClasses', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return this.config.defaultElementClasses; } }), _descriptor4 = _applyDecoratedDescriptor(_class2.prototype, 'labelClasses', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return this.config.defaultLabelClasses; } }), _descriptor5 = _applyDecoratedDescriptor(_class2.prototype, 'element', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return 'input'; } }), _descriptor6 = _applyDecoratedDescriptor(_class2.prototype, 'placeholder', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return ''; } }), _descriptor7 = _applyDecoratedDescriptor(_class2.prototype, 'state', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor8 = _applyDecoratedDescriptor(_class2.prototype, 'name', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor9 = _applyDecoratedDescriptor(_class2.prototype, 'label', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor10 = _applyDecoratedDescriptor(_class2.prototype, 'error', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor11 = _applyDecoratedDescriptor(_class2.prototype, 'message', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor12 = _applyDecoratedDescriptor(_class2.prototype, 'type', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return 'text'; } }), _descriptor13 = _applyDecoratedDescriptor(_class2.prototype, 'behavior', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor14 = _applyDecoratedDescriptor(_class2.prototype, 'readonly', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return false; } }), _descriptor15 = _applyDecoratedDescriptor(_class2.prototype, 'disabled', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return false; } }), _descriptor16 = _applyDecoratedDescriptor(_class2.prototype, 'autofocus', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor17 = _applyDecoratedDescriptor(_class2.prototype, 'required', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor18 = _applyDecoratedDescriptor(_class2.prototype, 'options', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor19 = _applyDecoratedDescriptor(_class2.prototype, 'multiple', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return false; } }), _descriptor20 = _applyDecoratedDescriptor(_class2.prototype, 'selectOptions', [_aureliaFramework.bindable], { enumerable: true, initializer: function initializer() { return []; } }), _descriptor21 = _applyDecoratedDescriptor(_class2.prototype, 'optionLabel', [_aureliaFramework.bindable], { enumerable: true, initializer: null }), _descriptor22 = _applyDecoratedDescriptor(_class2.prototype, 'translate', [_aureliaFramework.bindable], { enumerable: true, initializer: null })), _class2)) || _class) || _class) || _class); });