Skip to content

Instantly share code, notes, and snippets.

@pgengler
Last active August 26, 2016 22:11
Show Gist options
  • Save pgengler/4cbaee4e3ccc148336e59e1410fb6457 to your computer and use it in GitHub Desktop.
Save pgengler/4cbaee4e3ccc148336e59e1410fb6457 to your computer and use it in GitHub Desktop.
ember-power-select focus bug
import Ember from 'ember';
export default Ember.Component.extend({
focusCount: 0,
actions: {
gotFocus() {
this.incrementProperty('focusCount');
if (this.get('focusCount') !== 1) {
throw "got unexpected second focus event";
}
},
noop() { }
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{x-thing}}
<br>
<br>
<div class="test-thing">
{{#power-select-typeahead
onchange=(action 'noop')
onfocus=(action 'gotFocus')
as |displayValue|
}}
{{displayValue}}
{{/power-select-typeahead}}
</div>
import { test } from 'qunit';
import moduleForAcceptance from '../../tests/helpers/module-for-acceptance';
moduleForAcceptance('double-focus');
test('triggering focus event', function(assert) {
visit('/');
triggerEvent('.test-thing input', 'focus');
andThen(function() {
assert.ok(true);
});
});
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import { module } from 'qunit';
import Ember from 'ember';
import startApp from '../helpers/start-app';
import destroyApp from '../helpers/destroy-app';
const { RSVP: { Promise } } = Ember;
export default function(name, options = {}) {
module(name, {
beforeEach() {
this.application = startApp();
if (options.beforeEach) {
return options.beforeEach.apply(this, arguments);
}
},
afterEach() {
let afterEach = options.afterEach && options.afterEach.apply(this, arguments);
return Promise.resolve(afterEach).then(() => destroyApp(this.application));
}
});
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
const { run } = Ember;
const assign = Ember.assign || Ember.merge;
export default function startApp(attrs) {
let application;
let attributes = assign({rootElement: "#test-root"}, config.APP);
attributes = assign(attributes, attrs); // use defaults, but you can override;
run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
{
"version": "0.10.4",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": true
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.5.1",
"ember-data": "2.7.0",
"ember-template-compiler": "2.5.1"
},
"addons": {
"ember-power-select": "1.0.0-beta.13",
"ember-power-select-typeahead": "0.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment