import ngModule from '../../module'; class Controller { constructor($scope, $http, $state, $translate, vnApp, vnConfig) { this.$ = $scope; this.$http = $http; this.$state = $state; this.$translate = $translate; this.vnApp = vnApp; this.vnConfig = vnConfig; this.dms = { travelId: $state.params.id, hasFileAttached: false, files: [] }; } get travel() { return this._travel; } set travel(value) { this._travel = value; if (value) { this.setDefaultParams(); this.getAllowedContentTypes(); } } getAllowedContentTypes() { // Replace with TravelThermographs this.$http.get('ticketDms/allowedContentTypes').then(res => { const contentTypes = res.data.join(', '); this.allowedContentTypes = contentTypes; }); } get contentTypesInfo() { return this.$translate.instant('ContentTypesInfo', { allowedContentTypes: this.allowedContentTypes }); } setDefaultParams() { const params = {filter: { where: {code: 'miscellaneous'} }}; this.$http.get('DmsTypes/findOne', {params}).then(res => { const dmsTypeId = res.data && res.data.id; const companyId = this.vnConfig.companyFk; const warehouseId = this.vnConfig.warehouseFk; const defaultParams = { reference: this.travel.id, warehouseId: warehouseId, companyId: companyId, dmsTypeId: dmsTypeId, description: this.$translate.instant('FileDescription', { travelId: this.travel.id }).toUpperCase() }; this.dms = Object.assign(this.dms, defaultParams); }); } onSubmit() { const query = `TravelThermographs/${this.dms.thermographId}/uploadFile`; const options = { method: 'POST', url: query, params: this.dms, headers: { 'Content-Type': undefined }, transformRequest: files => { const formData = new FormData(); for (let i = 0; i < files.length; i++) formData.append(files[i].name, files[i]); return formData; }, data: this.dms.files }; this.$http(options).then(res => { if (res) { this.vnApp.showSuccess(this.$translate.instant('Data saved!')); this.$.watcher.updateOriginalData(); this.$state.go('travel.card.thermograph.index'); } }); } onFileChange(files) { let hasFileAttached = false; if (files.length > 0) hasFileAttached = true; this.$.$applyAsync(() => { this.dms.hasFileAttached = hasFileAttached; }); } } Controller.$inject = ['$scope', '$http', '$state', '$translate', 'vnApp', 'vnConfig']; ngModule.component('vnTravelThermographCreate', { template: require('./index.html'), controller: Controller, bindings: { travel: '<' } });