mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
58 lines
2.2 KiB
TypeScript
58 lines
2.2 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useMemoStore } from "@/store/v1";
|
|
import { MemoRelation, MemoRelation_Type } from "@/types/proto/api/v2/memo_relation_service";
|
|
import { Memo } from "@/types/proto/api/v2/memo_service";
|
|
import Icon from "../Icon";
|
|
|
|
interface Props {
|
|
relationList: MemoRelation[];
|
|
setRelationList: (relationList: MemoRelation[]) => void;
|
|
}
|
|
|
|
const RelationListView = (props: Props) => {
|
|
const { relationList, setRelationList } = props;
|
|
const memoStore = useMemoStore();
|
|
const [referencingMemoList, setReferencingMemoList] = useState<Memo[]>([]);
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
const requests = relationList
|
|
.filter((relation) => relation.type === MemoRelation_Type.REFERENCE)
|
|
.map(async (relation) => {
|
|
return await memoStore.getOrFetchMemoById(relation.relatedMemoId, { skipStore: true });
|
|
});
|
|
const list = await Promise.all(requests);
|
|
setReferencingMemoList(list);
|
|
})();
|
|
}, [relationList]);
|
|
|
|
const handleDeleteRelation = async (memo: Memo) => {
|
|
setRelationList(relationList.filter((relation) => relation.relatedMemoId !== memo.id));
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{referencingMemoList.length > 0 && (
|
|
<div className="w-full flex flex-row gap-2 mt-2 flex-wrap">
|
|
{referencingMemoList.map((memo) => {
|
|
return (
|
|
<div
|
|
key={memo.id}
|
|
className="w-auto max-w-xs overflow-hidden flex flex-row justify-start items-center bg-zinc-100 dark:bg-zinc-900 hover:opacity-80 rounded-md text-sm p-1 px-2 text-gray-500 dark:text-gray-400 cursor-pointer hover:line-through"
|
|
onClick={() => handleDeleteRelation(memo)}
|
|
>
|
|
<Icon.Link className="w-4 h-auto shrink-0 opacity-80" />
|
|
<span className="px-1 shrink-0 opacity-80">#{memo.id}</span>
|
|
<span className="max-w-full text-ellipsis whitespace-nowrap overflow-hidden">{memo.content}</span>
|
|
<Icon.X className="w-4 h-auto cursor-pointer opacity-60 hover:opacity-100" />
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default RelationListView;
|