mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 23:16:47 +00:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { Block } from 'notion-types'
|
|
|
|
export const mapNotionImageUrl = (url: string, block: Block) => {
|
|
if (!url) {
|
|
return null
|
|
}
|
|
|
|
if (url.startsWith('data:')) {
|
|
return null
|
|
}
|
|
|
|
const origUrl = url
|
|
|
|
if (url.startsWith('/images')) {
|
|
url = `https://www.notion.so${url}`
|
|
}
|
|
|
|
// more recent versions of notion don't proxy unsplash images
|
|
if (!url.startsWith('https://images.unsplash.com')) {
|
|
url = `https://www.notion.so${
|
|
url.startsWith('/image') ? url : `/image/${encodeURIComponent(url)}`
|
|
}`
|
|
|
|
const notionImageUrlV2 = new URL(url)
|
|
const table = block.parent_table === 'space' ? 'block' : block.parent_table
|
|
notionImageUrlV2.searchParams.set('table', table)
|
|
notionImageUrlV2.searchParams.set('id', block.id)
|
|
notionImageUrlV2.searchParams.set('cache', 'v2')
|
|
|
|
url = notionImageUrlV2.toString()
|
|
}
|
|
|
|
// console.log({ url, origUrl })
|
|
return mapImageUrl(url)
|
|
}
|
|
|
|
export const mapImageUrl = (imageUrl: string) => {
|
|
if (imageUrl.startsWith('data:')) {
|
|
return null
|
|
}
|
|
|
|
// Our proxy uses Cloudflare's global CDN to cache these image assets
|
|
return `https://ssfy.io/${encodeURIComponent(imageUrl)}`
|
|
}
|