-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathdata-utils.ts
61 lines (54 loc) · 2.13 KB
/
data-utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
Copyright 2013-2020 the original author or authors from the JHipster project.
This file is part of the JHipster project, see https://www.jhipster.tech/
for more information.
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.
*/
export const openFile = (contentType: string, data: string) => () => {
const fileURL = `data:${contentType};base64,${data}`;
const win = window.open();
win.document.write(
'<iframe src="' +
fileURL +
'" frameborder="0" style="border:0; top:0px; left:0px; bottom:0px; right:0px; width:100%; height:100%;" allowfullscreen></iframe>'
);
};
const toBase64 = (file: File, cb: Function) => {
const fileReader: FileReader = new FileReader();
fileReader.readAsDataURL(file);
fileReader.onload = e => {
const base64Data = e.target['result'].substr(e.target['result'].indexOf('base64,') + 'base64,'.length);
cb(base64Data);
};
};
const paddingSize = (value: string): number => {
if (value.endsWith('==')) {
return 2;
}
if (value.endsWith('=')) {
return 1;
}
return 0;
};
const formatAsBytes = (sizeValue: number): string => sizeValue.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ' ') + ' bytes';
export const size = (value: string): number => value.length / 4 * 3 - paddingSize(value);
export const byteSize = (base64String: string) => formatAsBytes(size(base64String));
export const setFileData = (event, callback: Function, isImage: boolean) => {
if (event && event.target.files && event.target.files[0]) {
const file = event.target.files[0];
if (isImage && !file.type.startsWith('image/')) {
return;
}
toBase64(file, base64Data => {
callback(file.type, base64Data);
});
}
};