mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-06-08 15:11:22 +00:00
feat: initial webapp structure from notion2site
This commit is contained in:
44
lib/map-image-url.ts
Normal file
44
lib/map-image-url.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
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)}`
|
||||
}
|
||||
Reference in New Issue
Block a user