141 lines
3.4 KiB
JavaScript
141 lines
3.4 KiB
JavaScript
import { useState, useEffect } from "react";
|
|
import styled from "styled-components";
|
|
import { useLazyGetOGInfoQuery } from "../../../app/services/message";
|
|
// import favUrl from "../../../assets/icons/favicon.default.svg?url";
|
|
const StyledCompact = styled.a`
|
|
background: #f3f4f6;
|
|
border: 1px solid #d4d4d4;
|
|
box-sizing: border-box;
|
|
border-radius: 6px;
|
|
padding: 12px 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
width: 380px;
|
|
.favicon {
|
|
display: flex;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 4px;
|
|
img {
|
|
/* width: 100%;
|
|
height: 100%; */
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
.title {
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #1c1c1e;
|
|
}
|
|
.desc {
|
|
font-weight: 500;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #616161;
|
|
}
|
|
.link {
|
|
font-weight: 400;
|
|
font-size: 10px;
|
|
line-height: 18px;
|
|
color: #616161;
|
|
}
|
|
.dots {
|
|
width: 288px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
`;
|
|
const StyledDetails = styled.a`
|
|
width: 380px;
|
|
padding: 12px;
|
|
background: #f3f4f6;
|
|
border: 1px solid #d4d4d4;
|
|
box-sizing: border-box;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.title {
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
color: #06aed4;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.desc {
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: #616161;
|
|
margin-bottom: 8px;
|
|
width: 356px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.image {
|
|
width: 100%;
|
|
height: 180px;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
`;
|
|
export default function URLPreview({ url = "" }) {
|
|
const [favicon, setFavicon] = useState("");
|
|
const [getInfo] = useLazyGetOGInfoQuery();
|
|
const [data, setData] = useState(null);
|
|
useEffect(() => {
|
|
const getMetaData = async (url) => {
|
|
// todo
|
|
const { data } = await getInfo(url);
|
|
const title = data.title || data.site_name;
|
|
const description = data.description;
|
|
const ogImage = data.images.find((i) => !!i.url)?.url || "";
|
|
const favicon = data.favicon_url || `${new URL(url).origin}/favicon.ico`;
|
|
setFavicon(favicon);
|
|
setData({ title, description, ogImage });
|
|
// console.log("wtf url", data);
|
|
};
|
|
getMetaData(url);
|
|
}, [url]);
|
|
const handleFavError = () => {
|
|
setFavicon("");
|
|
};
|
|
if (!url || !data || !data.title) return null;
|
|
const { title, description, ogImage } = data;
|
|
return ogImage ? (
|
|
<StyledDetails href={url} target="_blank">
|
|
<h3 className="title">{title}</h3>
|
|
<p className="desc dots">{description}</p>
|
|
<div className="image">
|
|
<img src={ogImage} alt="og image" />
|
|
</div>
|
|
</StyledDetails>
|
|
) : (
|
|
<StyledCompact href={url} target="_blank">
|
|
{favicon && (
|
|
<div className="favicon">
|
|
<img onError={handleFavError} src={favicon} alt="favicon" />
|
|
</div>
|
|
)}
|
|
<div className="info">
|
|
<h3 className="title">{title}</h3>
|
|
<p className="desc dots">{description}</p>
|
|
<span className="link dots">{url}</span>
|
|
</div>
|
|
</StyledCompact>
|
|
);
|
|
}
|