-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathschema-form-strapselect.js
40 lines (35 loc) · 3.23 KB
/
schema-form-strapselect.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
angular.module("schemaForm").run(["$templateCache", function($templateCache) {$templateCache.put("directives/decorators/bootstrap/strap/strapmultiselect.html","<div class=\"form-group\" ng-class=\"{\'has-error\': hasError(), \'has-success\': hasSuccess()}\">\n <label class=\"control-label\" ng-show=\"showTitle()\">{{form.title}}</label>\n <div class=\"form-group\">\n <button type=\"button\" class=\"btn btn-default\" sf-changed=\"form\" ng-model=\"$$value$$\" schema-validate=\"form\" data-placeholder=\"{{form.placeholder || form.schema.placeholder || (\'placeholders.select\' | translate)}}\" data-multiple=\"1\" data-html=\"1\" ng-options=\"item.value as item.label for item in form.schema.items\" bs-select></button>\n <span class=\"help-block\">{{ (hasError() && errorMessage(schemaError())) || form.description}}</span>\n </div>\n</div>\n");
$templateCache.put("directives/decorators/bootstrap/strap/strapselect.html","<div class=\"form-group\" ng-class=\"{\'has-error\': hasError(), \'has-success\': hasSuccess()}\">\n <label class=\"control-label\" ng-show=\"showTitle()\">{{form.title}}</label>\n <div class=\"form-group\">\n <button type=\"button\" class=\"btn btn-default\" sf-changed=\"form\" ng-model=\"$$value$$\" schema-validate=\"form\" data-placeholder=\"{{form.placeholder || form.schema.placeholder ||(\'placeholders.select\' | translate)}}\" data-html=\"1\" ng-options=\"item.value as item.label for item in form.schema.items\" bs-select></button>\n <span class=\"help-block\">{{ (hasError() && errorMessage(schemaError())) || form.description}}</span>\n </div>\n</div>\n");}]);
angular.module('schemaForm-strapselect', ['schemaForm', 'mgcrea.ngStrap']).config(
['schemaFormProvider', 'schemaFormDecoratorsProvider', 'sfPathProvider',
function(schemaFormProvider, schemaFormDecoratorsProvider, sfPathProvider) {
var select = function(name, schema, options) {
if (schema.type === 'string' && schema.format == 'strapselect') {
var f = schemaFormProvider.stdFormObj(name, schema, options);
f.key = options.path;
f.type = 'strapselect';
options.lookup[sfPathProvider.stringify(options.path)] = f;
return f;
}
};
schemaFormProvider.defaults.string.unshift(select);
var multiselect = function(name, schema, options) {
if (schema.type === 'array' && schema.format == 'strapselect') {
var f = schemaFormProvider.stdFormObj(name, schema, options);
f.key = options.path;
f.type = 'strapmultiselect';
options.lookup[sfPathProvider.stringify(options.path)] = f;
return f;
}
};
schemaFormProvider.defaults.array.unshift(multiselect);
//Add to the bootstrap directive
schemaFormDecoratorsProvider.addMapping('bootstrapDecorator', 'strapselect',
'directives/decorators/bootstrap/strap/strapselect.html');
schemaFormDecoratorsProvider.createDirective('strapselect',
'directives/decorators/bootstrap/strap/strapselect.html');
schemaFormDecoratorsProvider.addMapping('bootstrapDecorator', 'strapmultiselect',
'directives/decorators/bootstrap/strap/strapmultiselect.html');
schemaFormDecoratorsProvider.createDirective('strapmultiselect',
'directives/decorators/bootstrap/strap/strapmultiselect.html');
}]);