salix/modules/client/front/sample/create/index.js

109 lines
3.3 KiB
JavaScript
Raw Normal View History

2018-07-31 09:08:22 +00:00
import ngModule from '../../module';
import Component from 'core/lib/component';
2018-07-31 09:08:22 +00:00
import './style.scss';
class Controller extends Component {
constructor($element, $, vnApp, $httpParamSerializer, vnConfig) {
super($element, $);
2018-07-31 09:08:22 +00:00
this.vnApp = vnApp;
2019-11-04 12:55:20 +00:00
this.$httpParamSerializer = $httpParamSerializer;
this.vnConfig = vnConfig;
2018-07-31 09:08:22 +00:00
this.clientSample = {
clientFk: this.$params.id,
companyFk: vnConfig.companyFk
2018-07-31 09:08:22 +00:00
};
}
2019-11-04 12:55:20 +00:00
get client() {
return this._client;
}
set client(value) {
this._client = value;
if (value)
this.clientSample.recipient = value.email;
}
get companyId() {
if (!this.clientSample.companyFk)
this.clientSample.companyFk = this.vnConfig.companyFk;
return this.clientSample.companyFk;
}
set companyId(value) {
this.clientSample.companyFk = value;
}
showPreview() {
let sampleType = this.$.sampleType.selection;
2018-07-31 09:08:22 +00:00
if (!sampleType)
return this.vnApp.showError(this.$translate.instant('Choose a sample'));
if (sampleType.hasCompany && !this.clientSample.companyFk)
return this.vnApp.showError(this.$translate.instant('Choose a company'));
2019-11-04 12:55:20 +00:00
const params = {
clientId: this.$params.id,
2019-11-04 12:55:20 +00:00
recipient: this.clientSample.recipient,
isPreview: true
};
if (sampleType.hasCompany)
2019-11-04 12:55:20 +00:00
params.companyId = this.clientSample.companyFk;
2018-07-31 09:08:22 +00:00
2019-11-04 12:55:20 +00:00
const serializedParams = this.$httpParamSerializer(params);
2019-11-05 08:16:16 +00:00
const query = `email/${sampleType.code}?${serializedParams}`;
2018-07-31 09:08:22 +00:00
this.$http.get(query).then(res => {
this.$.showPreview.show();
let dialog = document.body.querySelector('div.vn-dialog');
2019-11-04 12:55:20 +00:00
let body = dialog.querySelector('tpl-body');
let scroll = dialog.querySelector('div:first-child');
2019-11-04 12:55:20 +00:00
body.innerHTML = res.data;
scroll.scrollTop = 0;
2018-07-31 09:08:22 +00:00
});
}
onSubmit() {
this.$.watcher.check();
this.$.watcher.realSubmit().then(() =>
2018-07-31 09:08:22 +00:00
this.sendSample()
);
}
sendSample() {
let sampleType = this.$.sampleType.selection;
2019-11-04 12:55:20 +00:00
let params = {
clientId: this.$params.id,
2019-11-04 12:55:20 +00:00
recipient: this.clientSample.recipient
};
2018-07-31 09:08:22 +00:00
2019-11-04 12:55:20 +00:00
if (!sampleType)
return this.vnApp.showError(this.$translate.instant('Choose a sample'));
if (sampleType.hasCompany && !this.clientSample.companyFk)
return this.vnApp.showError(this.$translate.instant('Choose a company'));
2018-07-31 09:08:22 +00:00
2019-11-04 12:55:20 +00:00
if (sampleType.hasCompany)
params.companyId = this.clientSample.companyFk;
2019-11-04 12:55:20 +00:00
const serializedParams = this.$httpParamSerializer(params);
2019-11-05 08:16:16 +00:00
const query = `email/${sampleType.code}?${serializedParams}`;
2019-11-04 12:55:20 +00:00
this.$http.get(query).then(res => {
this.vnApp.showSuccess(this.$translate.instant('Notification sent!'));
this.$state.go('client.card.sample.index');
2018-07-31 09:08:22 +00:00
});
}
}
Controller.$inject = ['$element', '$scope', 'vnApp', '$httpParamSerializer', 'vnConfig'];
2018-07-31 09:08:22 +00:00
ngModule.component('vnClientSampleCreate', {
template: require('./index.html'),
2019-11-04 12:55:20 +00:00
controller: Controller,
bindings: {
client: '<'
}
2018-07-31 09:08:22 +00:00
});