-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathasset.tsx
72 lines (62 loc) · 1.59 KB
/
asset.tsx
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
62
63
64
65
66
67
68
69
70
71
72
import * as React from "react";
import { BlockType, ContentValueType, MapImageUrl } from "../types";
const types = ["video", "image", "embed", "figma"];
const Asset: React.FC<{
block: BlockType;
mapImageUrl: MapImageUrl;
}> = ({ block, mapImageUrl }) => {
const value = block.value as ContentValueType;
const type = block.value.type;
if (!types.includes(type)) {
return null;
}
const format = value.format;
const {
display_source = undefined,
block_aspect_ratio = undefined,
block_height = 1,
block_width = 1
} = format ?? {};
const aspectRatio = block_aspect_ratio || block_height / block_width;
if (type === "embed" || type === "video" || type === "figma") {
return (
<div
style={{
paddingBottom: `${aspectRatio * 100}%`,
position: "relative"
}}
>
<iframe
className="notion-image-inset"
src={
value.properties.source[0][0]
}
/>
</div>
);
}
if (block.value.type === "image") {
const src = mapImageUrl(value.properties.source[0][0], block);
const caption = value.properties.caption?.[0][0];
if (block_aspect_ratio) {
return (
<div
style={{
paddingBottom: `${aspectRatio * 100}%`,
position: "relative"
}}
>
<img
className="notion-image-inset"
alt={caption || "notion image"}
src={src}
/>
</div>
);
} else {
return <img alt={caption} src={src} />;
}
}
return null;
};
export default Asset;