mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import Image from "./Image";
|
|
import Icon from "./Icon";
|
|
import "../less/memo-resources.less";
|
|
|
|
interface Props {
|
|
resourceList: Resource[];
|
|
className?: string;
|
|
style?: "row" | "col";
|
|
}
|
|
|
|
const getDefaultProps = (): Props => {
|
|
return {
|
|
className: "",
|
|
style: "row",
|
|
resourceList: [],
|
|
};
|
|
};
|
|
|
|
const MemoResources: React.FC<Props> = (props: Props) => {
|
|
const { className, style, resourceList } = {
|
|
...getDefaultProps(),
|
|
...props,
|
|
};
|
|
const imageList = resourceList.filter((resource) => resource.type.includes("image"));
|
|
const otherResourceList = resourceList.filter((resource) => !resource.type.includes("image"));
|
|
|
|
const handlPreviewBtnClick = (resource: Resource) => {
|
|
const resourceUrl = `${window.location.origin}/o/r/${resource.id}/${resource.filename}`;
|
|
window.open(resourceUrl);
|
|
};
|
|
|
|
const imgUrls = imageList.map((resource) => {
|
|
return `/o/r/${resource.id}/${resource.filename}`;
|
|
});
|
|
|
|
return (
|
|
<div className={`resource-wrapper ${className || ""}`}>
|
|
{imageList.length > 0 && (
|
|
<div className={`images-wrapper ${style}`}>
|
|
{imageList.map((resource, index) => (
|
|
<Image className="memo-img" key={resource.id} imgUrls={imgUrls} index={index} />
|
|
))}
|
|
</div>
|
|
)}
|
|
<div className="other-resource-wrapper">
|
|
{otherResourceList.map((resource) => {
|
|
return (
|
|
<div className="other-resource-container" key={resource.id} onClick={() => handlPreviewBtnClick(resource)}>
|
|
<Icon.FileText className="icon-img" />
|
|
<span className="name-text">{resource.filename}</span>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MemoResources;
|