salix/modules/order/front/catalog/index.js

147 lines
3.5 KiB
JavaScript
Raw Normal View History

2018-07-24 07:35:23 +00:00
import ngModule from '../module';
2018-09-14 07:10:30 +00:00
import './style.scss';
2018-07-24 07:35:23 +00:00
class Controller {
2018-10-31 13:56:54 +00:00
constructor($scope, $state) {
2018-07-24 07:35:23 +00:00
this.$scope = $scope;
this.$state = $state;
this.$stateParams = $state.params;
2018-10-31 13:56:54 +00:00
// Static autocomplete data
this.wayList = [
{way: 'ASC', name: 'Ascendant'},
{way: 'DESC', name: 'Descendant'},
2018-09-14 07:10:30 +00:00
];
2018-10-31 13:56:54 +00:00
this.defaultFieldList = [
2019-02-19 14:13:27 +00:00
{field: 'relevancy DESC, name', name: 'Default'},
{field: 'showOrder, price', name: 'Color'},
{field: 'name', name: 'Name'},
2018-10-31 13:56:54 +00:00
{field: 'price', name: 'Price'}
];
this.fieldList = [];
this.fieldList = this.fieldList.concat(this.defaultFieldList);
this._way = this.wayList[0].way;
this._field = this.fieldList[0].field;
2018-07-24 07:35:23 +00:00
}
2018-10-31 13:56:54 +00:00
/**
* Fills order autocomplete with tags
* obtained from last filtered
*/
onDataChange() {
const items = this.$scope.model.data;
2019-02-19 14:13:27 +00:00
const newFilterList = [];
2018-10-31 13:56:54 +00:00
if (!items) return;
items.forEach(item => {
2019-02-19 14:13:27 +00:00
// Add new tag filters
2018-10-31 13:56:54 +00:00
item.tags.forEach(itemTag => {
2019-02-19 14:13:27 +00:00
const alreadyAdded = newFilterList.findIndex(filter => {
return filter.field == itemTag.tagFk;
2018-10-31 13:56:54 +00:00
});
2019-02-19 14:13:27 +00:00
if (alreadyAdded == -1) {
newFilterList.push({
2018-10-31 13:56:54 +00:00
name: itemTag.name,
field: itemTag.tagFk,
isTag: true
});
2019-01-23 10:08:27 +00:00
}
2018-10-31 13:56:54 +00:00
});
});
2019-02-19 14:13:27 +00:00
// Add default filters - Replaces tags with same name
this.defaultFieldList.forEach(defaultField => {
const index = newFilterList.findIndex(newfield => {
return newfield.name == defaultField.name;
});
if (index > -1)
newFilterList[index] = defaultField;
else
newFilterList.push(defaultField);
});
this.fieldList = newFilterList;
2018-07-24 07:35:23 +00:00
}
2018-10-31 13:56:54 +00:00
/**
* Get order way ASC/DESC
*/
get way() {
return this._way;
2018-07-24 07:35:23 +00:00
}
2018-10-31 13:56:54 +00:00
set way(value) {
this._way = value;
2019-04-24 07:21:24 +00:00
if (value) this.applyOrder();
2018-10-31 13:56:54 +00:00
}
/**
* Get order fields
*/
get field() {
return this._field;
}
set field(value) {
this._field = value;
2019-04-24 07:21:24 +00:00
if (value) this.applyOrder();
2018-10-31 13:56:54 +00:00
}
/**
* Returns order param
*
* @return {Object} - Order param
*/
getOrderBy() {
let field = this.$scope.field;
let args = {
field: this.field,
way: this.way
};
if (field.selection && field.selection.isTag)
args.isTag = true;
return args;
}
/**
* Apply order to model
*/
applyOrder() {
this.$scope.model.addFilter(null, {orderBy: this.getOrderBy()});
2018-07-24 07:35:23 +00:00
}
2018-08-21 11:38:16 +00:00
preview(event, item) {
event.preventDefault();
this.$scope.pricesPopover.show(event, item);
}
onDescriptorLoad() {
this.$scope.popover.relocate();
}
$onChanges() {
2018-10-31 13:56:54 +00:00
if (this.order && this.order.isConfirmed)
this.$state.go('order.card.line');
}
get isRefreshing() {
return this.$scope.model && this.$scope.model.status == 'loading';
}
2018-07-24 07:35:23 +00:00
}
2018-10-31 13:56:54 +00:00
Controller.$inject = ['$scope', '$state'];
2018-07-24 07:35:23 +00:00
2018-08-21 11:38:16 +00:00
ngModule.component('vnOrderCatalog', {
2018-07-24 07:35:23 +00:00
template: require('./index.html'),
controller: Controller,
bindings: {
2018-10-31 13:56:54 +00:00
order: '<',
2019-01-30 22:47:06 +00:00
}
2018-07-24 07:35:23 +00:00
});