199 lines
7.3 KiB
JavaScript

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
require('../../../src/stylus/components/_autocompletes.styl');
var _VSelect = require('../VSelect/VSelect');
var _VSelect2 = _interopRequireDefault(_VSelect);
var _VAutocomplete = require('../VAutocomplete/VAutocomplete');
var _VAutocomplete2 = _interopRequireDefault(_VAutocomplete);
var _helpers = require('../../util/helpers');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/* @vue/component */
// Styles
exports.default = {
name: 'v-combobox',
extends: _VAutocomplete2.default,
props: {
delimiters: {
type: Array,
default: function _default() {
return [];
}
},
returnObject: {
type: Boolean,
default: true
}
},
data: function data() {
return {
editingIndex: -1
};
},
computed: {
counterValue: function counterValue() {
return this.multiple ? this.selectedItems.length : (this.internalSearch || '').toString().length;
},
hasSlot: function hasSlot() {
return _VSelect2.default.options.computed.hasSlot.call(this) || this.multiple;
},
isAnyValueAllowed: function isAnyValueAllowed() {
return true;
},
menuCanShow: function menuCanShow() {
if (!this.isFocused) return false;
return this.hasDisplayedItems || !!this.$slots['no-data'] && !this.hideNoData;
}
},
methods: {
onFilteredItemsChanged: function onFilteredItemsChanged() {
// nop
},
onInternalSearchChanged: function onInternalSearchChanged(val) {
if (val && this.multiple && this.delimiters.length) {
var delimiter = this.delimiters.find(function (d) {
return val.endsWith(d);
});
if (delimiter != null) {
this.internalSearch = val.slice(0, val.length - delimiter.length);
this.updateTags();
}
}
this.updateMenuDimensions();
},
genChipSelection: function genChipSelection(item, index) {
var _this = this;
var chip = _VSelect2.default.options.methods.genChipSelection.call(this, item, index);
// Allow user to update an existing value
if (this.multiple) {
chip.componentOptions.listeners.dblclick = function () {
_this.editingIndex = index;
_this.internalSearch = _this.getText(item);
_this.selectedIndex = -1;
};
}
return chip;
},
onChipInput: function onChipInput(item) {
_VSelect2.default.options.methods.onChipInput.call(this, item);
this.editingIndex = -1;
},
// Requires a manual definition
// to overwrite removal in v-autocomplete
onEnterDown: function onEnterDown(e) {
e.preventDefault();
_VSelect2.default.options.methods.onEnterDown.call(this);
// If has menu index, let v-select-list handle
if (this.getMenuIndex() > -1) return;
this.updateSelf();
},
onKeyDown: function onKeyDown(e) {
var keyCode = e.keyCode;
_VSelect2.default.options.methods.onKeyDown.call(this, e);
// If user is at selection index of 0
// create a new tag
if (this.multiple && keyCode === _helpers.keyCodes.left && this.$refs.input.selectionStart === 0) {
this.updateSelf();
}
// The ordering is important here
// allows new value to be updated
// and then moves the index to the
// proper location
this.changeSelectedIndex(keyCode);
},
onTabDown: function onTabDown(e) {
// When adding tags, if searching and
// there is not a filtered options,
// add the value to the tags list
if (this.multiple && this.internalSearch && this.getMenuIndex() === -1) {
e.preventDefault();
e.stopPropagation();
return this.updateTags();
}
_VAutocomplete2.default.options.methods.onTabDown.call(this, e);
},
selectItem: function selectItem(item) {
// Currently only supports items:<string[]>
if (this.editingIndex > -1) {
this.updateEditing();
} else {
_VSelect2.default.options.methods.selectItem.call(this, item);
}
},
setSelectedItems: function setSelectedItems() {
if (this.internalValue == null || this.internalValue === '') {
this.selectedItems = [];
} else {
this.selectedItems = this.multiple ? this.internalValue : [this.internalValue];
}
},
setValue: function setValue() {
var value = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.internalSearch;
_VSelect2.default.options.methods.setValue.call(this, value);
},
updateEditing: function updateEditing() {
var value = this.internalValue.slice();
value[this.editingIndex] = this.internalSearch;
this.setValue(value);
this.editingIndex = -1;
},
updateCombobox: function updateCombobox() {
var isUsingSlot = Boolean(this.$scopedSlots.selection) || this.hasChips;
// If search is not dirty and is
// using slot, do nothing
if (isUsingSlot && !this.searchIsDirty) return;
// The internal search is not matching
// the internal value, update the input
if (this.internalSearch !== this.getText(this.internalValue)) this.setValue();
// Reset search if using slot
// to avoid a double input
if (isUsingSlot) this.internalSearch = undefined;
},
updateSelf: function updateSelf() {
this.multiple ? this.updateTags() : this.updateCombobox();
},
updateTags: function updateTags() {
var menuIndex = this.getMenuIndex();
// If the user is not searching
// and no menu item is selected
// do nothing
if (menuIndex < 0 && !this.searchIsDirty) return;
if (this.editingIndex > -1) {
return this.updateEditing();
}
var index = this.selectedItems.indexOf(this.internalSearch);
// If it already exists, do nothing
// this might need to change to bring
// the duplicated item to the last entered
if (index > -1) {
var internalValue = this.internalValue.slice();
internalValue.splice(index, 1);
this.setValue(internalValue);
}
// If menu index is greater than 1
// the selection is handled elsewhere
// TODO: find out where
if (menuIndex > -1) return this.internalSearch = null;
this.selectItem(this.internalSearch);
this.internalSearch = null;
}
}
};
// Utils
// Extensions
//# sourceMappingURL=VCombobox.js.map