UNPKG

alpaca

Version:

Alpaca provides the easiest and fastest way to generate interactive forms for the web and mobile devices. It runs simply as HTML5 or more elaborately using Bootstrap, jQuery Mobile or jQuery UI. Alpaca uses Handlebars to process JSON schema and provide

109 lines (90 loc) 2.88 kB
(function($) { var Alpaca = $.alpaca; Alpaca.Fields.CountryField = Alpaca.Fields.SelectField.extend( /** * @lends Alpaca.Fields.CountryField.prototype */ { /** * @see Alpaca.Field#getFieldType */ getFieldType: function() { return "country"; }, /** * @see Alpaca.Fields.Field#setup */ setup: function() { // defaults if (Alpaca.isUndefined(this.options.capitalize)) { this.options.capitalize = false; } this.schema["enum"] = []; this.options.optionLabels = []; var countriesMap = this.getMessage("countries"); if (countriesMap) { for (var countryKey in countriesMap) { this.schema["enum"].push(countryKey); var label = countriesMap[countryKey]; if (this.options.capitalize) { label = label.toUpperCase(); } this.options.optionLabels.push(label); } } this.base(); } /* builder_helpers */ , /** * @see Alpaca.Fields.TextField#getTitle */ getTitle: function() { return "Country Field"; }, /** * @see Alpaca.Fields.TextField#getDescription */ getDescription: function() { return "Provides a dropdown selector of countries keyed by their ISO3 code. The names of the countries are read from the I18N bundle for the current locale."; }, /** * @private * @see Alpaca.Fields.TextField#getSchemaOfOptions */ getSchemaOfOptions: function() { return Alpaca.merge(this.base(), { "properties": { "capitalize": { "title": "Capitalize", "description": "Whether the values should be capitalized", "type": "boolean", "default": false, "readonly": true } } }); }, /** * @private * @see Alpaca.Fields.TextField#getOptionsForOptions */ getOptionsForOptions: function() { return Alpaca.merge(this.base(), { "fields": { "capitalize": { "type": "checkbox" } } }); } /* end_builder_helpers */ }); Alpaca.registerFieldClass("country", Alpaca.Fields.CountryField); Alpaca.registerDefaultFormatFieldMapping("country", "country"); })(jQuery);