How to use the ember-power-select/components/power-select-multiple.extend function in ember-power-select

To help you get started, we’ve selected a few ember-power-select examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github TryGhost / Ghost-Admin / app / components / gh-token-input / select-multiple.js View on Github external
import $ from 'jquery';
import PowerSelectMultiple from 'ember-power-select/components/power-select-multiple';
import {bind} from '@ember/runloop';

const endActions = 'click.ghToken mouseup.ghToken touchend.ghToken';

// triggering focus on the search input within ESA's onfocus event breaks the
// drag-n-drop functionality in ember-drag-drop so we watch for events that
// could be the start of a drag and disable the default focus behaviour until
// we get another event signalling the end of a drag

export default PowerSelectMultiple.extend({

    tagName: 'div',

    _canFocus: true,

    willDestroyElement() {
        this._super(...arguments);

        if (this._allowFocusListener) {
            $(window).off(endActions, this._allowFocusListener);
        }
    },

    actions: {
        optionMouseDown(event) {
            if (event.which === 1 && !event.ctrlKey) {
github nickschot / ember-model-select / addon / components / model-select-multiple.js View on Github external
import PowerSelectMultipleComponent from 'ember-power-select/components/power-select-multiple';
import layout from '../templates/components/model-select-multiple';
import fallbackIfUndefined from '../utils/computed-fallback-if-undefined';

/**
 * {{model-select-multiple}} component. This is a wrapper around the normal model-select component. The same arguments apply.
 *
 * @class ModelSelectMultipleComponent
 */
export default PowerSelectMultipleComponent.extend({
  layout,

  triggerClass: fallbackIfUndefined('ember-model-select-multiple-trigger'),

  actions: {
    change(option, select){
      const suggestion = option.find(item => item.__isSuggestion__);

      if(suggestion){
        this.get('oncreate')(suggestion.__value__, select);
      } else {
        this.get('onchange')(option, select);
      }
    }
  }
});