2017-12-19 10:05:07 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-17 13:43:46 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-02-22 07:18:57 +00:00
|
|
|
import './style.scss';
|
2017-12-19 10:05:07 +00:00
|
|
|
|
2020-03-17 13:43:46 +00:00
|
|
|
class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
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-02-28 12:50:39 +00:00
|
|
|
}
|
|
|
|
|
2019-02-19 09:15:39 +00:00
|
|
|
stopEvent(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopImmediatePropagation();
|
|
|
|
}
|
|
|
|
|
2019-02-15 11:39: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();
|
|
|
|
}
|
|
|
|
|
2019-04-25 12:24:02 +00:00
|
|
|
showWorkerDescriptor(event, workerFk) {
|
2020-03-17 13:43:46 +00:00
|
|
|
if (event.defaltPrevented) return;
|
2019-02-15 11:39:21 +00:00
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
|
2019-04-25 12:24:02 +00:00
|
|
|
this.selectedWorker = workerFk;
|
2019-02-15 11:39:21 +00:00
|
|
|
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;
|
2018-06-07 21:47:19 +00:00
|
|
|
this.$.clone.show();
|
2018-02-22 12:40:23 +00:00
|
|
|
}
|
2018-05-04 09:46:03 +00:00
|
|
|
|
2018-02-22 12:40:23 +00:00
|
|
|
onCloneAccept(response) {
|
2019-10-30 15:57:14 +00:00
|
|
|
if (!(response == 'accept' && this.itemSelected))
|
2018-06-07 21:47:19 +00:00
|
|
|
return;
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
this.$http.post(`Items/${this.itemSelected.id}/clone`).then(res => {
|
2018-06-07 21:47:19 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-06-07 21:47:19 +00:00
|
|
|
|
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;
|
2018-06-07 21:47:19 +00:00
|
|
|
this.$.preview.show();
|
2018-02-22 07:18:57 +00:00
|
|
|
}
|
2017-12-19 10:05:07 +00:00
|
|
|
}
|
2020-03-17 13:43:46 +00:00
|
|
|
|
|
|
|
Controller.$inject = ['$element', '$scope'];
|
2018-05-25 08:03:45 +00:00
|
|
|
|
|
|
|
ngModule.component('vnItemIndex', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
2017-12-19 10:05:07 +00:00
|
|
|
});
|