ページのサイズ変更時に div の高さを自動的に再計算して設定する mixin があります。
それは機能しますが、jQuery イベントにバインドし、Ember イベントが呼び出されるたびに手動でトリガーするのはばかげているように思えます。
Ember でウィンドウ イベントに直接バインドする方法はありますか?
ここに単純化された JSFiddle があります
これはコードです:
App.windowWrapper = Ember.Object.create(Ember.Evented,
resizeTimer: null
init: ->
@_super()
object = this
$(window).on 'resize', ->
window.clearTimeout(object.resizeTimer)
object.resizeTimer = setTimeout( App.windowWrapper.resize, 100)
true
resize: ->
App.windowWrapper.fire('resize')
)
そして、それを呼び出しているミックスイン。
App.Scrollable = Ember.Mixin.create
classNames: "scrollable"
init: ->
Ember.assert("Scrollable must be mixed in to a View", this instanceof Ember.View)
@_super()
didInsertElement: ->
@_super()
@calculateHeight()
App.windowWrapper.on('resize', this, 'calculateHeight')
willDestroyElement: ->
App.windowWrapper.off('resize', this, 'calculateHeight')
@_super()
calculateHeight: ->
offset = @$().offset().top
windowHeight = $(window).height()
@$().css('height', windowHeight - offset)