Skip to content

Instantly share code, notes, and snippets.

@code0100fun
Last active August 21, 2018 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code0100fun/a8e7db8c97f6c6689a7aeb08c3f853b2 to your computer and use it in GitHub Desktop.
Save code0100fun/a8e7db8c97f6c6689a7aeb08c3f853b2 to your computer and use it in GitHub Desktop.
link-to bubbles bug
import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['success selection-area'],
didReceiveAttrs() {
this.count = 0;
},
click(e) {
this.incrementProperty('count');
},
});
import Ember from 'ember';
export default Ember.Component.extend({
didReceiveAttrs() {
this.count = 0;
},
handleClick(e) {
this.incrementProperty('count');
},
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
this.route('home', { path: '/' });
this.route('bugs');
});
export default Router;
body {
margin: 12px 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12pt;
}
.error {
background-color: red;
}
.success {
background-color: green;
}
.selection-area {
max-width: 500px;
max-height: 200px;
padding: 10px;
margin: 10px 0;
user-select: none;
}
.info {
color: white;
font-weight: bold;
}
{{#click-component}}
<h2>This one works</h2>
<p>Clicking the link below should not hit click handler on component.</p>
{{#link-to 'bugs' bubbles=false}}Click Me!{{/link-to}}
{{/click-component}}
{{#native-event-click-component}}
<h2>This one does not work</h2>
<p>Clicking the link below should not hit click handler on component.</p>
{{#link-to 'bugs' bubbles=false}}Click Me!{{/link-to}}
{{/native-event-click-component}}
{{outlet}}
<h1>Bugs</h1>
{{#link-to 'home'}}Home{{/link-to}}
<span class="info">Clicks: {{count}}</span>
{{yield}}
<div class="error selection-area" onclick={{action handleClick}}>
<span class="info">Clicks: {{count}}</span>
{{yield}}
</div>
{
"version": "0.15.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.1.1",
"ember-template-compiler": "3.1.1",
"ember-testing": "3.1.1"
},
"addons": {
"ember-data": "3.1.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment