2025-12-11 18:53:48 +02:00
|
|
|
import FNote from "../../entities/fnote";
|
|
|
|
|
import { ViewTypeOptions } from "../collections/interface";
|
|
|
|
|
import Dropdown from "../react/Dropdown";
|
|
|
|
|
import { FormListItem } from "../react/FormList";
|
2025-12-11 18:59:28 +02:00
|
|
|
import Icon from "../react/Icon";
|
2025-12-11 18:53:48 +02:00
|
|
|
import { useViewType, VIEW_TYPE_MAPPINGS } from "../ribbon/CollectionPropertiesTab";
|
|
|
|
|
|
2025-12-11 18:59:28 +02:00
|
|
|
const ICON_MAPPINGS: Record<ViewTypeOptions, string> = {
|
|
|
|
|
grid: "bx bxs-grid",
|
|
|
|
|
list: "bx bx-list-ul",
|
|
|
|
|
calendar: "bx bx-calendar",
|
|
|
|
|
table: "bx bx-table",
|
|
|
|
|
geoMap: "bx bx-map-alt",
|
|
|
|
|
board: "bx bx-columns",
|
|
|
|
|
presentation: "bx bx-rectangle"
|
|
|
|
|
};
|
|
|
|
|
|
2025-12-11 18:53:48 +02:00
|
|
|
export default function CollectionProperties({ note }: { note: FNote }) {
|
|
|
|
|
return (
|
|
|
|
|
<ViewTypeSwitcher note={note} />
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ViewTypeSwitcher({ note }: { note: FNote }) {
|
|
|
|
|
const [ viewType, setViewType ] = useViewType(note);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Dropdown
|
2025-12-11 18:59:28 +02:00
|
|
|
text={<>
|
|
|
|
|
<Icon icon={ICON_MAPPINGS[viewType]} />
|
|
|
|
|
{VIEW_TYPE_MAPPINGS[viewType]}
|
|
|
|
|
</>}
|
2025-12-11 18:53:48 +02:00
|
|
|
>
|
|
|
|
|
{Object.entries(VIEW_TYPE_MAPPINGS).map(([ key, label ]) => (
|
|
|
|
|
<FormListItem
|
|
|
|
|
key={key}
|
|
|
|
|
onClick={() => setViewType(key)}
|
2025-12-11 18:59:28 +02:00
|
|
|
selected={viewType === key}
|
|
|
|
|
disabled={viewType === key}
|
|
|
|
|
icon={ICON_MAPPINGS[key as ViewTypeOptions]}
|
2025-12-11 18:53:48 +02:00
|
|
|
>{label}</FormListItem>
|
|
|
|
|
))}
|
|
|
|
|
</Dropdown>
|
|
|
|
|
);
|
|
|
|
|
}
|