]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/grid/grid-toolbar.component.ts
a13362332f760530e799208460151e24e67a00b3
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / share / grid / grid-toolbar.component.ts
1 import {Component, Input, OnInit, Host} from '@angular/core';
2 import {DomSanitizer, SafeUrl} from '@angular/platform-browser';
3 import {Pager} from '@eg/share/util/pager';
4 import {GridColumn, GridColumnSet, GridToolbarButton,
5     GridToolbarAction, GridContext, GridDataSource} from '@eg/share/grid/grid';
6 import {GridColumnWidthComponent} from './grid-column-width.component';
7 import {GridPrintComponent} from './grid-print.component';
8
9 @Component({
10   selector: 'eg-grid-toolbar',
11   templateUrl: 'grid-toolbar.component.html'
12 })
13
14 export class GridToolbarComponent implements OnInit {
15
16     @Input() gridContext: GridContext;
17     @Input() colWidthConfig: GridColumnWidthComponent;
18     @Input() gridPrinter: GridPrintComponent;
19
20     csvExportInProgress: boolean;
21     csvExportUrl: SafeUrl;
22     csvExportFileName: string;
23
24     constructor(private sanitizer: DomSanitizer) {}
25
26     ngOnInit() {}
27
28     saveGridConfig() {
29         // TODO: when server-side settings are supported, this operation
30         // may offer to save to user/workstation OR org unit settings
31         // depending on perms.
32
33         this.gridContext.saveGridConfig().then(
34             // hide the with config after saving
35             ok => this.colWidthConfig.isVisible = false,
36             err => console.error(`Error saving columns: ${err}`)
37         );
38     }
39
40     performAction(action: GridToolbarAction) {
41         action.action(this.gridContext.getSelectedRows());
42     }
43
44     shouldDisableAction(action: GridToolbarAction) {
45         return action.disabled(this.gridContext.getSelectedRows());
46     }
47
48     printHtml() {
49         this.gridPrinter.printGrid();
50     }
51
52     generateCsvExportUrl($event) {
53
54         if (this.csvExportInProgress) {
55             // This is secondary href click handler.  Give the
56             // browser a moment to start the download, then reset
57             // the CSV download attributes / state.
58             setTimeout(() => {
59                 this.csvExportUrl = null;
60                 this.csvExportFileName = '';
61                 this.csvExportInProgress = false;
62                }, 500
63             );
64             return;
65         }
66
67         this.csvExportInProgress = true;
68
69         // let the file name describe the grid
70         this.csvExportFileName = (
71             this.gridContext.persistKey || 'eg_grid_data'
72         ).replace(/\s+/g, '_') + '.csv';
73
74         this.gridContext.gridToCsv().then(csv => {
75             const blob = new Blob([csv], {type : 'text/plain'});
76             const win: any = window; // avoid TS errors
77             this.csvExportUrl = this.sanitizer.bypassSecurityTrustUrl(
78                 (win.URL || win.webkitURL).createObjectURL(blob)
79             );
80
81             // Fire the 2nd click event now that the browser has
82             // information on how to download the CSV file.
83             setTimeout(() => $event.target.click());
84         });
85
86         $event.preventDefault();
87     }
88 }
89
90