mirror of https://github.com/usememos/memos.git
62 lines
2.4 KiB
TypeScript
62 lines
2.4 KiB
TypeScript
import { Settings2Icon } from "lucide-react";
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
|
|
import { useView } from "@/contexts/ViewContext";
|
|
import { cn } from "@/lib/utils";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
import { Popover, PopoverContent, PopoverTrigger } from "./ui/popover";
|
|
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
|
|
function MemoDisplaySettingMenu({ className }: Props) {
|
|
const t = useTranslate();
|
|
const { orderByTimeAsc, layout, toggleSortOrder, setLayout } = useView();
|
|
const isApplying = orderByTimeAsc !== false || layout !== "LIST";
|
|
|
|
return (
|
|
<Popover>
|
|
<PopoverTrigger className={cn(className, isApplying ? "text-primary bg-primary/10 rounded" : "opacity-40")}>
|
|
<Settings2Icon className="w-4 h-auto shrink-0" />
|
|
</PopoverTrigger>
|
|
<PopoverContent align="end" alignOffset={-12} sideOffset={14}>
|
|
<div className="flex flex-col gap-2 p-1">
|
|
<div className="w-full flex flex-row justify-between items-center">
|
|
<span className="text-sm shrink-0 mr-3 text-foreground">{t("memo.direction")}</span>
|
|
<Select
|
|
value={orderByTimeAsc.toString()}
|
|
onValueChange={(value) => {
|
|
if ((value === "true") !== orderByTimeAsc) {
|
|
toggleSortOrder();
|
|
}
|
|
}}
|
|
>
|
|
<SelectTrigger size="sm">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="false">{t("memo.direction-desc")}</SelectItem>
|
|
<SelectItem value="true">{t("memo.direction-asc")}</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
<div className="w-full flex flex-row justify-between items-center">
|
|
<span className="text-sm shrink-0 mr-3 text-foreground">{t("common.layout")}</span>
|
|
<Select value={layout} onValueChange={(value) => setLayout(value as "LIST" | "MASONRY")}>
|
|
<SelectTrigger size="sm">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="LIST">{t("memo.list")}</SelectItem>
|
|
<SelectItem value="MASONRY">{t("memo.masonry")}</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
export default MemoDisplaySettingMenu;
|