Skip to content
Snippets Groups Projects
files.component.ts 6.46 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { MainDataService } from '../../maindata.service';
    import { WorkspaceDataService } from '../workspacedata.service';
    import { GetFileResponseData, CheckWorkspaceResponseData } from '../workspace.interfaces';
    
    import { ConfirmDialogComponent, ConfirmDialogData, MessageDialogComponent,
    
    paf's avatar
    paf committed
      MessageDialogData, MessageType, ServerError } from 'iqb-components';
    
    import { MatTableDataSource } from '@angular/material/table';
    
    paf's avatar
    paf committed
    import { MatSnackBar } from '@angular/material/snack-bar';
    
    import {BackendService, FileDeletionReport} from '../backend.service';
    
    import { Component, OnInit, Inject } from '@angular/core';
    
    import { ViewChild } from '@angular/core';
    
    paf's avatar
    paf committed
    import { MatDialog } from '@angular/material/dialog';
    import { MatSort } from '@angular/material/sort';
    
    import { saveAs } from 'file-saver';
    
    Martin Mechtel's avatar
    Martin Mechtel committed
      templateUrl: './files.component.html',
      styleUrls: ['./files.component.css']
    
    export class FilesComponent implements OnInit {
    
      public serverfiles: MatTableDataSource<GetFileResponseData>;
      public displayedColumns = ['checked', 'filename', 'typelabel', 'filesize', 'filedatetime'];
    
    mechtelm's avatar
    mechtelm committed
    
      // for fileupload
    
      public uploadUrl = '';
    
      public fileNameAlias = 'fileforvo';
    
    
      // for workspace-check
      public checkErrors = [];
      public checkWarnings = [];
      public checkInfos = [];
    
    
    paf's avatar
    paf committed
      @ViewChild(MatSort, { static: true }) sort: MatSort;
    
    
      constructor(
        @Inject('SERVER_URL') private serverUrl: string,
        private bs: BackendService,
    
        private mds: MainDataService,
    
    mechtelm's avatar
    mechtelm committed
        public wds: WorkspaceDataService,
    
        public confirmDialog: MatDialog,
    
        public messageDialog: MatDialog,
    
        public snackBar: MatSnackBar
    
        this.uploadUrl = `${this.serverUrl}workspace/${this.wds.wsId}/file`;
    
    mechtelm's avatar
    mechtelm committed
        setTimeout(() => {
          this.updateFileList();
        })
    
      }
    
      // ***********************************************************************************
      checkAll(isChecked: boolean) {
        this.serverfiles.data.forEach(element => {
          element.isChecked = isChecked;
        });
      }
    
      // ***********************************************************************************
      deleteFiles() {
    
    mechtelm's avatar
    mechtelm committed
        if (this.wds.wsRole === 'RW') {
          this.checkErrors = [];
          this.checkWarnings = [];
          this.checkInfos = [];
    
          const filesToDelete = [];
          this.serverfiles.data.forEach(element => {
            if (element.isChecked) {
    
              filesToDelete.push(element.type + '/' + element.filename);
    
    mechtelm's avatar
    mechtelm committed
          if (filesToDelete.length > 0) {
            let prompt = 'Sie haben ';
            if (filesToDelete.length > 1) {
              prompt = prompt + filesToDelete.length + ' Dateien ausgewählt. Sollen';
            } else {
              prompt = prompt + ' eine Datei ausgewählt. Soll';
            }
            const dialogRef = this.confirmDialog.open(ConfirmDialogComponent, {
              width: '400px',
              data: <ConfirmDialogData>{
                title: 'Löschen von Dateien',
                content: prompt + ' diese gelöscht werden?',
    
                confirmbuttonlabel: 'Löschen',
                showcancel: true
    
    mechtelm's avatar
    mechtelm committed
              }
            });
    
            dialogRef.afterClosed().subscribe(result => {
              if (result !== false) {
                // =========================================================
    
                this.bs.deleteFiles(filesToDelete).subscribe((fileDeletionReport: FileDeletionReport|ServerError) => {
    
                  if (fileDeletionReport instanceof ServerError) {
    
                    this.mds.appError$.next({
                      label: (fileDeletionReport as ServerError).labelNice,
                      description: (fileDeletionReport as ServerError).labelSystem,
                      category: "PROBLEM"
                    });
    
                    const message = [];
                    if (fileDeletionReport.deleted.length > 0) {
                      message.push(fileDeletionReport.deleted.length + ' Dateien erfolgreich gelöscht.');
    
    mechtelm's avatar
    mechtelm committed
                    }
    
                    if (fileDeletionReport.not_allowed.length > 0) {
                      message.push(fileDeletionReport.not_allowed.length + ' Dateien konnten nicht gelöscht werden.');
                    }
                    this.snackBar.open(message.join('<br>'), message.length > 1 ? 'Achtung' : '',  {duration: 1000});
                    this.updateFileList();
    
    mechtelm's avatar
    mechtelm committed
                });
                // =========================================================
              }
            });
          } else {
    
            this.messageDialog.open(MessageDialogComponent, {
    
    mechtelm's avatar
    mechtelm committed
              width: '400px',
              data: <MessageDialogData>{
                title: 'Löschen von Dateien',
                content: 'Bitte markieren Sie erst Dateien!',
                type: MessageType.error
              }
            });
          }
    
        }
      }
    
      // ***********************************************************************************
    
      updateFileList(empty = false) {
    
        this.checkErrors = [];
        this.checkWarnings = [];
        this.checkInfos = [];
    
    
    mechtelm's avatar
    mechtelm committed
        if (empty || this.wds.wsRole === 'MO') {
    
          this.serverfiles = new MatTableDataSource([]);
        } else {
    
          this.bs.getFiles().subscribe(
    
            (filedataresponse: GetFileResponseData[]) => {
    
              console.log('updateFileList ok');
    
              this.serverfiles = new MatTableDataSource(filedataresponse);
              this.serverfiles.sort = this.sort;
            }, (err: ServerError) => {
    
              console.log('updateFileList err');
    
              this.mds.appError$.next({
                label: err.labelNice,
                description: err.labelSystem,
                category: "PROBLEM"
              });
    
    
      download(element: GetFileResponseData): void {
    
    
        this.bs.downloadFile(element.type, element.filename)
    
          .subscribe(
            (fileData: Blob|ServerError) => {
              if (fileData instanceof ServerError) {
    
                this.mds.appError$.next({
                  label: (fileData as ServerError).labelNice,
                  description: (fileData as ServerError).labelSystem,
                  category: "PROBLEM"
                });
    
              } else {
                saveAs(fileData, element.filename);
              }
            }
          );
    
      checkWorkspace() {
        this.checkErrors = [];
        this.checkWarnings = [];
        this.checkInfos = [];
    
    
        this.bs.checkWorkspace().subscribe(
    
    Martin Mechtel's avatar
    Martin Mechtel committed
          (checkResponse: CheckWorkspaceResponseData) => {
            this.checkErrors = checkResponse.errors;
            this.checkWarnings = checkResponse.warnings;
            this.checkInfos = checkResponse.infos;
          }, (err: ServerError) => {
    
            this.mds.appError$.next({
              label: err.labelNice,
              description: err.labelSystem,
              category: "PROBLEM"
            });
    
    Martin Mechtel's avatar
    Martin Mechtel committed
        );