GithubHelp home page GithubHelp logo

fabriquartz / ember-railio-form-components Goto Github PK

View Code? Open in Web Editor NEW
4.0 7.0 11.0 2.81 MB

Ember addon for data-down/action-up based form-fields

License: MIT License

JavaScript 92.11% CSS 1.05% HTML 6.85%

ember-railio-form-components's Introduction

Dependabot Status Build Status

Ember-railio-form-components

An Ember addon for data-down/action-up based form-fields for (Ember) objects. By installing this addon, you can use the form-field component to add form-fields that can be used on data-down / action-up.

If you want to use our paper form fields, you install the addon as described below. Click here for the documentation.

Install

In your application's directory:

$ ember install ember-railio-form-components

Available types

The form-field component can be used directly with some build-in types:

  • text-area
  • text-field
  • lazy-text-field
  • number-field
  • check-box
  • date-time-field

text-area

text-field

lazy-text-field

Is like a normal text-field, but calls the update function not on each change / keydown, but only on pressing enter or leaving the input.

number-field

Is a lazy-text-field, but only accepts numeric values. You'll be able to use the arrow-up and arrow-down key to increase or decrease the value.

check-box

Indicates a boolean value, so can only be false or true.

date-time-field

Needs a datetime as a value, and uses a datepicker for selecting the date. Also you are able to set the current datetime and empty the value.

file-input

Button that opens a file dialog, and uses an EmberArray containing the files selected by the user (as native File objects) as a value.

Unlike the other fields this field does not show an initial value, as it can only handle files after the user selects them in a browser dialog (its behaviour mimics that of an HTMLInputElement with type=file)

Available options:

  • multiple: true/false, wether or not the user should be able to select multiple files, defaults to false
  • type: string, used in labels and to infer accepted files, defaults to 'file'
  • accept: unique file type specifier, accepted file type(s) (automatically inferred from type when it is one of image, video or audio) defaults to '*/*'
  • iconComponent: string, name of the component to use to render an icon in the button, defaults to 'fa-icon'
  • iconName: string, name passed to the icon component, defaults to 'upload'

Components for use with block-form

Other form-components that are need to be used with the block-form:

  • auto-complete
  • select-auto-complete
  • radio-select

By using the block-form you could use your own written components when they have a 'value' and call the update action for using data-down/action-up.

Basic usage

Because the form-field component is build for using data-down/action-up, you need to have an action in your project that handles the changes. So in your project's component, you need an update action. This way you have your data handling on just one place, so when you want to do something on each change, like a validation, you are able to put this on just one location in your code.

actions: {
  update(object, propertyPath, newValue) {
    Ember.set(object, propertyPath, newValue);
  }
}

The form-field component can be used by calling it with the wanted field type. In your Handlebars templates:

{{form-field type="text-area"
             object=movie
             propertyPath="description"
             updated=(action "update")
             disabled=locked}}

On each change of the value, the updated action is called with the new value.

Block-form usage

You could use the block-form usage of the form-field component with components that are not directly usable of if you need to add more information to the used component.

{{#form-field object=movie
              propertyPath="description"
              updated=(action "update")
              disabled=locked
              as |value updated disabled|}}
  {{text-area value=value
              updated=updated
              disabled=disabled}}
{{/form-field}}

Using your own components

You can use your own components by using the form-field component in block form, like shown above.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.