salix/modules/item/front/descriptor-popover/index.js

69 lines
1.5 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
2018-12-27 11:54:16 +00:00
import Component from 'core/lib/component';
import './style.scss';
class Controller extends Component {
2018-10-18 09:41:25 +00:00
constructor($element, $scope, $http, $timeout, $q) {
super($element, $scope);
2018-10-18 09:41:25 +00:00
this.$timeout = $timeout;
this.$http = $http;
2018-10-18 09:41:25 +00:00
this.$q = $q;
this.item = null;
}
set itemFk(id) {
2018-10-18 09:41:25 +00:00
if (id == this._itemFk) return;
this._itemFk = id;
2018-10-18 09:41:25 +00:00
this.item = null;
this.getCard();
}
set item(value) {
this._item = value;
this.$timeout(() => this.$.popover.relocate());
}
2018-10-18 09:41:25 +00:00
get item() {
return this._item;
}
set quicklinks(value = {}) {
2018-08-02 08:06:11 +00:00
this._quicklinks = Object.assign(value, this._quicklinks);
}
get quicklinks() {
return this._quicklinks;
}
show() {
this.$.popover.parent = this.parent;
this.$.popover.show();
}
getCard() {
2018-10-18 09:41:25 +00:00
if (this.canceler)
this.canceler.resolve();
this.canceler = this.$q.defer();
let options = {timeout: this.canceler.promise};
this.$http.get(`/item/api/Items/${this._itemFk}/getCard`, options).then(
response => {
this.item = response.data;
this.canceler = null;
}
);
}
}
2018-10-18 09:41:25 +00:00
Controller.$inject = ['$element', '$scope', '$http', '$timeout', '$q'];
ngModule.component('vnItemDescriptorPopover', {
template: require('./index.html'),
2018-10-18 09:41:25 +00:00
controller: Controller,
bindings: {
itemFk: '<',
quicklinks: '<'
2018-10-18 09:41:25 +00:00
}
});