ember-json-schema-views
v0.1.1
Published
The default blueprint for ember-cli addons.
Readme
ember-json-schema-views
This addon extends aptible/ember-json-schema-document with basic JSON Schema-driven form components.
The following JSON Schema property types are supported:
booleanusingschema-field-radioorschema-field-toggleenumusingschema-field-selecttextusingschema-field-text
Schema properties can be recursed using the each-property component.
Example: Generating a Schema-driven form by recursing Schema properties
The following template will iterate a schema's properties and build UI components that are bound to corresponding document values;
var schema = new Schema(jsonBlob);
var document = schema.buildDocument();
var properties = schema.properties();{{#each-property properties=properties as |key property type|}}
<label>{{property.displayProperties.title}}</label>
{{component (concat 'schema-field-' type) key=key property=property document=location}}
{{/each-property}}Installation
git clonethis repositorynpm installbower install
Running
ember server- Visit your app at http://localhost:4200.
Running Tests
ember testember test --server
Building
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
