blob: 20b7707c4113bb92a9156d8a38c3b2b2fedc2c8f [file] [log] [blame]
Matteo Scandolo974c0e42016-05-25 16:02:16 -07001/**
2 * © OpenCORD
3 *
4 * Visit http://guide.xosproject.org/devguide/addview/ for more information
5 *
6 * Created by teone on 5/25/16.
7 */
8
9(function () {
10 'use strict';
11
12 angular.module('xos.uiComponents')
13 /**
14 * @ngdoc directive
15 * @name xos.uiComponents.directive:xosField
16 * @restrict E
17 * @description The xos-field directive.
18 * This component decide, give a field wich kind of input it need to print.
19 * @param {string} name The field name
20 * @param {object} field The field configuration:
21 * ```
22 * {
23 * label: 'Label',
24 * type: 'number', //typeof field
25 * validators: {} // see xosForm for more details
26 * }
27 * ```
28 * @param {mixed} ngModel The field value
Matteo Scandolob9fb6252016-05-26 15:09:55 -070029 *
30 * @example
31
32 # Basic Example
33
34 <example module="sampleField1">
35 <file name="script.js">
36 angular.module('sampleField1', ['xos.uiComponents'])
37 .factory('_', function($window){
38 return $window._;
39 })
40 .controller('SampleCtrl', function(){
41 this.name = 'input-name';
42 this.field = {label: 'My String Value:', type: 'string'};
43 this.model = 'my string';
44 });
45 </file>
46 <file name="index.html">
47 <div ng-controller="SampleCtrl as vm">
48 <xos-field ng-model="vm.model" name="vm.name" field="vm.field"></xos-field>
49 </div>
50 </file>
51 </example>
52
53 # Possible Values
54
55 <example module="sampleField2">
56 <file name="script.js">
57 angular.module('sampleField2', ['xos.uiComponents'])
58 .factory('_', function($window){
59 return $window._;
60 })
61 .controller('SampleCtrl', function(){
62 this.field1 = {
63 name: 'number-field',
64 field: {label: 'My Number Value:', type: 'number'},
65 model: 2
66 };
67
68 this.field2 = {
69 name: 'date-field',
70 field: {label: 'My Date Value:', type: 'date'},
71 model: new Date()
72 };
73
74 this.field3 = {
75 name: 'boolean-field',
76 field: {label: 'My Boolean Value:', type: 'boolean'},
77 model: true
78 };
79
80 this.field4 = {
81 name: 'email-field',
82 field: {label: 'My Email Value:', type: 'email'},
83 model: 'sample@domain.us'
84 };
85 });
86 </file>
87 <file name="index.html">
88 <div ng-controller="SampleCtrl as vm">
89 <xos-field ng-model="vm.field1.model" name="vm.field1.name" field="vm.field1.field"></xos-field>
90 <xos-field ng-model="vm.field2.model" name="vm.field2.name" field="vm.field2.field"></xos-field>
91 <xos-field ng-model="vm.field3.model" name="vm.field3.name" field="vm.field3.field"></xos-field>
92 <xos-field ng-model="vm.field4.model" name="vm.field4.name" field="vm.field4.field"></xos-field>
93 </div>
94 </file>
95 </example>
96
97 # This element is recursive
98
99 <example module="sampleField3">
100 <file name="script.js">
101 angular.module('sampleField3', ['xos.uiComponents'])
102 .factory('_', function($window){
103 return $window._;
104 })
105 .controller('SampleCtrl', function(){
106 this.name = 'input-name';
107 this.field = {label: 'My Object Value:', type: 'object'};
108 this.model = {
109 name: 'Jhon',
110 age: '25',
111 email: 'jhon@thewall.ru',
112 active: true
113 };
114 });
115 </file>
116 <file name="index.html">
117 <div ng-controller="SampleCtrl as vm">
118 <xos-field ng-model="vm.model" name="vm.name" field="vm.field"></xos-field>
119 </div>
120 </file>
121 </example>
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700122 */
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700123 .directive('xosField', function(RecursionHelper){
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700124 return {
125 restrict: 'E',
126 scope: {
127 name: '=',
128 field: '=',
129 ngModel: '='
130 },
131 template: `
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700132 <label ng-if="vm.field.type !== 'object'">{{vm.field.label}}</label>
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700133 <input
134 ng-if="vm.field.type !== 'boolean' && vm.field.type !== 'object'"
135 type="{{vm.field.type}}"
136 name="{{vm.name}}"
137 class="form-control"
138 ng-model="vm.ngModel"
139 ng-minlength="vm.field.validators.minlength || 0"
140 ng-maxlength="vm.field.validators.maxlength || 2000"
141 ng-required="vm.field.validators.required || false" />
142 <span class="boolean-field" ng-if="vm.field.type === 'boolean'">
143 <button
144 class="btn btn-success"
145 ng-show="vm.ngModel"
146 ng-click="vm.ngModel = false">
147 <i class="glyphicon glyphicon-ok"></i>
148 </button>
149 <button
150 class="btn btn-danger"
151 ng-show="!vm.ngModel"
152 ng-click="vm.ngModel = true">
153 <i class="glyphicon glyphicon-remove"></i>
154 </button>
155 </span>
156 <div
157 class="panel panel-default object-field"
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700158 ng-if="vm.field.type == 'object' && !vm.isEmptyObject(vm.ngModel)"
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700159 >
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700160 <div class="panel-heading">{{vm.field.label}}</div>
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700161 <div class="panel-body">
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700162 <div ng-repeat="(k, v) in vm.ngModel">
163 <xos-field
164 name="k"
Matteo Scandolob9fb6252016-05-26 15:09:55 -0700165 field="{label: vm.formatLabel(k), type: vm.getType(v)}"
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700166 ng-model="v">
167 </xos-field>
168 </div>
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700169 </div>
170 </div>
171 `,
172 bindToController: true,
173 controllerAs: 'vm',
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700174 // the compile cicle is needed to support recursion
175 compile: function (element) {
176 return RecursionHelper.compile(element);
177 },
Matteo Scandolob9fb6252016-05-26 15:09:55 -0700178 controller: function($attrs, XosFormHelpers, LabelFormatter){
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700179 // console.log('Field: ', this.name, this.field, this.ngModel);
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700180 if(!this.name){
181 throw new Error('[xosField] Please provide a field name');
182 }
183 if(!this.field){
184 throw new Error('[xosField] Please provide a field definition');
185 }
Matteo Scandolob9fb6252016-05-26 15:09:55 -0700186 if(!$attrs.ngModel){
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700187 throw new Error('[xosField] Please provide an ng-model');
188 }
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700189
190 this.getType = XosFormHelpers._getFieldFormat;
Matteo Scandolob9fb6252016-05-26 15:09:55 -0700191 this.formatLabel = LabelFormatter.format;
Matteo Scandolo03d8b8e2016-05-25 17:37:37 -0700192
193 this.isEmptyObject = o => Object.keys(o).length === 0;
Matteo Scandolo974c0e42016-05-25 16:02:16 -0700194 }
195 }
196 });
197})();