mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-05 21:47:48 +01:00
27 lines
847 B
JavaScript
27 lines
847 B
JavaScript
import classNames from "classnames";
|
|
|
|
import { columnMap } from "../../utils/layout/columns";
|
|
|
|
import Item from "components/bookmarks/item";
|
|
|
|
export default function List({ bookmarks, layout, bookmarksStyle }) {
|
|
let classes =
|
|
layout?.style === "row" ? `grid ${columnMap[layout?.columns]} gap-x-2` : "flex flex-col mt-3 bookmark-list";
|
|
const style = {};
|
|
if (layout?.iconsOnly || bookmarksStyle === "icons") {
|
|
classes = "grid gap-3 mt-3 bookmark-list";
|
|
style.gridTemplateColumns = "repeat(auto-fill, minmax(60px, 1fr))";
|
|
}
|
|
return (
|
|
<ul className={classNames(classes)} style={style}>
|
|
{bookmarks.map((bookmark) => (
|
|
<Item
|
|
key={`${bookmark.name}-${bookmark.href}`}
|
|
bookmark={bookmark}
|
|
iconOnly={layout?.iconsOnly || bookmarksStyle === "icons"}
|
|
/>
|
|
))}
|
|
</ul>
|
|
);
|
|
}
|