-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rwjblue/initial-implementation
Initial implementation of emberjs/rfcs#415
- Loading branch information
Showing
12 changed files
with
226 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember._setModifierManager( | ||
() => ({ | ||
createModifier() {}, | ||
|
||
installModifier(_state, element, args) { | ||
let [fn, ...positional] = args.positional; | ||
|
||
fn(element, positional, args.named); | ||
}, | ||
|
||
updateModifier() {}, | ||
destroyModifier() {}, | ||
}), | ||
class DidInsertModifier {} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember._setModifierManager( | ||
() => ({ | ||
createModifier() { | ||
return { element: null }; | ||
}, | ||
installModifier(state, element) { | ||
// save element into state bucket | ||
state.element = element; | ||
}, | ||
|
||
updateModifier({ element }, args) { | ||
let [fn, ...positional] = args.positional; | ||
|
||
fn(element, positional, args.named); | ||
}, | ||
|
||
destroyModifier() {}, | ||
}), | ||
class DidUpdateModifier {} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember._setModifierManager( | ||
() => ({ | ||
createModifier() { | ||
return { element: null }; | ||
}, | ||
|
||
installModifier(state, element) { | ||
state.element = element; | ||
}, | ||
|
||
updateModifier() {}, | ||
|
||
destroyModifier({ element }, args) { | ||
let [fn, ...positional] = args.positional; | ||
|
||
fn(element, positional, args.named); | ||
}, | ||
}), | ||
class WillDestroyModifier {} | ||
); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from '@ember/render-modifiers/modifiers/did-insert'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from '@ember/render-modifiers/modifiers/did-update'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from '@ember/render-modifiers/modifiers/will-destroy'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupRenderingTest } from 'ember-qunit'; | ||
import { render } from '@ember/test-helpers'; | ||
import hbs from 'htmlbars-inline-precompile'; | ||
import Component from '@ember/component'; | ||
|
||
module('Integration | Modifier | did-insert', function(hooks) { | ||
setupRenderingTest(hooks); | ||
|
||
test('it basically works', async function(assert) { | ||
assert.expect(2); | ||
|
||
this.someMethod = element => { | ||
assert.equal(element.tagName, 'DIV', 'correct element tagName'); | ||
assert.dom(element).hasAttribute('data-foo', 'some-thing'); | ||
}; | ||
await render(hbs`<div data-foo="some-thing" {{did-insert this.someMethod}}></div>`); | ||
}); | ||
|
||
test('it can accept arguments', async function(assert) { | ||
assert.expect(4); | ||
|
||
this.someMethod = (element, positional, named) => { | ||
assert.equal(element.tagName, 'DIV', 'correct element tagName'); | ||
assert.dom(element).hasAttribute('data-foo', 'some-thing'); | ||
|
||
assert.namedArgsEqual(named, { some: 'hash-value' }, 'named args match'); | ||
assert.deepEqual(positional, ['some-positional-value'], 'positional args match'); | ||
}; | ||
|
||
await render( | ||
hbs`<div data-foo="some-thing" {{did-insert this.someMethod "some-positional-value" some="hash-value"}}></div>` | ||
); | ||
}); | ||
|
||
test('it is not invoked again when arguments change', async function(assert) { | ||
assert.expect(4); | ||
|
||
this.someMethod = (element, positional, named) => { | ||
assert.equal(element.tagName, 'DIV', 'correct element tagName'); | ||
assert.dom(element).hasAttribute('data-foo', 'some-thing'); | ||
|
||
assert.namedArgsEqual(named, {}, 'named args match'); | ||
assert.deepEqual(positional, ['initial'], 'positional args match'); | ||
}; | ||
|
||
this.set('firstArg', 'initial'); | ||
await render( | ||
hbs`<div data-foo="some-thing" {{did-insert this.someMethod this.firstArg}}></div>` | ||
); | ||
this.set('firstArg', 'updated'); | ||
}); | ||
|
||
test('adding class on insert (RFC example)', async function(assert) { | ||
this.owner.register( | ||
'component:sometimes-fades-in', | ||
Component.extend({ | ||
fadeIn(element) { | ||
element.classList.add('fade-in'); | ||
}, | ||
}) | ||
); | ||
|
||
this.owner.register( | ||
'template:components/sometimes-fades-in', | ||
hbs` | ||
{{#if shouldShow}} | ||
<div {{did-insert this.fadeIn}} class="alert"> | ||
{{yield}} | ||
</div> | ||
{{/if}} | ||
` | ||
); | ||
|
||
await render(hbs`{{sometimes-fades-in shouldShow=true}}`); | ||
|
||
assert.dom('.alert').hasClass('fade-in'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupRenderingTest } from 'ember-qunit'; | ||
import { render } from '@ember/test-helpers'; | ||
import hbs from 'htmlbars-inline-precompile'; | ||
|
||
module('Integration | Modifier | did-update', function(hooks) { | ||
setupRenderingTest(hooks); | ||
|
||
test('it basically works', async function(assert) { | ||
assert.expect(4); | ||
|
||
this.someMethod = (element, positional, named) => { | ||
assert.equal(element.tagName, 'DIV', 'correct element tagName'); | ||
assert.dom(element).hasAttribute('data-foo', 'some-thing'); | ||
|
||
assert.namedArgsEqual(named, {}, 'named args match'); | ||
assert.deepEqual(positional, ['update'], 'positional args match'); | ||
}; | ||
|
||
this.set('boundValue', 'initial'); | ||
await render( | ||
hbs`<div data-foo="some-thing" {{did-update this.someMethod this.boundValue}}></div>` | ||
); | ||
|
||
this.set('boundValue', 'update'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupRenderingTest } from 'ember-qunit'; | ||
import { render } from '@ember/test-helpers'; | ||
import hbs from 'htmlbars-inline-precompile'; | ||
|
||
module('Integration | Modifier | will-destroy', function(hooks) { | ||
setupRenderingTest(hooks); | ||
|
||
test('it basically works', async function(assert) { | ||
assert.expect(2); | ||
|
||
this.someMethod = element => { | ||
assert.equal(element.tagName, 'DIV', 'correct element tagName'); | ||
assert.dom(element).hasAttribute('data-foo', 'some-thing'); | ||
}; | ||
this.set('show', true); | ||
|
||
await render( | ||
hbs`{{#if show}}<div data-foo="some-thing" {{will-destroy this.someMethod}}></div>{{/if}}` | ||
); | ||
|
||
// trigger destroy | ||
this.set('show', false); | ||
}); | ||
|
||
test('it can accept arguments', async function(assert) { | ||
assert.expect(4); | ||
|
||
this.someMethod = (element, positional, named) => { | ||
assert.equal(element.tagName, 'DIV', 'correct element tagName'); | ||
assert.dom(element).hasAttribute('data-foo', 'some-thing'); | ||
|
||
assert.namedArgsEqual(named, { some: 'hash-value' }, 'named args match'); | ||
assert.deepEqual(positional, ['some-positional-value'], 'positional args match'); | ||
}; | ||
|
||
this.set('show', true); | ||
|
||
await render( | ||
hbs`{{#if show}}<div data-foo="some-thing" {{will-destroy this.someMethod "some-positional-value" some="hash-value"}}></div>{{/if}}` | ||
); | ||
|
||
// trigger destroy | ||
this.set('show', false); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters