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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?