mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 00:05:50 +01:00
84 lines
2.9 KiB
TypeScript
84 lines
2.9 KiB
TypeScript
import { useContext, useMemo } from "preact/hooks";
|
|
import { t } from "../../services/i18n";
|
|
import { ViewTypeOptions } from "../../services/note_list_renderer";
|
|
import FormSelect from "../react/FormSelect";
|
|
import { TabContext } from "./ribbon-interface";
|
|
import { mapToKeyValueArray } from "../../services/utils";
|
|
import { useNoteLabel } from "../react/hooks";
|
|
import { bookPropertiesConfig, BookProperty, ButtonProperty } from "../ribbon_widgets/book_properties_config";
|
|
import Button from "../react/Button";
|
|
import { ParentComponent } from "../react/react_utils";
|
|
import FNote from "../../entities/fnote";
|
|
|
|
const VIEW_TYPE_MAPPINGS: Record<ViewTypeOptions, string> = {
|
|
grid: t("book_properties.grid"),
|
|
list: t("book_properties.list"),
|
|
calendar: t("book_properties.calendar"),
|
|
table: t("book_properties.table"),
|
|
geoMap: t("book_properties.geo-map"),
|
|
board: t("book_properties.board")
|
|
};
|
|
|
|
export default function CollectionPropertiesTab({ note }: TabContext) {
|
|
const [ viewType, setViewType ] = useNoteLabel(note, "viewType");
|
|
const viewTypeWithDefault = viewType ?? "grid";
|
|
const properties = bookPropertiesConfig[viewTypeWithDefault].properties;
|
|
|
|
return (note &&
|
|
<div className="book-properties-widget">
|
|
<CollectionTypeSwitcher viewType={viewTypeWithDefault} setViewType={setViewType} />
|
|
<BookProperties note={note} properties={properties} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function CollectionTypeSwitcher({ viewType, setViewType }: { viewType: string, setViewType: (newValue: string) => void }) {
|
|
const collectionTypes = useMemo(() => mapToKeyValueArray(VIEW_TYPE_MAPPINGS), []);
|
|
|
|
return (
|
|
<div style={{ display: "flex", alignItems: "baseline" }}>
|
|
<span style={{ whiteSpace: "nowrap" }}>{t("book_properties.view_type")}: </span>
|
|
<FormSelect
|
|
currentValue={viewType ?? "grid"} onChange={setViewType}
|
|
values={collectionTypes}
|
|
keyProperty="key" titleProperty="value"
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function BookProperties({ note, properties }: { note: FNote, properties: BookProperty[] }) {
|
|
return (
|
|
<div className="book-properties-container">
|
|
{properties.map(property => (
|
|
<div className={`type-${property}`}>
|
|
{mapPropertyView({ note, property })}
|
|
</div>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function mapPropertyView({ note, property }: { note: FNote, property: BookProperty }) {
|
|
switch (property.type) {
|
|
case "button":
|
|
return <ButtonPropertyView note={note} property={property} />
|
|
}
|
|
}
|
|
|
|
function ButtonPropertyView({ note, property }: { note: FNote, property: ButtonProperty }) {
|
|
const parentComponent = useContext(ParentComponent);
|
|
|
|
return <Button
|
|
text={property.label}
|
|
title={property.title}
|
|
icon={property.icon}
|
|
onClick={() => {
|
|
if (!parentComponent) return;
|
|
property.onClick({
|
|
note,
|
|
triggerCommand: parentComponent.triggerCommand.bind(parentComponent)
|
|
});
|
|
}}
|
|
/>
|
|
} |