ember-one-way-controls

Native one way input

  • Owner: DavyJonesLocker/ember-one-way-controls
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

DEPRECATED: ember-one-way-controls

ember-one-way-controls was built by DockYard, contact us for expert Ember.js consulting.

This project has been deprecated. When Ember 1.13 came out it became possible to
use the native <input> element with one-way bindings. Unfortunately, that
version contained a bug that made the cursor jump to the end of the text in the
input. This addon was built to correct that bug.

That bug has since been fixed in Ember 2.3.1. In the meantime, we had added
some other form components to the addon, like a radio component, a textarea
component and a select component. This kept the addon useful to us for a while.

Recently we started noticing that we only really needed the select component
from this addon. This made us decide to extract this component to its own
addon and deprecate this addon.

The new addon is called ember-one-way-select.

You can find the README of the old version here.

Migrating

one-way-input

{{! old }}
{{one-way-input myValue update=(action (mut myValue))}}

{{! new }}
<input value={{myValue}} oninput={{action (mut myValue) value="target.value"}}>

one-way-textarea

{{! old }}
{{one-way-textarea myValue update=(action (mut myValue))}}

{{! new }}
<textarea value={{myValue}} oninput={{action (mut myValue) value="target.value"}}></textarea>

one-way-checkbox

{{! old }}
{{one-way-checkbox myValue update=(action (mut myValue))}}

{{! new }}
<input type="checkbox" checked={{myValue}} onclick={{action (mut myValue) value="target.checked"}}>

one-way-radio

{{! old }}
{{one-way-radio myValue option=myOption update=(action (mut myValue))}}

{{! new }}
<input type="radio" checked={{eq myValue myOption}} onclick={{action (mut myValue) myOption}}>

DockYard, Inc © 2016

@dockyard

Licensed under the MIT license

Main metrics

Overview
Name With OwnerDavyJonesLocker/ember-one-way-controls
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 2)
Platform
License:MIT License
所有者活动
Created At2015-10-19 19:08:39
Pushed At2019-03-28 22:35:53
Last Commit At2018-02-26 12:04:04
Release Count40
Last Release Namev3.1.0 (Posted on )
First Release Namev0.1.0 (Posted on )
用户参与
Stargazers Count175
Watchers Count10
Fork Count52
Commits Count246
Has Issues Enabled
Issues Count60
Issue Open Count4
Pull Requests Count98
Pull Requests Open Count2
Pull Requests Close Count28
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private