blob: f9f508a62606e0e723fb45dfeb33c28e19f4a10b (
about) (
plain)
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
|
import React, { useEffect, useState } from 'react'
import Image from 'next/image'
import path from 'path'
//import '../../../public/placeholder.png'
export interface OrgImageProps {
src: string
file: string
}
export const OrgImage = (props: OrgImageProps) => {
const { src, file } = props
const [image, setImage] = useState<any>(null)
/* )
* .then((res) => res.blob())
* .then((res) => setImage(res))
* .catch((e) => {
* setImage(null)
* console.error(e)
* })
}, [fullPath]) */
const dir = path.dirname(file)
const fullPath = encodeURIComponent(encodeURIComponent(path.join(dir, src)))
const dumbLoader = ({ src, width, quality }: { [key: string]: string | number }) => {
return `http://localhost:35901/img/${src}`
}
return (
<Image
layout="responsive"
loader={dumbLoader}
src={fullPath}
alt=""
width="100%"
height="100%"
/>
)
}
|