mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* mdl2 transition part form 1 * hyperlink * radio buttons * label * people component * [ADF-852] moved textarea to new angular material * number widget * change error multiline * [ADF-852] added md desgin for dropdown * [ADF-852] removed unused css file * functional widget * error dropdown * [ADF-852] - changed to new md date * remove md-date-time-picker dependency in ng2-alfresco-from * [ADF-852] conversion dynamic table phase 1 * container widget * remove test unused * validation change * [ADF-852] convert dynamic table phase 2 * [ADF-852] improving style and fixing bugs * move custom style for form in form.scss * error footer refactor * fix models and test * [ADF-852]- fixed minor twitch on dynamic table * align fields and fix tests dropdown * disabling button in readonly clean mdl form start process form * align dropdown * [ADF-1048] Upload widget can manage multiple files. (#2134) * [ADF-1048] improving upload widget * [ADF-1048] added ability to upload multiple file on upload widget * [ADF-1048] added multiple upload elements on upload widget * [ADF-1048] - show all the files on the completed form * [ADF-1048] fixed wrong selecion on displya upload * [ADF-1048] removed fdescribe from upload widget * date validation and custom moment data adapter * move content widget in the widget folder * add style fields and theming * color primary radio and checkbox * fix amount widget and colors * change ViewEncapsulation and fix date style button issue * empty form customization 1736 * focus label style * [ADF-224] fix the rendering of custom stencils when form is opened in readonly state. (#2161) * [ADF-224] Fixed rendering of custom stencil in readonly mode * [ADF-224] improved variable name * test fix * container filter in form model creation * show display value correctly * fix change date and test * fix date editor and add some test coverage for date * style minor issue * fix new unused local import rule * fix test date * strict date check * fix analytics failing test * restore null as default in model * unify model diagrams and analytics
121 lines
3.6 KiB
TypeScript
121 lines
3.6 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/* tslint:disable:component-selector */
|
|
|
|
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
|
|
import { LogService, ThumbnailService } from 'ng2-alfresco-core';
|
|
import { Observable } from 'rxjs/Rx';
|
|
import { FormService } from '../../../services/form.service';
|
|
import { baseHost, WidgetComponent } from './../widget.component';
|
|
|
|
@Component({
|
|
selector: 'upload-widget',
|
|
templateUrl: './upload.widget.html',
|
|
styleUrls: ['./upload.widget.scss'],
|
|
host: baseHost,
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class UploadWidgetComponent extends WidgetComponent implements OnInit {
|
|
|
|
hasFile: boolean;
|
|
displayText: string;
|
|
multipleOption: string = '';
|
|
mimeTypeIcon: string;
|
|
|
|
constructor(public formService: FormService,
|
|
private logService: LogService,
|
|
private thumbnailService: ThumbnailService) {
|
|
super(formService);
|
|
}
|
|
|
|
ngOnInit() {
|
|
if (this.field &&
|
|
this.field.value &&
|
|
this.field.value.length > 0) {
|
|
this.hasFile = true;
|
|
}
|
|
this.getMultipleFileParam();
|
|
}
|
|
|
|
reset(file: any) {
|
|
if (this.field) {
|
|
this.removeElementFromList(this.field.value, file);
|
|
this.removeElementFromList(this.field.json.value, file);
|
|
this.hasFile = this.field.value.length > 0;
|
|
this.resetFormValueWithNoFiles();
|
|
}
|
|
}
|
|
|
|
onFileChanged(event: any) {
|
|
let files = event.target.files;
|
|
let filesSaved = [];
|
|
if (files && files.length > 0) {
|
|
Observable.from(files).
|
|
flatMap(file => this.uploadRawContent(file)).subscribe((res) => {
|
|
filesSaved.push(res);
|
|
},
|
|
(error) => {
|
|
this.logService.error('Error uploading file. See console output for more details.');
|
|
},
|
|
() => {
|
|
this.field.value = filesSaved;
|
|
this.field.json.value = filesSaved;
|
|
});
|
|
}
|
|
}
|
|
|
|
private uploadRawContent(file): Observable<any> {
|
|
return this.formService.createTemporaryRawRelatedContent(file)
|
|
.map((response: any) => {
|
|
this.logService.info(response);
|
|
return response;
|
|
});
|
|
}
|
|
|
|
private getMultipleFileParam() {
|
|
if (this.field &&
|
|
this.field.params &&
|
|
this.field.params.multiple) {
|
|
this.multipleOption = this.field.params.multiple ? 'multiple' : '';
|
|
}
|
|
}
|
|
|
|
decode(fileName: string): string {
|
|
return decodeURI(fileName);
|
|
}
|
|
|
|
private removeElementFromList(list, element) {
|
|
let index = list.indexOf(element);
|
|
if (index !== -1) {
|
|
list.splice(index, 1);
|
|
}
|
|
}
|
|
|
|
private resetFormValueWithNoFiles() {
|
|
if (this.field.value.length === 0) {
|
|
this.field.value = null;
|
|
this.field.json.value = null;
|
|
}
|
|
}
|
|
|
|
getIcon(mimeType) {
|
|
return this.thumbnailService.getMimeTypeIcon(mimeType);
|
|
}
|
|
|
|
}
|