-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathartifacts.ts
44 lines (42 loc) · 1021 Bytes
/
artifacts.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
import {toFileName} from './name.ts';
import {saveDownload} from './saver.ts';
export interface PartialArtifactData {
name: string;
desc?: string;
fileName?: string;
data: () => string | Uint8Array | Blob;
}
export interface ArtifactData {
name: string;
desc: string | undefined;
fileName: string;
data: () => Blob,
}
export function artifactDataFromPartial({
name,
desc,
fileName = toFileName(name),
data,
}: PartialArtifactData): ArtifactData {
return {
name,
desc,
fileName,
data: () => {
const d = data();
return typeof d === "string" ? new Blob([d], {type: "text/plain;charset=utf-8"}) :
d instanceof Uint8Array ? new Blob([d], {type: "application/octet-stream"}) :
d;
},
};
}
export function saveArtifact({fileName, data}: ArtifactData) {
const url = URL.createObjectURL(data());
saveDownload({
name: fileName, url, cleanup: () => {
requestAnimationFrame(() => {
URL.revokeObjectURL(url);
});
}
});
}