salix/modules/item/front/index/index.js

100 lines
2.5 KiB
JavaScript
Raw Normal View History

2017-12-19 10:05:07 +00:00
import ngModule from '../module';
2018-02-22 07:18:57 +00:00
import './style.scss';
2017-12-19 10:05:07 +00:00
class Controller {
2019-04-05 13:20:12 +00:00
constructor($http, $state, $scope, aclService) {
this.aclService = aclService;
2018-02-22 12:40:23 +00:00
this.$http = $http;
this.$state = $state;
this.$ = $scope;
2018-02-22 07:18:57 +00:00
this.itemSelected = null;
2019-02-13 08:27:11 +00:00
this.imagesPath = '//verdnatura.es/vn-image-data/catalog';
this.showFields = {
id: false,
actions: false
};
2019-04-05 13:20:12 +00:00
this.moreOptions = [
{callback: this.goToTicketRequest, name: 'Buy requests', acl: 'buyer'}
2019-04-05 13:20:12 +00:00
];
}
onMoreOpen() {
let options = this.moreOptions.filter(o => this.aclService.hasAny([o.acl]));
this.$.moreButton.data = options;
}
onMoreChange(callback) {
callback.call(this);
}
goToTicketRequest() {
this.$state.go('item.request');
}
2019-02-19 09:15:39 +00:00
stopEvent(event) {
event.preventDefault();
event.stopImmediatePropagation();
}
onSearch(params) {
if (params)
this.$.model.applyFilter(null, params);
else
this.$.model.clear();
2018-09-05 11:01:21 +00:00
}
showItemDescriptor(event, itemFk) {
if (event.defaultPrevented) return;
event.preventDefault();
event.stopPropagation();
this.$.itemDescriptor.itemFk = itemFk;
this.$.itemDescriptor.parent = event.target;
this.$.itemDescriptor.show();
}
showWorkerDescriptor(event, workerFk) {
if (event.defaultPrevented) return;
event.preventDefault();
event.stopPropagation();
this.selectedWorker = workerFk;
this.$.workerDescriptor.parent = event.target;
this.$.workerDescriptor.show();
2019-02-13 08:27:11 +00:00
}
cloneItem(event, item) {
2019-02-19 09:15:39 +00:00
this.stopEvent(event);
2018-02-22 12:40:23 +00:00
this.itemSelected = item;
this.$.clone.show();
2018-02-22 12:40:23 +00:00
}
2018-02-22 12:40:23 +00:00
onCloneAccept(response) {
if (!(response == 'ACCEPT' && this.itemSelected))
return;
this.$http.post(`/item/api/Items/${this.itemSelected.id}/clone`).then(res => {
if (res && res.data && res.data.id)
this.$state.go('item.card.tags', {id: res.data.id});
});
2018-02-22 12:40:23 +00:00
this.itemSelected = null;
}
2019-02-13 08:27:11 +00:00
preview(event, item) {
2019-02-19 09:15:39 +00:00
this.stopEvent(event);
2018-02-22 07:18:57 +00:00
this.itemSelected = item;
this.$.preview.show();
2018-02-22 07:18:57 +00:00
}
2017-12-19 10:05:07 +00:00
}
2019-04-05 13:20:12 +00:00
Controller.$inject = ['$http', '$state', '$scope', 'aclService'];
ngModule.component('vnItemIndex', {
template: require('./index.html'),
controller: Controller
2017-12-19 10:05:07 +00:00
});