2015-01-23 13:09:30 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
Hedera.Catalog = new Class({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Hedera.Form
|
2015-09-16 16:11:15 +00:00
|
|
|
|
|
|
|
,_menuShown: false
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,open: function() {
|
|
|
|
this.close();
|
2015-12-10 13:48:43 +00:00
|
|
|
this.isOpen = true;
|
2015-07-28 19:14:26 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (!localStorage.getItem('hederaGuest')) {
|
|
|
|
Hedera.BasketChecker.check(this.conn,
|
|
|
|
this.onBasketCheck.bind(this));
|
|
|
|
} else {
|
|
|
|
var query = 'CALL mybasket_configureForGuest';
|
|
|
|
this.conn.execQuery(query, this.loadUi.bind(this));
|
2015-09-01 14:10:44 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-28 19:14:26 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onBasketCheck: function(isOk) {
|
2015-12-10 13:48:43 +00:00
|
|
|
if (isOk)
|
2019-05-21 14:16:27 +00:00
|
|
|
this.loadUi();
|
2015-12-10 13:48:43 +00:00
|
|
|
}
|
2015-07-28 19:14:26 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,activate: function() {
|
|
|
|
document.body.appendChild(this.$('right-panel'));
|
2015-09-28 15:21:37 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.$('items-model').setInfo('i', 'item', 'vn', ['id']);
|
2015-12-10 13:48:43 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (localStorage.getItem('hederaView'))
|
|
|
|
this.setView(parseInt(localStorage.getItem('hederaView')));
|
2015-12-10 13:48:43 +00:00
|
|
|
else
|
2019-05-21 14:16:27 +00:00
|
|
|
this.setView(Hedera.Catalog.View.GRID);
|
2015-12-10 13:48:43 +00:00
|
|
|
}
|
2015-09-01 14:10:44 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,deactivate: function() {
|
|
|
|
this.hideMenu();
|
2015-12-10 13:48:43 +00:00
|
|
|
this.gui.$('top-bar').style.backgroundColor = '';
|
2019-05-21 14:16:27 +00:00
|
|
|
Vn.Node.remove(this.$('right-panel'));
|
2015-07-28 19:14:26 +00:00
|
|
|
}
|
2016-04-26 10:54:12 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,setView: function(view) {
|
|
|
|
if (view === Hedera.Catalog.View.GRID) {
|
|
|
|
this.$('view-button').setProperties({
|
2016-09-26 09:28:47 +00:00
|
|
|
icon: 'view-list',
|
2016-01-07 12:58:29 +00:00
|
|
|
tip: _('List view')
|
|
|
|
});
|
2016-09-26 09:28:47 +00:00
|
|
|
this.view = Hedera.Catalog.View.GRID;
|
2016-01-08 21:00:02 +00:00
|
|
|
var className = 'grid-view';
|
2019-05-21 14:16:27 +00:00
|
|
|
} else {
|
|
|
|
this.$('view-button').setProperties({
|
2016-09-27 06:18:20 +00:00
|
|
|
icon: 'view-grid',
|
2016-01-07 12:58:29 +00:00
|
|
|
tip: _('Grid view')
|
|
|
|
});
|
2016-09-26 09:28:47 +00:00
|
|
|
this.view = Hedera.Catalog.View.LIST;
|
2016-01-08 21:00:02 +00:00
|
|
|
var className = 'list-view';
|
2015-09-22 07:20:47 +00:00
|
|
|
}
|
|
|
|
|
2016-10-16 14:16:08 +00:00
|
|
|
var node = this.$('grid-view').node;
|
2016-01-08 21:00:02 +00:00
|
|
|
node.className = className;
|
2019-05-21 14:16:27 +00:00
|
|
|
localStorage.setItem('hederaView', this.view);
|
2015-12-10 13:48:43 +00:00
|
|
|
}
|
2015-07-28 19:14:26 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onSwitchViewClick: function() {
|
|
|
|
this.setView(this.view === Hedera.Catalog.View.LIST ?
|
2016-09-26 09:28:47 +00:00
|
|
|
Hedera.Catalog.View.GRID : Hedera.Catalog.View.LIST);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2015-02-08 15:38:38 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onBasketReady: function(form) {
|
|
|
|
if (form.get('method') != 'PICKUP')
|
|
|
|
Vn.Node.setText(this.$('method'), _('Agency'));
|
2015-10-08 08:15:14 +00:00
|
|
|
else
|
2019-05-21 14:16:27 +00:00
|
|
|
Vn.Node.setText(this.$('method'), _('Warehouse'));
|
2015-10-08 08:15:14 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onItemsChange: function(model, status) {
|
2016-01-07 12:58:29 +00:00
|
|
|
if (status !== Db.Model.Status.CLEAN)
|
|
|
|
this.$('order').style.display = 'block';
|
|
|
|
else
|
|
|
|
this.$('order').style.display = 'none';
|
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onOrderChange: function(e) {
|
2016-01-07 12:58:29 +00:00
|
|
|
var value = e.target.value;
|
2019-05-21 14:16:27 +00:00
|
|
|
var sortField = value.substr(2);
|
|
|
|
var sortWay = value.charAt(0) === 'A' ?
|
2016-01-07 12:58:29 +00:00
|
|
|
Db.Model.SortWay.ASC : Db.Model.SortWay.DESC;
|
|
|
|
|
|
|
|
if (sortField)
|
2019-05-21 14:16:27 +00:00
|
|
|
this.$('items-model').sortByName(sortField, sortWay);
|
2016-01-10 13:10:51 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.hideMenu();
|
2016-01-10 13:10:51 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onFilterChange: function(param, newValue) {
|
2016-01-10 13:10:51 +00:00
|
|
|
if (newValue)
|
2019-05-21 14:16:27 +00:00
|
|
|
this.hideMenu();
|
2016-01-07 12:58:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,realmRenderer: function(builder, form) {
|
2015-07-23 15:58:48 +00:00
|
|
|
var link = builder.$('link');
|
2019-05-21 14:16:27 +00:00
|
|
|
link.href = this.hash.make({
|
|
|
|
'form': this.hash.get('form'),
|
|
|
|
'realm': form.get('id')
|
2015-07-23 15:58:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var img = builder.$('image');
|
2021-11-17 07:36:38 +00:00
|
|
|
img.src = 'image/family/light/'+ form.get('code') +'.svg';
|
2019-05-21 14:16:27 +00:00
|
|
|
img.title = form.get('name');
|
2015-07-23 15:58:48 +00:00
|
|
|
img.alt = img.title;
|
2015-02-08 15:38:38 +00:00
|
|
|
}
|
2016-01-07 12:58:29 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onRealmChange: function(param, newValue) {
|
|
|
|
if (newValue) {
|
2016-01-07 12:58:29 +00:00
|
|
|
this.$('filters').style.display = 'block';
|
|
|
|
this.$('realm-msg').style.display = 'none';
|
2019-05-21 14:16:27 +00:00
|
|
|
} else {
|
2016-01-07 12:58:29 +00:00
|
|
|
this.$('filters').style.display = 'none';
|
|
|
|
this.$('realm-msg').style.display = 'block';
|
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.refreshTitleColor();
|
|
|
|
this.refreshFilter(newValue, undefined);
|
2016-01-07 12:58:29 +00:00
|
|
|
}
|
2015-07-23 15:58:48 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onTypeChange: function(param, newValue) {
|
|
|
|
this.onFilterChange(param, newValue);
|
|
|
|
this.refreshTitle();
|
|
|
|
this.refreshFilter(undefined, newValue);
|
2016-01-07 12:58:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,refreshFilter: function(realm, type) {
|
2016-01-07 12:58:29 +00:00
|
|
|
var batch = this.$('filter-batch');
|
2019-05-21 14:16:27 +00:00
|
|
|
batch.block();
|
2016-01-07 12:58:29 +00:00
|
|
|
this.$('realm-value').value = realm;
|
|
|
|
this.$('type-value').value = type;
|
|
|
|
this.$('search').value = undefined;
|
|
|
|
this.$('color').value = undefined;
|
|
|
|
this.$('origin').value = undefined;
|
|
|
|
this.$('category').value = undefined;
|
|
|
|
this.$('producer').value = undefined;
|
2019-05-21 14:16:27 +00:00
|
|
|
batch.unblock();
|
|
|
|
batch.changed();
|
2015-12-10 13:48:43 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,refreshTitleColor: function() {
|
2015-07-23 15:58:48 +00:00
|
|
|
var realms = this.$('realms-model');
|
2015-12-10 13:48:43 +00:00
|
|
|
|
2015-07-23 15:58:48 +00:00
|
|
|
if (!realms.ready)
|
|
|
|
return;
|
2015-02-08 15:38:38 +00:00
|
|
|
|
|
|
|
var color = null;
|
2015-12-10 13:48:43 +00:00
|
|
|
var realm = this.$('realm').value;
|
2015-02-08 15:38:38 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (realm) {
|
|
|
|
var row = realms.search('id', realm);
|
2015-07-23 15:58:48 +00:00
|
|
|
|
|
|
|
if (row != -1)
|
2019-05-21 14:16:27 +00:00
|
|
|
color = '#'+ realms.get(row, 'color');
|
2015-07-23 15:58:48 +00:00
|
|
|
}
|
2015-02-08 15:38:38 +00:00
|
|
|
|
2015-09-11 09:37:16 +00:00
|
|
|
this.gui.$('top-bar').style.backgroundColor = color;
|
2015-02-08 15:38:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,refreshTitle: function() {
|
2015-07-23 15:58:48 +00:00
|
|
|
var types = this.$('types-model');
|
|
|
|
|
|
|
|
if (!types.ready)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var title = _('Catalog');
|
2015-12-10 13:48:43 +00:00
|
|
|
var type = this.$('type').value;
|
2015-02-08 15:38:38 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (type) {
|
|
|
|
var row = types.search('id', type);
|
2015-02-08 15:38:38 +00:00
|
|
|
|
|
|
|
if (row != -1)
|
2019-05-21 14:16:27 +00:00
|
|
|
title = types.get(row, 'name');
|
2015-02-08 15:38:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
Vn.Node.setText(this.$('title-text'), title);
|
2015-02-08 15:38:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onRightPanelClick: function(event) {
|
|
|
|
event.stopPropagation();
|
2015-02-08 15:38:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onShowMenuClick: function(event) {
|
2015-09-16 16:11:15 +00:00
|
|
|
this._menuShown = true;
|
2019-05-21 14:16:27 +00:00
|
|
|
event.stopPropagation();
|
|
|
|
this.gui.showBackground();
|
|
|
|
Vn.Node.addClass(this.$('right-panel'), 'show');
|
|
|
|
this.hideMenuCallback = this.hideMenu.bind(this);
|
|
|
|
document.addEventListener('click', this.hideMenuCallback);
|
2015-02-08 15:38:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,hideMenu: function() {
|
2015-09-16 16:11:15 +00:00
|
|
|
if (!this._menuShown)
|
|
|
|
return;
|
2015-12-15 15:22:46 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.gui.hideBackground();
|
|
|
|
Vn.Node.removeClass(this.$('right-panel'), 'show');
|
|
|
|
document.removeEventListener('click', this.hideMenuCallback);
|
2015-02-08 15:38:38 +00:00
|
|
|
this.hideMenuCallback = null;
|
|
|
|
}
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,isGuest: function() {
|
|
|
|
if (localStorage.getItem('hederaGuest')) {
|
|
|
|
Htk.Toast.showError(_('YouMustBeLoggedIn'));
|
2016-05-04 14:36:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2015-09-30 06:45:42 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onBasketClick: function() {
|
|
|
|
if (this.isGuest())
|
2016-05-04 14:36:51 +00:00
|
|
|
return;
|
2015-01-23 13:09:30 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.hash.set({'form': 'ecomerce/basket'});
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2016-05-04 14:36:51 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onConfigureClick: function() {
|
|
|
|
if (this.isGuest())
|
2016-05-04 14:36:51 +00:00
|
|
|
return;
|
2015-11-19 13:57:23 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.hash.set({'form': 'ecomerce/checkout'});
|
2015-11-19 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-13 11:31:52 +00:00
|
|
|
,repeaterFunc: function(res, form) {
|
|
|
|
res.$('item-box').addEventListener('click',
|
|
|
|
this.onAddItemClick.bind(this, form));
|
|
|
|
}
|
|
|
|
|
|
|
|
,onAddItemClick: function(form, event) {
|
|
|
|
if (event.defaultPrevented) return;
|
|
|
|
event.preventDefault();
|
|
|
|
if (this.isGuest()) return;
|
2015-09-01 14:10:44 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.onEraseClick();
|
2016-05-04 14:36:51 +00:00
|
|
|
this.$('card').row = form.row;
|
2019-05-21 14:16:27 +00:00
|
|
|
this.$('card-item').value = form.get('id');
|
2022-04-13 11:31:52 +00:00
|
|
|
this.$('card-popup').show(event.currentTarget);
|
2015-07-07 15:27:47 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onAddLotClick: function(column, value, row) {
|
2015-07-07 15:27:47 +00:00
|
|
|
var model = this.$('item-lots');
|
2019-05-21 14:16:27 +00:00
|
|
|
var grouping = model.get(row, 'grouping');
|
|
|
|
var warehouse = model.get(row, 'warehouseFk');
|
|
|
|
var available = model.get(row, 'available');
|
2015-07-21 14:16:07 +00:00
|
|
|
|
|
|
|
var lotAmount = this.items[warehouse];
|
2015-10-14 15:02:06 +00:00
|
|
|
|
2015-07-21 14:16:07 +00:00
|
|
|
if (lotAmount === undefined)
|
|
|
|
lotAmount = 0;
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (lotAmount < available) {
|
2015-10-14 15:02:06 +00:00
|
|
|
var newAmount = lotAmount + grouping;
|
|
|
|
|
|
|
|
if (newAmount > available)
|
|
|
|
newAmount = available;
|
|
|
|
|
|
|
|
this.items[warehouse] = newAmount;
|
|
|
|
this.$('amount').value += newAmount - lotAmount;
|
2019-05-21 14:16:27 +00:00
|
|
|
} else
|
|
|
|
Htk.Toast.showError(_('NoMoreAmountAvailable'));
|
2015-07-07 15:27:47 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onConfirmClick: function() {
|
2015-07-21 14:16:07 +00:00
|
|
|
var sql = '';
|
2019-05-21 14:16:27 +00:00
|
|
|
var batch = new Sql.Batch();
|
|
|
|
var query = new Sql.String({query: 'CALL myBasket_addItem(#warehouse, #item, #amount);'});
|
2015-08-27 14:04:34 +00:00
|
|
|
var amountSum = 0;
|
2015-07-21 14:16:07 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
for (var warehouse in this.items) {
|
2015-08-27 14:04:34 +00:00
|
|
|
var amount = this.items[warehouse];
|
|
|
|
amountSum += amount;
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
batch.addValue('warehouse', warehouse);
|
|
|
|
batch.addValue('item', this.$('card-item').value);
|
|
|
|
batch.addValue('amount', amount);
|
|
|
|
sql += query.render(batch);
|
2015-07-21 14:16:07 +00:00
|
|
|
}
|
2015-07-07 15:27:47 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (amountSum > 0) {
|
|
|
|
this.conn.execQuery(sql);
|
2015-07-07 15:27:47 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
var itemName = this.$('card').get('item');
|
|
|
|
Htk.Toast.showMessage(
|
|
|
|
sprintf(_('Added%dOf%s'), amountSum, itemName));
|
2015-08-27 14:04:34 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this.$('card-popup').hide();
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2015-07-21 14:16:07 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onEraseClick: function() {
|
2016-05-04 14:36:51 +00:00
|
|
|
this.$('amount').value = 0;
|
|
|
|
this.items = {};
|
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onPopupClose: function() {
|
|
|
|
this.onEraseClick();
|
2016-05-04 14:36:51 +00:00
|
|
|
this.$('card').row = -1;
|
|
|
|
this.$('card-item').value = undefined;
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
2015-11-19 13:57:23 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,onCardLoad: function() {
|
|
|
|
this.$('card-popup').reset();
|
2015-07-21 14:16:07 +00:00
|
|
|
}
|
2015-01-23 13:09:30 +00:00
|
|
|
});
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
Hedera.Catalog.extend({
|
2016-01-07 12:58:29 +00:00
|
|
|
View: {
|
|
|
|
LIST: 0,
|
|
|
|
GRID: 1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
Vn.Filter = new Class({
|
2015-11-09 17:11:51 +00:00
|
|
|
Extends: Htk.Field
|
2015-10-14 11:51:43 +00:00
|
|
|
,Tag: 'vn-filter'
|
2015-09-28 09:46:24 +00:00
|
|
|
,Child: 'model'
|
|
|
|
,Properties:
|
|
|
|
{
|
|
|
|
model:
|
|
|
|
{
|
|
|
|
type: Db.Model
|
2019-05-21 14:16:27 +00:00
|
|
|
,set: function(x) {
|
2015-11-17 10:34:33 +00:00
|
|
|
x.batch = this._batch;
|
2015-09-28 09:46:24 +00:00
|
|
|
this._model = x;
|
2015-11-19 13:57:23 +00:00
|
|
|
this._select.model = x;
|
2015-09-28 09:46:24 +00:00
|
|
|
}
|
2019-05-21 14:16:27 +00:00
|
|
|
,get: function() {
|
2015-09-28 09:46:24 +00:00
|
|
|
return this._model;
|
|
|
|
}
|
|
|
|
},
|
2015-10-14 11:51:43 +00:00
|
|
|
placeholder:
|
2015-09-28 09:46:24 +00:00
|
|
|
{
|
|
|
|
type: String
|
2019-05-21 14:16:27 +00:00
|
|
|
,set: function(x) {
|
2015-10-14 11:51:43 +00:00
|
|
|
this._select.placeholder = x;
|
|
|
|
this._placeholder = x;
|
2015-09-28 09:46:24 +00:00
|
|
|
}
|
2019-05-21 14:16:27 +00:00
|
|
|
,get: function() {
|
2015-10-14 11:51:43 +00:00
|
|
|
return this._placeholder;
|
2015-09-28 09:46:24 +00:00
|
|
|
}
|
|
|
|
},
|
2015-11-17 10:34:33 +00:00
|
|
|
filter:
|
|
|
|
{
|
|
|
|
type: Sql.Filter
|
2019-05-21 14:16:27 +00:00
|
|
|
,set: function(x) {
|
2015-11-17 10:34:33 +00:00
|
|
|
this._filter = x;
|
2019-05-21 14:16:27 +00:00
|
|
|
this._batch.addObject('filter', x);
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
2019-05-21 14:16:27 +00:00
|
|
|
,get: function() {
|
2015-11-17 10:34:33 +00:00
|
|
|
return this._filter;
|
|
|
|
}
|
|
|
|
},
|
2015-09-28 09:46:24 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 13:57:23 +00:00
|
|
|
,_valueColumnIndex: 0
|
|
|
|
,_showColumnIndex: 1
|
2015-10-14 11:51:43 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,initialize: function(props) {
|
|
|
|
var node = this.createRoot('div');
|
2016-10-16 14:16:08 +00:00
|
|
|
node.className = 'vn-filter';
|
2015-09-28 09:46:24 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this._select = new Htk.Select();
|
|
|
|
this._select.on('mousedown', this._onMouseDown, this);
|
|
|
|
this._select.on('changed', this._onChange, this);
|
|
|
|
this._select.on('ready', this._onReady, this);
|
|
|
|
this.node.appendChild(this._select.node);
|
2015-09-28 09:46:24 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this._ul = this.createElement('ul');
|
|
|
|
this.node.appendChild(this._ul);
|
2015-11-17 10:34:33 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this._batch = new Sql.Batch();
|
|
|
|
this.parent(props);
|
2015-09-28 09:46:24 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_onMouseDown: function() {
|
2015-10-14 11:51:43 +00:00
|
|
|
if (this._model && this._model.status === Db.Model.Status.CLEAN)
|
2019-05-21 14:16:27 +00:00
|
|
|
this._model.refresh();
|
2015-10-14 11:51:43 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_onCloseClick: function() {
|
|
|
|
this._removeSelectionNode();
|
|
|
|
this._changeValue(undefined);
|
2015-10-14 11:51:43 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_removeSelectionNode: function() {
|
|
|
|
if (this._lastLi) {
|
|
|
|
Vn.Node.remove(this._lastLi);
|
2015-11-19 13:57:23 +00:00
|
|
|
this._lastLi = null;
|
|
|
|
this._label = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_onChange: function() {
|
2015-10-14 11:51:43 +00:00
|
|
|
if (this._select.value === null
|
|
|
|
|| this._select.value === undefined)
|
2015-09-28 09:46:24 +00:00
|
|
|
return;
|
2015-11-19 13:57:23 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this._realSetValue(this._select.value);
|
2015-11-19 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_onReady: function() {
|
2015-11-19 13:57:23 +00:00
|
|
|
if (this._emptyLabel)
|
2019-05-21 14:16:27 +00:00
|
|
|
this._refreshLabel();
|
2015-11-19 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_changeValue: function(newValue) {
|
|
|
|
this._batch.block();
|
2015-11-19 13:57:23 +00:00
|
|
|
this.value = newValue;
|
2019-05-21 14:16:27 +00:00
|
|
|
this._batch.unblock();
|
2015-11-19 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_onTimeout: function() {
|
2015-11-19 13:57:23 +00:00
|
|
|
this._select.value = null;
|
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,putValue: function(value) {
|
|
|
|
this._onMouseDown();
|
|
|
|
this._realSetValue(value);
|
2015-11-19 13:57:23 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_realSetValue: function(value) {
|
|
|
|
this._removeSelectionNode();
|
2015-11-17 10:34:33 +00:00
|
|
|
|
2015-11-19 13:57:23 +00:00
|
|
|
if (value === null || value === undefined)
|
|
|
|
return;
|
2015-11-17 10:34:33 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
var li = this._lastLi = this.createElement('li');
|
|
|
|
this._ul.appendChild(li);
|
2015-10-14 11:51:43 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
var button = this.createElement('button');
|
|
|
|
button.addEventListener('click',
|
|
|
|
this._onCloseClick.bind(this, li));
|
|
|
|
li.appendChild(button);
|
2015-10-14 11:51:43 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
var icon = new Htk.Icon({
|
2016-09-26 09:28:47 +00:00
|
|
|
icon: 'close',
|
|
|
|
alt: _('Close')
|
|
|
|
});
|
2019-05-21 14:16:27 +00:00
|
|
|
button.appendChild(icon.node);
|
2016-10-04 15:27:49 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
var text = this._label = this.createTextNode('');
|
|
|
|
li.appendChild(text);
|
2015-10-14 11:51:43 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
setTimeout(this._onTimeout.bind(this));
|
2015-11-09 17:11:51 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
this._changeValue(value);
|
|
|
|
this._refreshLabel();
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
,_refreshLabel: function() {
|
2015-11-19 13:57:23 +00:00
|
|
|
if (!this._label)
|
|
|
|
return;
|
2015-10-14 11:51:43 +00:00
|
|
|
|
2015-11-19 13:57:23 +00:00
|
|
|
var row = -1;
|
|
|
|
|
|
|
|
if (this._model.ready)
|
2019-05-21 14:16:27 +00:00
|
|
|
row = this._model.searchByIndex(this._valueColumnIndex, this._value);
|
2015-11-19 13:57:23 +00:00
|
|
|
|
2019-05-21 14:16:27 +00:00
|
|
|
if (row != -1) {
|
|
|
|
var label = this._model.getByIndex(row, this._showColumnIndex);
|
2015-11-19 13:57:23 +00:00
|
|
|
this._label.nodeValue = label;
|
|
|
|
this._emptyLabel = false;
|
2019-05-21 14:16:27 +00:00
|
|
|
} else {
|
2015-11-19 13:57:23 +00:00
|
|
|
this._emptyLabel = true;
|
|
|
|
this._label.nodeValue = _('Loading...');
|
|
|
|
}
|
2015-09-28 09:46:24 +00:00
|
|
|
}
|
2016-05-04 14:36:51 +00:00
|
|
|
});
|
2015-09-22 07:25:50 +00:00
|
|
|
|