ember-one-way-controls

Native one way input

  • 所有者: DavyJonesLocker/ember-one-way-controls
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

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

主要指标

概览
名称与所有者DavyJonesLocker/ember-one-way-controls
主编程语言JavaScript
编程语言JavaScript (语言数: 2)
平台
许可证MIT License
所有者活动
创建于2015-10-19 19:08:39
推送于2019-03-28 22:35:53
最后一次提交2018-02-26 12:04:04
发布数40
最新版本名称v3.1.0 (发布于 )
第一版名称v0.1.0 (发布于 )
用户参与
星数175
关注者数10
派生数52
提交数246
已启用问题?
问题数60
打开的问题数4
拉请求数98
打开的拉请求数2
关闭的拉请求数28
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?