hedera-web/forms/ecomerce/catalog/catalog.js

476 lines
10 KiB
JavaScript
Raw Normal View History

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
2019-05-21 14:16:27 +00:00
,open: function() {
this.close();
2015-12-10 13:48:43 +00:00
this.isOpen = true;
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));
}
}
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
}
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
}
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'));
}
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',
tip: _('List view')
});
2016-09-26 09:28:47 +00:00
this.view = Hedera.Catalog.View.GRID;
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',
tip: _('Grid view')
});
2016-09-26 09:28:47 +00:00
this.view = Hedera.Catalog.View.LIST;
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;
node.className = className;
2019-05-21 14:16:27 +00:00
localStorage.setItem('hederaView', this.view);
2015-12-10 13:48:43 +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-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'));
else
2019-05-21 14:16:27 +00:00
Vn.Node.setText(this.$('method'), _('Warehouse'));
}
2019-05-21 14:16:27 +00:00
,onItemsChange: function(model, status) {
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) {
var value = e.target.value;
2019-05-21 14:16:27 +00:00
var sortField = value.substr(2);
var sortWay = value.charAt(0) === 'A' ?
Db.Model.SortWay.ASC : Db.Model.SortWay.DESC;
if (sortField)
2019-05-21 14:16:27 +00:00
this.$('items-model').sortByName(sortField, sortWay);
2019-05-21 14:16:27 +00:00
this.hideMenu();
}
2019-05-21 14:16:27 +00:00
,onFilterChange: function(param, newValue) {
if (newValue)
2019-05-21 14:16:27 +00:00
this.hideMenu();
}
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
}
2019-05-21 14:16:27 +00:00
,onRealmChange: function(param, newValue) {
if (newValue) {
this.$('filters').style.display = 'block';
this.$('realm-msg').style.display = 'none';
2019-05-21 14:16:27 +00:00
} else {
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);
}
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);
}
2019-05-21 14:16:27 +00:00
,refreshFilter: function(realm, type) {
var batch = this.$('filter-batch');
2019-05-21 14:16:27 +00:00
batch.block();
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
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;
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;
}
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;
}
2019-05-21 14:16:27 +00:00
,onBasketClick: function() {
if (this.isGuest())
2016-05-04 14:36:51 +00:00
return;
2019-05-21 14:16:27 +00:00
this.hash.set({'form': 'ecomerce/basket'});
}
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
}
,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;
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');
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-07-21 14:16:07 +00:00
if (lotAmount === undefined)
lotAmount = 0;
2019-05-21 14:16:27 +00:00
if (lotAmount < available) {
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);'});
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) {
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));
}
2019-05-21 14:16:27 +00:00
this.$('card-popup').hide();
}
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-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
}
});
2019-05-21 14:16:27 +00:00
Hedera.Catalog.extend({
View: {
LIST: 0,
GRID: 1
}
});
2019-05-21 14:16:27 +00:00
Vn.Filter = new Class({
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) {
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
}
},
filter:
{
type: Sql.Filter
2019-05-21 14:16:27 +00:00
,set: function(x) {
this._filter = x;
2019-05-21 14:16:27 +00:00
this._batch.addObject('filter', x);
}
2019-05-21 14:16:27 +00:00
,get: function() {
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);
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-19 13:57:23 +00:00
if (value === null || value === undefined)
return;
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));
2019-05-21 14:16:27 +00:00
this._changeValue(value);
this._refreshLabel();
}
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