This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
entity-form.js
168 lines (136 loc) · 5.49 KB
/
entity-form.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
var _dec, _dec2, _dec3, _class, _desc, _value, _class2, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11;
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.');
}
import { customElement, bindable, computedFrom } from 'aurelia-framework';
import { resolvedView } from 'aurelia-view-manager';
import { Metadata } from '../aurelia-form';
export let EntityForm = (_dec = resolvedView('spoonx/form', 'entity-form'), _dec2 = customElement('entity-form'), _dec3 = computedFrom('entity'), _dec(_class = _dec2(_class = (_class2 = class EntityForm {
constructor() {
_initDefineProp(this, 'form', _descriptor, this);
_initDefineProp(this, 'entity', _descriptor2, this);
_initDefineProp(this, 'behavior', _descriptor3, this);
_initDefineProp(this, 'classes', _descriptor4, this);
_initDefineProp(this, 'elementClasses', _descriptor5, this);
_initDefineProp(this, 'labelClasses', _descriptor6, this);
_initDefineProp(this, 'skip', _descriptor7, this);
_initDefineProp(this, 'validated', _descriptor8, this);
_initDefineProp(this, 'buttonOptions', _descriptor9, this);
_initDefineProp(this, 'buttonLabel', _descriptor10, this);
_initDefineProp(this, 'buttonEnabled', _descriptor11, this);
}
get elements() {
let entityMeta = {};
if (typeof this.entity.getMeta === 'function') {
entityMeta = this.entity.getMeta().metadata;
}
let types = entityMeta.types || {};
let associations = entityMeta.associations || {};
let fields = Metadata.forTarget(this.entity).fetch('fields', {});
return Object.keys(this.entity).map(name => {
let field = fields[name] || {};
let association = associations[name];
let options = field.options || {};
let element = types[name] || 'input';
if (association) {
element = 'association';
options.resource = association.entity;
options.multiple = association.type === 'collection';
}
if (field.element) {
element = field.element;
}
return {
element: element,
field: name,
meta: field,
options: options
};
}).sort((left, right) => {
let leftPosition = left.meta.position || 0;
let rightPosition = right.meta.position || 0;
if (leftPosition < rightPosition) {
return -1;
}
if (leftPosition > rightPosition) {
return 1;
}
return 0;
});
}
isVisible(fieldName) {
return this.skip.indexOf(fieldName) === -1;
}
submit() {
this.form.submit();
}
}, (_descriptor = _applyDecoratedDescriptor(_class2.prototype, 'form', [bindable], {
enumerable: true,
initializer: null
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'entity', [bindable], {
enumerable: true,
initializer: null
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'behavior', [bindable], {
enumerable: true,
initializer: null
}), _descriptor4 = _applyDecoratedDescriptor(_class2.prototype, 'classes', [bindable], {
enumerable: true,
initializer: null
}), _descriptor5 = _applyDecoratedDescriptor(_class2.prototype, 'elementClasses', [bindable], {
enumerable: true,
initializer: null
}), _descriptor6 = _applyDecoratedDescriptor(_class2.prototype, 'labelClasses', [bindable], {
enumerable: true,
initializer: null
}), _descriptor7 = _applyDecoratedDescriptor(_class2.prototype, 'skip', [bindable], {
enumerable: true,
initializer: function () {
return [];
}
}), _descriptor8 = _applyDecoratedDescriptor(_class2.prototype, 'validated', [bindable], {
enumerable: true,
initializer: function () {
return true;
}
}), _descriptor9 = _applyDecoratedDescriptor(_class2.prototype, 'buttonOptions', [bindable], {
enumerable: true,
initializer: null
}), _descriptor10 = _applyDecoratedDescriptor(_class2.prototype, 'buttonLabel', [bindable], {
enumerable: true,
initializer: null
}), _descriptor11 = _applyDecoratedDescriptor(_class2.prototype, 'buttonEnabled', [bindable], {
enumerable: true,
initializer: null
}), _applyDecoratedDescriptor(_class2.prototype, 'elements', [_dec3], Object.getOwnPropertyDescriptor(_class2.prototype, 'elements'), _class2.prototype)), _class2)) || _class) || _class);